ETH Price: $3,366.10 (-1.48%)
Gas: 8 Gwei

Token

Kekverse (KEK)
 

Overview

Max Total Supply

133 KEK

Holders

30

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oldfrog.eth
Balance
8 KEK
0x487d0c7553c8d88500085a805d316ed5b18357f8
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:
Kekverse

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : Kekverse.sol
pragma solidity ^0.8.4;

import "https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol";

//                           .,,,..                                                    
//                         .,,,,,,,,7                         .,,,.                    
//                        .,,.,,,,.,.                       I,,,,,,,I                  
//                        .,,,,,,,,.,.                      ,,.,,,.,.                  
//                        ?,,.,,,,.=IIIIIIIII.      7.IIIIII~..,,,,,,                  
//                         .,,..IIIIIIIIIIIIIII, 7.IIIIIIIIIIIII.,.,:                  
//                           .IIIIIIIIIIIIIIIIIII.?IIIIIIIIIIIIIII.                    
//                         7IIIIIIIIIIIIIIIIIIIIII.?IIIIIIIIIIIIIII,                   
//                         IIIIIIIIIIIIIIIIIIIIIIII.??IIIIIIIIIIIII.~.?                
//                        .IIIIII??=...,,,,,,,,,,,,..??IIIIIIIIIIIIIIIII?              
//                       .IIIII:,,,,,,,.,,,,,,,,,..,,????..,,,,,,,,..~??II             
//                     7IIIIII+,,,,,.,,,,,....,,,,,,,.,,,,,,.......,,,,,,,,.           
//                     IIIIII.,,,,,,,.~~.....=~77I+..,.?7~=....7.=.777II..,,7          
//                    .IIIIIIII:.....7~==...7?.7777777,I7.~=.?.7..777777777.           
//                   :IIIIIIIIIIIIIIIIIII.....=I77?..I.,,,..................           
//                   .IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII:........,IIIIIIIII7          
//                  7IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII~           
//                  7?IIIIIIIIIIIIIIIIIIIIIIIIIIIIIII?......IIIIIIIIIIIIII.            
//                  .?IIIIIIIIIIIIIIIIIIIIIIIIIIIII.,,:....::,.IIIIIIIIII.7            
//                  .?IIIIIIIIIIIIIIIIIIIIIIIIIIII.,::,....,::,.IIIIIIIII.             
//                  .??IIIIIIIIIIIIIIIIIIIIIIIIII.,::::,,,:::::,.IIIII??.              
//                  .???IIIIIIIIIIIIIIIIIIIIIIIIII,:::.,,,,::::,.IIIII?I               
//                  7???IIIIIIIIIIIIIIIIIIIIIIIIII,,::::::::::,.IIIIII?I               
//                   ????IIIIIIIIIIIIIIIIIIIIIIIIIII.,,:,,,,,.~IIIIIII?.               
//                   II????IIIIIIIIIIIIIIIIIIIIIIIIIIIIII?IIIIIIIIIII?I7               
//                    II????IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII?I.                
//                     7.?????IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII?.                 
//                    7.??+.I???????IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII~                  
//                   7.???????????~..........+IIIIIIIIIIIIIIIIIII?.7                   
//                  7:IIIIIIIIIII???????????????????????~......????I.                  
//                  .IIIIIIIIIIIIIIIIIIIIIIIIII?????????????????IIIII~                 
//                 .IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII~                
//                 IIIIIIII?IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII.               
//                .IIIIIII?:?IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII??IIIIIII7              
//               ,IIIIIII?.?IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII?.?IIIIII.7             
//               .IIIIII??+?IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII???IIIIII.7             
//    ___  ____   ________  ___  ____  ____   ____  ________  _______     ______   ________  
//   |_  ||_  _| |_   __  ||_  ||_  _||_  _| |_  _||_   __  ||_   __ \  .' ____ \ |_   __  | 
//     | |_/ /     | |_ \_|  | |_/ /    \ \   / /    | |_ \_|  | |__) | | (___ \_|  | |_ \_| 
//     |  __'.     |  _| _   |  __'.     \ \ / /     |  _| _   |  __ /   _.____`.   |  _| _  
//    _| |  \ \_  _| |__/ | _| |  \ \_    \ ' /     _| |__/ | _| |  \ \_| \____) | _| |__/ | 
//   |____||____||________||____||____|    \_/     |________||____| |___|\______.'|________| 
//
//                                  https://kekverse.io/
//                  Created and drawn by Based Pleb - https://twitter.com/Based_Pleb
//                         Tech stuff by Mr F - https://twitter.com/MrFwashere

contract Kekverse is ERC721A {
    string public baseURI;

    uint128 public offsetBlock;
    uint128 public offset;

    uint constant supply = 4200;

    uint constant kekPrice = 0.02 ether; 
    uint constant plebPrice = 0.025 ether;
    uint publicPrice = 0.03 ether; // might be lowered

    uint public immutable publicMint;
    address immutable basedPleb;
    address immutable mrF;

    mapping(address => bool) public earlyMinted;

    constructor(string memory _uri, address _pleb, address _mrF) ERC721A("Kekverse", "KEK")  {
        baseURI = _uri;
        basedPleb = _pleb;
        mrF = _mrF;
        publicMint = block.timestamp + 50 hours; // WL mint begins at deployment, public 48h later (plus some leeway)
        _mint(_pleb, 10); // promotions / giveaways
    }

    function lowerPrice(uint _price) public { // LAST RESORT
        require(msg.sender == basedPleb);
        require(_price < publicPrice); // price cannot go up
        require(block.timestamp > publicMint + 120 hours); // 7 days after deployment, 5 days after public
        publicPrice = _price;
    }

    function withdraw() public {
        uint bal = address(this).balance;
        uint pleb = bal * 84 / 100;
        basedPleb.call{value: pleb}("");
        mrF.call{value: bal - pleb}("");
    }

    function setBaseURI(string memory _uri) external {
        require(msg.sender == basedPleb);
        baseURI = _uri;
    }

    function initOffset() public {
        require(msg.sender == basedPleb);
        require(super.totalSupply() == supply);
        offsetBlock = uint128(block.number) + 1;
    }

    function finalizeOffset() external {
        uint128 _offset = offset;
        
        require(_offset == 0, "Starting index is already set");
        require(offsetBlock != 0, "Starting index block must be set");
        require(block.number - offsetBlock < 255, "Must re-init");
        
        _offset = uint128(uint256(blockhash(offsetBlock)) % supply);

        // Prevent default sequence
        if (_offset == 0) {
            _offset = 1;
        }
        
        offset = _offset;
    }

    // minting logic

    function mint(uint num) public payable {
        require(msg.value == publicPrice * num);
        require(block.timestamp >= publicMint);

        uint tokenId = super.totalSupply();

        require(tokenId <= supply);

        if (tokenId + num > supply) {
            uint remaining = supply - tokenId;
            uint excess = num - remaining;
            _mint(msg.sender, remaining);
            payable(msg.sender).transfer(excess * publicPrice); // refund
        } else {
            _mint(msg.sender, num);
        }
    }

    function mintKeklist(uint num, uint8 _v, bytes32 _r, bytes32 _s) public payable {
        require(super.totalSupply() < 3000); // reserve some for public
        require(msg.value == kekPrice * num);
        require(!earlyMinted[msg.sender]);
        require(block.timestamp < publicMint);
        require(num <= 7);
        verify("Keklist ", _v, _r, _s); // will revert tx if fails
        _mint(msg.sender, num + 1);
        earlyMinted[msg.sender] = true;
    }

    function mintPleblist(uint num, uint8 _v, bytes32 _r, bytes32 _s) public payable {
        require(super.totalSupply() < 3000); // reserve some for public
        require(msg.value == plebPrice * num);
        require(!earlyMinted[msg.sender]);
        require(block.timestamp < publicMint);
        require(num <= 5);
        verify("Pleblist ", _v, _r, _s); // will revert tx if fails
        if (num >= 3) {
            _mint(msg.sender, num + 1);
        } else {
            _mint(msg.sender, num);
        }
        earlyMinted[msg.sender] = true;
    }

    function verify(string memory _type, uint8 _v, bytes32 _r, bytes32 _s) internal view {
        // Confirm the hash was signed by admin
        bytes memory prefix = "\x19Ethereum Signed Message:\n32";

        string memory checkMessage = string(abi.encodePacked(_type, toString(msg.sender)));
        bytes32 checkHash = keccak256(abi.encodePacked(checkMessage));
        bytes memory message = abi.encodePacked(prefix, checkHash);
        bytes32 prefixedHash = keccak256(message);

        address recoveredAddress = ecrecover(prefixedHash, _v, _r, _s);
        require(recoveredAddress == mrF, string(abi.encodePacked("Recovered address was ", recoveredAddress)));
    }

    // ERC712 things

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

        if (offset == 0) {
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(0))) : ''; // token 0 is unrevealed metadata
        }

        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(((tokenId + offset) % supply) + 1))) : '';
    }

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

    // token id should start at 1, obviously

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    // misc

    function toString(address account) public pure returns (string memory) {
        return toString(abi.encodePacked(account));
    }

    function toString(uint256 value) public pure returns (string memory) {
        return toString(abi.encodePacked(value));
    }

    function toString(bytes memory data) public pure returns (string memory) {
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(2 + data.length * 2);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < data.length; i++) {
            str[2 + i * 2] = alphabet[uint(uint8(data[i] >> 4))];
            str[3 + i * 2] = alphabet[uint(uint8(data[i] & 0x0f))];
        }
        return string(str);
    }
}

File 2 of 3 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If not burned.
            if (packed & _BITMASK_BURNED == 0) {
                // If the data at the starting slot does not exist, start the scan.
                if (packed == 0) {
                    if (tokenId >= _currentIndex) revert OwnerQueryForNonexistentToken();
                    // Invariant:
                    // There will always be an initialized ownership slot
                    // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                    // before an unintialized ownership slot
                    // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                    // Hence, `tokenId` will not underflow.
                    //
                    // We can directly compare the packed value.
                    // If the address is zero, packed will be zero.
                    for (;;) {
                        unchecked {
                            packed = _packedOwnerships[--tokenId];
                        }
                        if (packed == 0) continue;
                        return packed;
                    }
                }
                // Otherwise, the data exists and is not burned. We can skip the scan.
                // This is possible because we have already achieved the target condition.
                // This saves 2143 gas on transfers of initialized tokens.
                return packed;
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                       APPROVAL OPERATIONS
    // =============================================================

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 3 of 3 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_pleb","type":"address"},{"internalType":"address","name":"_mrF","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"lowerPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintKeklist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mintPleblist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offset","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offsetBlock","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"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":"publicMint","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"_uri","type":"string"}],"name":"setBaseURI","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":"address","name":"account","type":"address"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052666a94d74f430000600a553480156200001c57600080fd5b50604051620042133803806200421383398181016040528101906200004291906200055e565b6040518060400160405280600881526020017f4b656b76657273650000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b454b00000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c692919062000425565b508060039080519060200190620000df92919062000425565b50620000f0620001b360201b60201c565b600081905550505082600890805190602001906200011092919062000425565b508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250506202bf20426200019091906200062c565b60808181525050620001aa82600a620001bc60201b60201c565b50505062000821565b60006001905090565b6000805490506000821415620001fe576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002136000848385620003a560201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620002a283620002846000866000620003ab60201b60201c565b6200029585620003db60201b60201c565b17620003eb60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200034557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000308565b50600082141562000382576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620003a060008483856200041660201b60201c565b505050565b50505050565b60008060e883901c905060e8620003ca8686846200041c60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b8280546200043390620006fd565b90600052602060002090601f016020900481019282620004575760008555620004a3565b82601f106200047257805160ff1916838001178555620004a3565b82800160010185558215620004a3579182015b82811115620004a257825182559160200191906001019062000485565b5b509050620004b29190620004b6565b5090565b5b80821115620004d1576000816000905550600101620004b7565b5090565b6000620004ec620004e684620005f6565b620005cd565b9050828152602081018484840111156200050557600080fd5b62000512848285620006c7565b509392505050565b6000815190506200052b8162000807565b92915050565b600082601f8301126200054357600080fd5b815162000555848260208601620004d5565b91505092915050565b6000806000606084860312156200057457600080fd5b600084015167ffffffffffffffff8111156200058f57600080fd5b6200059d8682870162000531565b9350506020620005b0868287016200051a565b9250506040620005c3868287016200051a565b9150509250925092565b6000620005d9620005ec565b9050620005e7828262000733565b919050565b6000604051905090565b600067ffffffffffffffff821115620006145762000613620007c7565b5b6200061f82620007f6565b9050602081019050919050565b60006200063982620006bd565b91506200064683620006bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200067e576200067d62000769565b5b828201905092915050565b600062000696826200069d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006e7578082015181840152602081019050620006ca565b83811115620006f7576000848401525b50505050565b600060028204905060018216806200071657607f821691505b602082108114156200072d576200072c62000798565b5b50919050565b6200073e82620007f6565b810181811067ffffffffffffffff8211171562000760576200075f620007c7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620008128162000689565b81146200081e57600080fd5b50565b60805160a05160601c60c05160601c6139846200088f60003960008181610d71015261249101526000818161089a01528181610ce801528181610e2901526114a601526000818161090401528181610c80015281816115e4015281816117960152611a9101526139846000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a22cb46511610095578063d555654411610064578063d555654414610629578063e10e9e5f14610654578063e985e9c51461066b578063f2ec899f146106a8576101cd565b8063a22cb4651461058b578063b88d4fde146105b4578063bb1043f6146105d0578063c87b56dd146105ec576101cd565b80637f89b5ce116100d15780637f89b5ce1461051157806381515a491461052857806395d89b4114610544578063a0712d681461056f576101cd565b80636c0360eb1461046c57806370a082311461049757806371aad10d146104d4576101cd565b806326092b831161016f57806355f804b31161013e57806355f804b31461038c57806356ca623e146103b55780636352211e146103f25780636900a3ae1461042f576101cd565b806326092b8314610303578063337121431461032e5780633ccfd60b1461035957806342842e0e14610370576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630c3986e21461029357806318160ddd146102bc57806323b872dd146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c88565b6106e5565b60405161020691906131e8565b60405180910390f35b34801561021b57600080fd5b50610224610777565b6040516102319190613248565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d5c565b610809565b60405161026e9190613181565b60405180910390f35b610291600480360381019061028c9190612c4c565b610888565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190612d5c565b610898565b005b3480156102c857600080fd5b506102d1610942565b6040516102de91906132e5565b60405180910390f35b61030160048036038101906102fc9190612b46565b610959565b005b34801561030f57600080fd5b50610318610c7e565b60405161032591906132e5565b60405180910390f35b34801561033a57600080fd5b50610343610ca2565b60405161035091906132ca565b60405180910390f35b34801561036557600080fd5b5061036e610cc4565b005b61038a60048036038101906103859190612b46565b610e07565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612d1b565b610e27565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612ae1565b610e99565b6040516103e99190613248565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612d5c565b610eca565b6040516104269190613181565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190612d5c565b610edc565b6040516104639190613248565b60405180910390f35b34801561047857600080fd5b50610481610f0d565b60405161048e9190613248565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612ae1565b610f9b565b6040516104cb91906132e5565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612cda565b611054565b6040516105089190613248565b60405180910390f35b34801561051d57600080fd5b506105266114a4565b005b610542600480360381019061053d9190612d85565b611558565b005b34801561055057600080fd5b506105596116e9565b6040516105669190613248565b60405180910390f35b61058960048036038101906105849190612d5c565b61177b565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612c10565b611887565b005b6105ce60048036038101906105c99190612b95565b611992565b005b6105ea60048036038101906105e59190612d85565b611a05565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612d5c565b611b7e565b6040516106209190613248565b60405180910390f35b34801561063557600080fd5b5061063e611d0c565b60405161064b91906132ca565b60405180910390f35b34801561066057600080fd5b50610669611d2e565b005b34801561067757600080fd5b50610692600480360381019061068d9190612b0a565b611f38565b60405161069f91906131e8565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190612ae1565b611fcc565b6040516106dc91906131e8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107869061362e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b29061362e565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b600061081482611fec565b61084a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108948282600161204b565b5050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108f057600080fd5b600a5481106108fe57600080fd5b620697807f000000000000000000000000000000000000000000000000000000000000000061092d9190613430565b421161093857600080fd5b80600a8190555050565b600061094c612197565b6001546000540303905090565b6000610964826121a0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109d7846122a5565b915091506109ed81876109e86122cc565b6122d4565b610a3957610a02866109fd6122cc565b611f38565b610a38576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aa0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aad8686866001612318565b8015610ab857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8685610b6288888761231e565b7c020000000000000000000000000000000000000000000000000000000017612346565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c0e576000600185019050600060046000838152602001908152602001600020541415610c0c576000548114610c0b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c768686866001612371565b505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600960009054906101000a90046fffffffffffffffffffffffffffffffff1681565b600047905060006064605483610cda91906134b7565b610ce49190613486565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1681604051610d2a90613151565b60006040518083038185875af1925050503d8060008114610d67576040519150601f19603f3d011682016040523d82523d6000602084013e610d6c565b606091505b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168183610db29190613511565b604051610dbe90613151565b60006040518083038185875af1925050503d8060008114610dfb576040519150601f19603f3d011682016040523d82523d6000602084013e610e00565b606091505b5050505050565b610e2283838360405180602001604052806000815250611992565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e7f57600080fd5b8060089080519060200190610e959291906128db565b5050565b6060610ec382604051602001610eaf9190613089565b604051602081830303815290604052611054565b9050919050565b6000610ed5826121a0565b9050919050565b6060610f0682604051602001610ef29190613166565b604051602081830303815290604052611054565b9050919050565b60088054610f1a9061362e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f469061362e565b8015610f935780601f10610f6857610100808354040283529160200191610f93565b820191906000526020600020905b815481529060010190602001808311610f7657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611003576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000600284516110a091906134b7565b60026110ac9190613430565b67ffffffffffffffff8111156110eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561111d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061117b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611205577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b84518110156114995782600486838151811061127c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff16815181106112e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361130191906134b7565b600261130d9190613430565b81518110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b8683815181106113b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff16815181106113fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361141491906134b7565b60036114209190613430565b81518110611457577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061149190613691565b915050611237565b508092505050919050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114fc57600080fd5b611068611507610942565b1461151157600080fd5b60014361151e91906133ea565b600960006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550565b610bb8611563610942565b1061156d57600080fd5b836658d15e1762800061158091906134b7565b341461158b57600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115e257600080fd5b7f0000000000000000000000000000000000000000000000000000000000000000421061160e57600080fd5b600584111561161c57600080fd5b61165d6040518060400160405280600981526020017f506c65626c697374200000000000000000000000000000000000000000000000815250848484612377565b600384106116805761167b336001866116769190613430565b61254c565b61168b565b61168a338561254c565b5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6060600380546116f89061362e565b80601f01602080910402602001604051908101604052809291908181526020018280546117249061362e565b80156117715780601f1061174657610100808354040283529160200191611771565b820191906000526020600020905b81548152906001019060200180831161175457829003601f168201915b5050505050905090565b80600a5461178991906134b7565b341461179457600080fd5b7f00000000000000000000000000000000000000000000000000000000000000004210156117c157600080fd5b60006117cb610942565b90506110688111156117dc57600080fd5b61106882826117eb9190613430565b1115611878576000816110686118019190613511565b9050600081846118119190613511565b905061181d338361254c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc600a548361184591906134b7565b9081150290604051600060405180830381858888f19350505050158015611870573d6000803e3d6000fd5b505050611883565b611882338361254c565b5b5050565b80600760006118946122cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119416122cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198691906131e8565b60405180910390a35050565b61199d848484610959565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119ff576119c884848484612709565b6119fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b610bb8611a10610942565b10611a1a57600080fd5b8366470de4df820000611a2d91906134b7565b3414611a3857600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a8f57600080fd5b7f00000000000000000000000000000000000000000000000000000000000000004210611abb57600080fd5b6007841115611ac957600080fd5b611b0a6040518060400160405280600881526020017f4b656b6c69737420000000000000000000000000000000000000000000000000815250848484612377565b611b2033600186611b1b9190613430565b61254c565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6060611b8982611fec565b611bbf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161415611c5857600060088054611c079061362e565b90501415611c245760405180602001604052806000815250611c51565b6008611c306000612869565b604051602001611c41929190613107565b6040516020818303038152906040525b9050611d07565b600060088054611c679061362e565b90501415611c845760405180602001604052806000815250611d04565b6008611ce36001611068600960109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1686611cca9190613430565b611cd49190613712565b611cde9190613430565b612869565b604051602001611cf4929190613107565b6040516020818303038152906040525b90505b919050565b600960109054906101000a90046fffffffffffffffffffffffffffffffff1681565b6000600960109054906101000a90046fffffffffffffffffffffffffffffffff1690506000816fffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061326a565b60405180910390fd5b6000600960009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161415611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e11906132aa565b60405180910390fd5b60ff600960009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1643611e589190613511565b10611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f9061328a565b60405180910390fd5b611068600960009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff164060001c611eda9190613712565b90506000816fffffffffffffffffffffffffffffffff161415611efc57600190505b80600960106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600081611ff7612197565b11158015612006575060005482105b8015612044575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061205683610eca565b905081156120e1578073ffffffffffffffffffffffffffffffffffffffff1661207d6122cc565b73ffffffffffffffffffffffffffffffffffffffff16146120e0576120a9816120a46122cc565b611f38565b6120df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b6000816121ab612197565b1161226e576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561226d576000811415612268576000548210612232576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081141561225e57612263565b6122a0565b612233565b6122a0565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123358686846128c2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090506000856123bd33610e99565b6040516020016123ce9291906130e3565b60405160208183030381529060405290506000816040516020016123f291906130cc565b6040516020818303038152906040528051906020012090506000838260405160200161241f9291906130a4565b604051602081830303815290604052905060008180519060200120905060006001828a8a8a604051600081526020016040526040516124619493929190613203565b6020604051602081039080840390855afa158015612483573d6000803e3d6000fd5b5050506020604051035190507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614816040516020016124ef919061312b565b6040516020818303038152906040529061253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369190613248565b60405180910390fd5b5050505050505050505050565b600080549050600082141561258d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259a6000848385612318565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061261183612602600086600061231e565b61260b856128cb565b17612346565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612677565b5060008214156126ee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127046000848385612371565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272f6122cc565b8786866040518563ffffffff1660e01b8152600401612751949392919061319c565b602060405180830381600087803b15801561276b57600080fd5b505af192505050801561279c57506040513d601f19601f820116820180604052508101906127999190612cb1565b60015b612816573d80600081146127cc576040519150601f19603f3d011682016040523d82523d6000602084013e6127d1565b606091505b5060008151141561280e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b6001156128ad57600184039350600a81066030018453600a81049050806128a8576128ad565b612882565b50828103602084039350808452505050919050565b60009392505050565b60006001821460e11b9050919050565b8280546128e79061362e565b90600052602060002090601f0160209004810192826129095760008555612950565b82601f1061292257805160ff1916838001178555612950565b82800160010185558215612950579182015b8281111561294f578251825591602001919060010190612934565b5b50905061295d9190612961565b5090565b5b8082111561297a576000816000905550600101612962565b5090565b600061299161298c84613325565b613300565b9050828152602081018484840111156129a957600080fd5b6129b48482856135ec565b509392505050565b60006129cf6129ca84613356565b613300565b9050828152602081018484840111156129e757600080fd5b6129f28482856135ec565b509392505050565b600081359050612a09816138c4565b92915050565b600081359050612a1e816138db565b92915050565b600081359050612a33816138f2565b92915050565b600081359050612a4881613909565b92915050565b600081519050612a5d81613909565b92915050565b600082601f830112612a7457600080fd5b8135612a8484826020860161297e565b91505092915050565b600082601f830112612a9e57600080fd5b8135612aae8482602086016129bc565b91505092915050565b600081359050612ac681613920565b92915050565b600081359050612adb81613937565b92915050565b600060208284031215612af357600080fd5b6000612b01848285016129fa565b91505092915050565b60008060408385031215612b1d57600080fd5b6000612b2b858286016129fa565b9250506020612b3c858286016129fa565b9150509250929050565b600080600060608486031215612b5b57600080fd5b6000612b69868287016129fa565b9350506020612b7a868287016129fa565b9250506040612b8b86828701612ab7565b9150509250925092565b60008060008060808587031215612bab57600080fd5b6000612bb9878288016129fa565b9450506020612bca878288016129fa565b9350506040612bdb87828801612ab7565b925050606085013567ffffffffffffffff811115612bf857600080fd5b612c0487828801612a63565b91505092959194509250565b60008060408385031215612c2357600080fd5b6000612c31858286016129fa565b9250506020612c4285828601612a0f565b9150509250929050565b60008060408385031215612c5f57600080fd5b6000612c6d858286016129fa565b9250506020612c7e85828601612ab7565b9150509250929050565b600060208284031215612c9a57600080fd5b6000612ca884828501612a39565b91505092915050565b600060208284031215612cc357600080fd5b6000612cd184828501612a4e565b91505092915050565b600060208284031215612cec57600080fd5b600082013567ffffffffffffffff811115612d0657600080fd5b612d1284828501612a63565b91505092915050565b600060208284031215612d2d57600080fd5b600082013567ffffffffffffffff811115612d4757600080fd5b612d5384828501612a8d565b91505092915050565b600060208284031215612d6e57600080fd5b6000612d7c84828501612ab7565b91505092915050565b60008060008060808587031215612d9b57600080fd5b6000612da987828801612ab7565b9450506020612dba87828801612acc565b9350506040612dcb87828801612a24565b9250506060612ddc87828801612a24565b91505092959194509250565b612df181613545565b82525050565b612e08612e0382613545565b6136da565b82525050565b612e1781613557565b82525050565b612e2681613563565b82525050565b612e3d612e3882613563565b6136ec565b82525050565b6000612e4e8261339c565b612e5881856133b2565b9350612e688185602086016135fb565b612e71816137ff565b840191505092915050565b6000612e878261339c565b612e9181856133c3565b9350612ea18185602086016135fb565b80840191505092915050565b6000612eb8826133a7565b612ec281856133ce565b9350612ed28185602086016135fb565b612edb816137ff565b840191505092915050565b6000612ef1826133a7565b612efb81856133df565b9350612f0b8185602086016135fb565b80840191505092915050565b60008154612f248161362e565b612f2e81866133df565b94506001821660008114612f495760018114612f5a57612f8d565b60ff19831686528186019350612f8d565b612f6385613387565b60005b83811015612f8557815481890152600182019150602081019050612f66565b838801955050505b50505092915050565b6000612fa3601d836133ce565b9150612fae8261381d565b602082019050919050565b6000612fc66016836133df565b9150612fd182613846565b601682019050919050565b6000612fe9600c836133ce565b9150612ff48261386f565b602082019050919050565b600061300c6020836133ce565b915061301782613898565b602082019050919050565b600061302f6000836133c3565b915061303a826138c1565b600082019050919050565b61304e81613599565b82525050565b61305d816135d5565b82525050565b61307461306f826135d5565b613708565b82525050565b613083816135df565b82525050565b60006130958284612df7565b60148201915081905092915050565b60006130b08285612e7c565b91506130bc8284612e2c565b6020820191508190509392505050565b60006130d88284612ee6565b915081905092915050565b60006130ef8285612ee6565b91506130fb8284612ee6565b91508190509392505050565b60006131138285612f17565b915061311f8284612ee6565b91508190509392505050565b600061313682612fb9565b91506131428284612df7565b60148201915081905092915050565b600061315c82613022565b9150819050919050565b60006131728284613063565b60208201915081905092915050565b60006020820190506131966000830184612de8565b92915050565b60006080820190506131b16000830187612de8565b6131be6020830186612de8565b6131cb6040830185613054565b81810360608301526131dd8184612e43565b905095945050505050565b60006020820190506131fd6000830184612e0e565b92915050565b60006080820190506132186000830187612e1d565b613225602083018661307a565b6132326040830185612e1d565b61323f6060830184612e1d565b95945050505050565b600060208201905081810360008301526132628184612ead565b905092915050565b6000602082019050818103600083015261328381612f96565b9050919050565b600060208201905081810360008301526132a381612fdc565b9050919050565b600060208201905081810360008301526132c381612fff565b9050919050565b60006020820190506132df6000830184613045565b92915050565b60006020820190506132fa6000830184613054565b92915050565b600061330a61331b565b90506133168282613660565b919050565b6000604051905090565b600067ffffffffffffffff8211156133405761333f6137d0565b5b613349826137ff565b9050602081019050919050565b600067ffffffffffffffff821115613371576133706137d0565b5b61337a826137ff565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133f582613599565b915061340083613599565b9250826fffffffffffffffffffffffffffffffff0382111561342557613424613743565b5b828201905092915050565b600061343b826135d5565b9150613446836135d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561347b5761347a613743565b5b828201905092915050565b6000613491826135d5565b915061349c836135d5565b9250826134ac576134ab613772565b5b828204905092915050565b60006134c2826135d5565b91506134cd836135d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561350657613505613743565b5b828202905092915050565b600061351c826135d5565b9150613527836135d5565b92508282101561353a57613539613743565b5b828203905092915050565b6000613550826135b5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156136195780820151818401526020810190506135fe565b83811115613628576000848401525b50505050565b6000600282049050600182168061364657607f821691505b6020821081141561365a576136596137a1565b5b50919050565b613669826137ff565b810181811067ffffffffffffffff82111715613688576136876137d0565b5b80604052505050565b600061369c826135d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136cf576136ce613743565b5b600182019050919050565b60006136e5826136f6565b9050919050565b6000819050919050565b600061370182613810565b9050919050565b6000819050919050565b600061371d826135d5565b9150613728836135d5565b92508261373857613737613772565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5265636f76657265642061646472657373207761732000000000000000000000600082015250565b7f4d7573742072652d696e69740000000000000000000000000000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b6138cd81613545565b81146138d857600080fd5b50565b6138e481613557565b81146138ef57600080fd5b50565b6138fb81613563565b811461390657600080fd5b50565b6139128161356d565b811461391d57600080fd5b50565b613929816135d5565b811461393457600080fd5b50565b613940816135df565b811461394b57600080fd5b5056fea26469706673582212207afa6d036e813b0b2b57dcb26d27f218c831a7f1e3a01b36472728b1b176b68564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb00000000000000000000000038857ed3a8fc5951289e58e20fb56a00e88f0bbd000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d4e784a3445355835385855674d514e466a393142335a50703234564d6b53694b726b507541703469644848692f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a22cb46511610095578063d555654411610064578063d555654414610629578063e10e9e5f14610654578063e985e9c51461066b578063f2ec899f146106a8576101cd565b8063a22cb4651461058b578063b88d4fde146105b4578063bb1043f6146105d0578063c87b56dd146105ec576101cd565b80637f89b5ce116100d15780637f89b5ce1461051157806381515a491461052857806395d89b4114610544578063a0712d681461056f576101cd565b80636c0360eb1461046c57806370a082311461049757806371aad10d146104d4576101cd565b806326092b831161016f57806355f804b31161013e57806355f804b31461038c57806356ca623e146103b55780636352211e146103f25780636900a3ae1461042f576101cd565b806326092b8314610303578063337121431461032e5780633ccfd60b1461035957806342842e0e14610370576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780630c3986e21461029357806318160ddd146102bc57806323b872dd146102e7576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612c88565b6106e5565b60405161020691906131e8565b60405180910390f35b34801561021b57600080fd5b50610224610777565b6040516102319190613248565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d5c565b610809565b60405161026e9190613181565b60405180910390f35b610291600480360381019061028c9190612c4c565b610888565b005b34801561029f57600080fd5b506102ba60048036038101906102b59190612d5c565b610898565b005b3480156102c857600080fd5b506102d1610942565b6040516102de91906132e5565b60405180910390f35b61030160048036038101906102fc9190612b46565b610959565b005b34801561030f57600080fd5b50610318610c7e565b60405161032591906132e5565b60405180910390f35b34801561033a57600080fd5b50610343610ca2565b60405161035091906132ca565b60405180910390f35b34801561036557600080fd5b5061036e610cc4565b005b61038a60048036038101906103859190612b46565b610e07565b005b34801561039857600080fd5b506103b360048036038101906103ae9190612d1b565b610e27565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190612ae1565b610e99565b6040516103e99190613248565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612d5c565b610eca565b6040516104269190613181565b60405180910390f35b34801561043b57600080fd5b5061045660048036038101906104519190612d5c565b610edc565b6040516104639190613248565b60405180910390f35b34801561047857600080fd5b50610481610f0d565b60405161048e9190613248565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612ae1565b610f9b565b6040516104cb91906132e5565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612cda565b611054565b6040516105089190613248565b60405180910390f35b34801561051d57600080fd5b506105266114a4565b005b610542600480360381019061053d9190612d85565b611558565b005b34801561055057600080fd5b506105596116e9565b6040516105669190613248565b60405180910390f35b61058960048036038101906105849190612d5c565b61177b565b005b34801561059757600080fd5b506105b260048036038101906105ad9190612c10565b611887565b005b6105ce60048036038101906105c99190612b95565b611992565b005b6105ea60048036038101906105e59190612d85565b611a05565b005b3480156105f857600080fd5b50610613600480360381019061060e9190612d5c565b611b7e565b6040516106209190613248565b60405180910390f35b34801561063557600080fd5b5061063e611d0c565b60405161064b91906132ca565b60405180910390f35b34801561066057600080fd5b50610669611d2e565b005b34801561067757600080fd5b50610692600480360381019061068d9190612b0a565b611f38565b60405161069f91906131e8565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190612ae1565b611fcc565b6040516106dc91906131e8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107869061362e565b80601f01602080910402602001604051908101604052809291908181526020018280546107b29061362e565b80156107ff5780601f106107d4576101008083540402835291602001916107ff565b820191906000526020600020905b8154815290600101906020018083116107e257829003601f168201915b5050505050905090565b600061081482611fec565b61084a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108948282600161204b565b5050565b7f0000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108f057600080fd5b600a5481106108fe57600080fd5b620697807f00000000000000000000000000000000000000000000000000000000637e34a361092d9190613430565b421161093857600080fd5b80600a8190555050565b600061094c612197565b6001546000540303905090565b6000610964826121a0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109cb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109d7846122a5565b915091506109ed81876109e86122cc565b6122d4565b610a3957610a02866109fd6122cc565b611f38565b610a38576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610aa0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aad8686866001612318565b8015610ab857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b8685610b6288888761231e565b7c020000000000000000000000000000000000000000000000000000000017612346565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c0e576000600185019050600060046000838152602001908152602001600020541415610c0c576000548114610c0b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c768686866001612371565b505050505050565b7f00000000000000000000000000000000000000000000000000000000637e34a381565b600960009054906101000a90046fffffffffffffffffffffffffffffffff1681565b600047905060006064605483610cda91906134b7565b610ce49190613486565b90507f0000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb73ffffffffffffffffffffffffffffffffffffffff1681604051610d2a90613151565b60006040518083038185875af1925050503d8060008114610d67576040519150601f19603f3d011682016040523d82523d6000602084013e610d6c565b606091505b5050507f00000000000000000000000038857ed3a8fc5951289e58e20fb56a00e88f0bbd73ffffffffffffffffffffffffffffffffffffffff168183610db29190613511565b604051610dbe90613151565b60006040518083038185875af1925050503d8060008114610dfb576040519150601f19603f3d011682016040523d82523d6000602084013e610e00565b606091505b5050505050565b610e2283838360405180602001604052806000815250611992565b505050565b7f0000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e7f57600080fd5b8060089080519060200190610e959291906128db565b5050565b6060610ec382604051602001610eaf9190613089565b604051602081830303815290604052611054565b9050919050565b6000610ed5826121a0565b9050919050565b6060610f0682604051602001610ef29190613166565b604051602081830303815290604052611054565b9050919050565b60088054610f1a9061362e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f469061362e565b8015610f935780601f10610f6857610100808354040283529160200191610f93565b820191906000526020600020905b815481529060010190602001808311610f7657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611003576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000600284516110a091906134b7565b60026110ac9190613430565b67ffffffffffffffff8111156110eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561111d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061117b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611205577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b84518110156114995782600486838151811061127c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff16815181106112e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361130191906134b7565b600261130d9190613430565b81518110611344577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b8683815181106113b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b1660f81c60ff16815181106113fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260028361141491906134b7565b60036114209190613430565b81518110611457577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061149190613691565b915050611237565b508092505050919050565b7f0000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114fc57600080fd5b611068611507610942565b1461151157600080fd5b60014361151e91906133ea565b600960006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550565b610bb8611563610942565b1061156d57600080fd5b836658d15e1762800061158091906134b7565b341461158b57600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115e257600080fd5b7f00000000000000000000000000000000000000000000000000000000637e34a3421061160e57600080fd5b600584111561161c57600080fd5b61165d6040518060400160405280600981526020017f506c65626c697374200000000000000000000000000000000000000000000000815250848484612377565b600384106116805761167b336001866116769190613430565b61254c565b61168b565b61168a338561254c565b5b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6060600380546116f89061362e565b80601f01602080910402602001604051908101604052809291908181526020018280546117249061362e565b80156117715780601f1061174657610100808354040283529160200191611771565b820191906000526020600020905b81548152906001019060200180831161175457829003601f168201915b5050505050905090565b80600a5461178991906134b7565b341461179457600080fd5b7f00000000000000000000000000000000000000000000000000000000637e34a34210156117c157600080fd5b60006117cb610942565b90506110688111156117dc57600080fd5b61106882826117eb9190613430565b1115611878576000816110686118019190613511565b9050600081846118119190613511565b905061181d338361254c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc600a548361184591906134b7565b9081150290604051600060405180830381858888f19350505050158015611870573d6000803e3d6000fd5b505050611883565b611882338361254c565b5b5050565b80600760006118946122cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119416122cc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161198691906131e8565b60405180910390a35050565b61199d848484610959565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119ff576119c884848484612709565b6119fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b610bb8611a10610942565b10611a1a57600080fd5b8366470de4df820000611a2d91906134b7565b3414611a3857600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a8f57600080fd5b7f00000000000000000000000000000000000000000000000000000000637e34a34210611abb57600080fd5b6007841115611ac957600080fd5b611b0a6040518060400160405280600881526020017f4b656b6c69737420000000000000000000000000000000000000000000000000815250848484612377565b611b2033600186611b1b9190613430565b61254c565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b6060611b8982611fec565b611bbf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600960109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161415611c5857600060088054611c079061362e565b90501415611c245760405180602001604052806000815250611c51565b6008611c306000612869565b604051602001611c41929190613107565b6040516020818303038152906040525b9050611d07565b600060088054611c679061362e565b90501415611c845760405180602001604052806000815250611d04565b6008611ce36001611068600960109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1686611cca9190613430565b611cd49190613712565b611cde9190613430565b612869565b604051602001611cf4929190613107565b6040516020818303038152906040525b90505b919050565b600960109054906101000a90046fffffffffffffffffffffffffffffffff1681565b6000600960109054906101000a90046fffffffffffffffffffffffffffffffff1690506000816fffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061326a565b60405180910390fd5b6000600960009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161415611e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e11906132aa565b60405180910390fd5b60ff600960009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1643611e589190613511565b10611e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8f9061328a565b60405180910390fd5b611068600960009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff164060001c611eda9190613712565b90506000816fffffffffffffffffffffffffffffffff161415611efc57600190505b80600960106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600081611ff7612197565b11158015612006575060005482105b8015612044575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061205683610eca565b905081156120e1578073ffffffffffffffffffffffffffffffffffffffff1661207d6122cc565b73ffffffffffffffffffffffffffffffffffffffff16146120e0576120a9816120a46122cc565b611f38565b6120df576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b60006001905090565b6000816121ab612197565b1161226e576004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561226d576000811415612268576000548210612232576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6004600083600190039350838152602001908152602001600020549050600081141561225e57612263565b6122a0565b612233565b6122a0565b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123358686846128c2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090506000856123bd33610e99565b6040516020016123ce9291906130e3565b60405160208183030381529060405290506000816040516020016123f291906130cc565b6040516020818303038152906040528051906020012090506000838260405160200161241f9291906130a4565b604051602081830303815290604052905060008180519060200120905060006001828a8a8a604051600081526020016040526040516124619493929190613203565b6020604051602081039080840390855afa158015612483573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000038857ed3a8fc5951289e58e20fb56a00e88f0bbd73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614816040516020016124ef919061312b565b6040516020818303038152906040529061253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369190613248565b60405180910390fd5b5050505050505050505050565b600080549050600082141561258d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259a6000848385612318565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061261183612602600086600061231e565b61260b856128cb565b17612346565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126b257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612677565b5060008214156126ee576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127046000848385612371565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261272f6122cc565b8786866040518563ffffffff1660e01b8152600401612751949392919061319c565b602060405180830381600087803b15801561276b57600080fd5b505af192505050801561279c57506040513d601f19601f820116820180604052508101906127999190612cb1565b60015b612816573d80600081146127cc576040519150601f19603f3d011682016040523d82523d6000602084013e6127d1565b606091505b5060008151141561280e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391506000825281835b6001156128ad57600184039350600a81066030018453600a81049050806128a8576128ad565b612882565b50828103602084039350808452505050919050565b60009392505050565b60006001821460e11b9050919050565b8280546128e79061362e565b90600052602060002090601f0160209004810192826129095760008555612950565b82601f1061292257805160ff1916838001178555612950565b82800160010185558215612950579182015b8281111561294f578251825591602001919060010190612934565b5b50905061295d9190612961565b5090565b5b8082111561297a576000816000905550600101612962565b5090565b600061299161298c84613325565b613300565b9050828152602081018484840111156129a957600080fd5b6129b48482856135ec565b509392505050565b60006129cf6129ca84613356565b613300565b9050828152602081018484840111156129e757600080fd5b6129f28482856135ec565b509392505050565b600081359050612a09816138c4565b92915050565b600081359050612a1e816138db565b92915050565b600081359050612a33816138f2565b92915050565b600081359050612a4881613909565b92915050565b600081519050612a5d81613909565b92915050565b600082601f830112612a7457600080fd5b8135612a8484826020860161297e565b91505092915050565b600082601f830112612a9e57600080fd5b8135612aae8482602086016129bc565b91505092915050565b600081359050612ac681613920565b92915050565b600081359050612adb81613937565b92915050565b600060208284031215612af357600080fd5b6000612b01848285016129fa565b91505092915050565b60008060408385031215612b1d57600080fd5b6000612b2b858286016129fa565b9250506020612b3c858286016129fa565b9150509250929050565b600080600060608486031215612b5b57600080fd5b6000612b69868287016129fa565b9350506020612b7a868287016129fa565b9250506040612b8b86828701612ab7565b9150509250925092565b60008060008060808587031215612bab57600080fd5b6000612bb9878288016129fa565b9450506020612bca878288016129fa565b9350506040612bdb87828801612ab7565b925050606085013567ffffffffffffffff811115612bf857600080fd5b612c0487828801612a63565b91505092959194509250565b60008060408385031215612c2357600080fd5b6000612c31858286016129fa565b9250506020612c4285828601612a0f565b9150509250929050565b60008060408385031215612c5f57600080fd5b6000612c6d858286016129fa565b9250506020612c7e85828601612ab7565b9150509250929050565b600060208284031215612c9a57600080fd5b6000612ca884828501612a39565b91505092915050565b600060208284031215612cc357600080fd5b6000612cd184828501612a4e565b91505092915050565b600060208284031215612cec57600080fd5b600082013567ffffffffffffffff811115612d0657600080fd5b612d1284828501612a63565b91505092915050565b600060208284031215612d2d57600080fd5b600082013567ffffffffffffffff811115612d4757600080fd5b612d5384828501612a8d565b91505092915050565b600060208284031215612d6e57600080fd5b6000612d7c84828501612ab7565b91505092915050565b60008060008060808587031215612d9b57600080fd5b6000612da987828801612ab7565b9450506020612dba87828801612acc565b9350506040612dcb87828801612a24565b9250506060612ddc87828801612a24565b91505092959194509250565b612df181613545565b82525050565b612e08612e0382613545565b6136da565b82525050565b612e1781613557565b82525050565b612e2681613563565b82525050565b612e3d612e3882613563565b6136ec565b82525050565b6000612e4e8261339c565b612e5881856133b2565b9350612e688185602086016135fb565b612e71816137ff565b840191505092915050565b6000612e878261339c565b612e9181856133c3565b9350612ea18185602086016135fb565b80840191505092915050565b6000612eb8826133a7565b612ec281856133ce565b9350612ed28185602086016135fb565b612edb816137ff565b840191505092915050565b6000612ef1826133a7565b612efb81856133df565b9350612f0b8185602086016135fb565b80840191505092915050565b60008154612f248161362e565b612f2e81866133df565b94506001821660008114612f495760018114612f5a57612f8d565b60ff19831686528186019350612f8d565b612f6385613387565b60005b83811015612f8557815481890152600182019150602081019050612f66565b838801955050505b50505092915050565b6000612fa3601d836133ce565b9150612fae8261381d565b602082019050919050565b6000612fc66016836133df565b9150612fd182613846565b601682019050919050565b6000612fe9600c836133ce565b9150612ff48261386f565b602082019050919050565b600061300c6020836133ce565b915061301782613898565b602082019050919050565b600061302f6000836133c3565b915061303a826138c1565b600082019050919050565b61304e81613599565b82525050565b61305d816135d5565b82525050565b61307461306f826135d5565b613708565b82525050565b613083816135df565b82525050565b60006130958284612df7565b60148201915081905092915050565b60006130b08285612e7c565b91506130bc8284612e2c565b6020820191508190509392505050565b60006130d88284612ee6565b915081905092915050565b60006130ef8285612ee6565b91506130fb8284612ee6565b91508190509392505050565b60006131138285612f17565b915061311f8284612ee6565b91508190509392505050565b600061313682612fb9565b91506131428284612df7565b60148201915081905092915050565b600061315c82613022565b9150819050919050565b60006131728284613063565b60208201915081905092915050565b60006020820190506131966000830184612de8565b92915050565b60006080820190506131b16000830187612de8565b6131be6020830186612de8565b6131cb6040830185613054565b81810360608301526131dd8184612e43565b905095945050505050565b60006020820190506131fd6000830184612e0e565b92915050565b60006080820190506132186000830187612e1d565b613225602083018661307a565b6132326040830185612e1d565b61323f6060830184612e1d565b95945050505050565b600060208201905081810360008301526132628184612ead565b905092915050565b6000602082019050818103600083015261328381612f96565b9050919050565b600060208201905081810360008301526132a381612fdc565b9050919050565b600060208201905081810360008301526132c381612fff565b9050919050565b60006020820190506132df6000830184613045565b92915050565b60006020820190506132fa6000830184613054565b92915050565b600061330a61331b565b90506133168282613660565b919050565b6000604051905090565b600067ffffffffffffffff8211156133405761333f6137d0565b5b613349826137ff565b9050602081019050919050565b600067ffffffffffffffff821115613371576133706137d0565b5b61337a826137ff565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006133f582613599565b915061340083613599565b9250826fffffffffffffffffffffffffffffffff0382111561342557613424613743565b5b828201905092915050565b600061343b826135d5565b9150613446836135d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561347b5761347a613743565b5b828201905092915050565b6000613491826135d5565b915061349c836135d5565b9250826134ac576134ab613772565b5b828204905092915050565b60006134c2826135d5565b91506134cd836135d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561350657613505613743565b5b828202905092915050565b600061351c826135d5565b9150613527836135d5565b92508282101561353a57613539613743565b5b828203905092915050565b6000613550826135b5565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156136195780820151818401526020810190506135fe565b83811115613628576000848401525b50505050565b6000600282049050600182168061364657607f821691505b6020821081141561365a576136596137a1565b5b50919050565b613669826137ff565b810181811067ffffffffffffffff82111715613688576136876137d0565b5b80604052505050565b600061369c826135d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136cf576136ce613743565b5b600182019050919050565b60006136e5826136f6565b9050919050565b6000819050919050565b600061370182613810565b9050919050565b6000819050919050565b600061371d826135d5565b9150613728836135d5565b92508261373857613737613772565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f5265636f76657265642061646472657373207761732000000000000000000000600082015250565b7f4d7573742072652d696e69740000000000000000000000000000000000000000600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b6138cd81613545565b81146138d857600080fd5b50565b6138e481613557565b81146138ef57600080fd5b50565b6138fb81613563565b811461390657600080fd5b50565b6139128161356d565b811461391d57600080fd5b50565b613929816135d5565b811461393457600080fd5b50565b613940816135df565b811461394b57600080fd5b5056fea26469706673582212207afa6d036e813b0b2b57dcb26d27f218c831a7f1e3a01b36472728b1b176b68564736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb00000000000000000000000038857ed3a8fc5951289e58e20fb56a00e88f0bbd000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d4e784a3445355835385855674d514e466a393142335a50703234564d6b53694b726b507541703469644848692f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): https://ipfs.io/ipfs/QmNxJ4E5X58XUgMQNFj91B3ZPp24VMkSiKrkPuAp4idHHi/
Arg [1] : _pleb (address): 0x1d2df18F8D2B1877CeB452851cBa9d91512a9Efb
Arg [2] : _mrF (address): 0x38857Ed3a8fC5951289E58e20fB56A00e88f0BBD

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000001d2df18f8d2b1877ceb452851cba9d91512a9efb
Arg [2] : 00000000000000000000000038857ed3a8fc5951289e58e20fb56a00e88f0bbd
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [4] : 68747470733a2f2f697066732e696f2f697066732f516d4e784a344535583538
Arg [5] : 5855674d514e466a393142335a50703234564d6b53694b726b50754170346964
Arg [6] : 4848692f00000000000000000000000000000000000000000000000000000000


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.