ETH Price: $2,656.08 (+1.14%)

Token

J. Pierce Zombie Friends (JPFZF)
 

Overview

Max Total Supply

1,651 JPFZF

Holders

396

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 JPFZF
0xAD3b696cF4EC30bB57FbA90E887F7CB15d033d8F
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:
JPierceZombieFriends

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : ZombieFriends.sol
// SPDX-License-Identifier: UNLICENSED
/**
* The J. Pierce Zombie Friends contract was deployed by Ownerfy Inc. of Ownerfy.com
* Homepage: https://ownerfy.com/zombiefriends
* Visit Ownerfy.com for exclusive NFT drops or inquiries for your project.
*
* This contract is not a proxy. 
* This contract is not pausable.
* This contract is not lockable.
* The URIs are not changeable after ownership is relinquished. 
* This contract uses IPFS 
* The NFT Owners and only the NFT Owners have complete control over their NFTs 
*/
// ERC721A Contracts v4.1.0
// With help from: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract JPierceZombieFriends is IERC721A, Ownable {
    // 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 = 10000;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

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

    // Begin Zombie Friends specific
    using SafeMath for uint256;
    mapping(uint256 => bool) usedNonces;

    uint256 public salePrice = 1 * 10**17;

    string public baseTokenURI = "";
    bool public placeHolder = true;
    bool public saleOn = false;
    bool public zListOn = false;
    uint16 public constant maxZombies = 10000;

    uint16 public accountMax = 21;
    uint256 private zlc = 2500;

    uint16 private _royaltyBps = 500;
    address payable private _royaltyRecipient;

    bytes4 private constant _INTERFACE_ID_ROYALTIES_CREATORCORE = 0xbb3bafd6;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    mapping (address => uint16) public totalPerAccount;

    event UpdateRoyalty(address indexed _address, uint256 _bps);

    constructor() {
        _name = "J. Pierce Zombie Friends";
        _symbol = "JPFZF";
        _currentIndex = _startTokenId();

    }

     function mint(uint16 _count, address _to) public payable {
        uint256 total = _totalMinted();
        uint256 cost = salePrice.mul(_count);
        require(saleOn, "Sale has not started");
        require(total + _count <= maxZombies, "Max limit");
        require(msg.value >= cost, "Value below price");
        require(totalPerAccount[_to] + _count < accountMax, "Max on this account exceeded");
        
        totalPerAccount[_to] = totalPerAccount[_to] + _count;
        _mint(_to, _count);
    }

    function zombieListMint(uint16 _count, uint256 _zlc) public payable {
        uint256 total = _totalMinted();
        uint256 totalAfter = total + _count;
        require(totalAfter <= maxZombies, "Max total limit");
        require(zListOn == true, "Zombielist sale not open");
        require(_zlc == zlc, "codes do not match");
        require(totalPerAccount[msg.sender] + _count < accountMax, "Max on this account exceeded");

        totalPerAccount[msg.sender] = totalPerAccount[msg.sender] + _count;
        
        _mint(msg.sender, _count);
    }

    // In order to mint your free mint go to Ownerfy.com
    function websiteMint(uint16 _count, uint256 _nonce, bytes memory _sig) public payable {
        uint256 total = _totalMinted();
        uint256 totalAfter = total + _count;
        require(totalAfter <= maxZombies, "Max total limit");
        if(saleOn != true) {
            require(totalAfter <= 4000, "Max limit durring this phase");
        }
        require(!usedNonces[_nonce], "Nonce repeated, this tx already processed");
        require(verify(_nonce, _count, _sig), "Signature Incorrect");

        usedNonces[_nonce] = true;
        
        _mint(msg.sender, _count);
    }

    function creditCardMint(uint _count, address _to) public onlyOwner {
        uint256 total = _totalMinted();
        require(total + _count <= maxZombies, "Max limit");
        _mint(_to, _count);
    }


    /* Signature Verification
    # mostly from here https://solidity-by-example.org/signature/
    */
    function getMessageHash(
        uint256 _nonce,
        uint16 _qty
    ) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(_nonce, _qty));
    }
    
    function getEthSignedMessageHash(bytes32 _messageHash)
        public
        pure
        returns (bytes32)
    {
        /*
        Signature is produced by signing a keccak256 hash with the following format:
        "\x19Ethereum Signed Message\n" + len(msg) + msg
        In this case it's always 32 because it's a hash
        */
        return
            keccak256(
                abi.encodePacked("\x19Ethereum Signed Message:\n32", _messageHash)
            );
    }

    function verify(
        uint256 _nonce,
        uint16 _qty,
        bytes memory signature
    ) public view returns (bool) {
        bytes32 messageHash = getMessageHash(_nonce, _qty);
        bytes32 ethSignedMessageHash = getEthSignedMessageHash(messageHash);

        return recoverSigner(ethSignedMessageHash, signature) == owner();
    }

    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature)
        public
        pure
        returns (address)
    {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);

        return ecrecover(_ethSignedMessageHash, v, r, s);
    }

    function splitSignature(bytes memory sig)
        public
        pure
        returns (
            bytes32 r,
            bytes32 s,
            uint8 v
        )
    {
        require(sig.length == 65, "invalid signature length");

        assembly {
            /*
            First 32 bytes stores the length of the signature

            add(sig, 32) = pointer of sig + 32
            effectively, skips first 32 bytes of signature

            mload(p) loads next 32 bytes starting at the memory address p into memory
            */

            // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
            // second 32 bytes
            s := mload(add(sig, 64))
            // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }

        // implicitly return (r, s, v)
    }

    // Set price
    function setPrice(uint256 _price) public onlyOwner{
        salePrice = _price;
    }

    function setAccountMax(uint16 _am) public onlyOwner{
        accountMax = _am;
    }

    function withdraw() public onlyOwner{
        uint amount = address(this).balance;

        (bool success, ) = owner().call{value: amount}("");
        require(success, "Failed to send Ether");
        
    }

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


    function setPlaceHolder(bool isOn) public onlyOwner {
        placeHolder = isOn;
    }

    function setSaleOn(bool isOn) public onlyOwner {
        saleOn = isOn;
    }

    function setZlistOn(bool _zListOn) public onlyOwner {
        zListOn = _zListOn;
    }

    function setZlc(uint256 _zlc) public onlyOwner {
        zlc = _zlc;
    }

    /**
    * @dev Update royalties
    */
    function updateRoyalties(address payable recipient, uint16 bps) external onlyOwner {
        _royaltyRecipient = recipient;
        _royaltyBps = bps;
        emit UpdateRoyalty(recipient, bps);
    }

    /**
      * ROYALTY FUNCTIONS
      */
    function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return (recipients, bps);
    }

    function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) {
        if (_royaltyRecipient != address(0x0)) {
            recipients = new address payable[](1);
            recipients[0] = _royaltyRecipient;
        }
        return recipients;
    }

    function getFeeBps(uint256) external view returns (uint[] memory bps) {
        if (_royaltyRecipient != address(0x0)) {
            bps = new uint256[](1);
            bps[0] = _royaltyBps;
        }
        return bps;
    }

    function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) {
        return (_royaltyRecipient, value*_royaltyBps/10000);
    }


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

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

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

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

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

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

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

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

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

    /**
     * Returns the 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 {
        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;
    }

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

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

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        if(placeHolder) {
          return baseTokenURI;
        } else {
          return string(abi.encodePacked(baseTokenURI, uint2str(tokenId), ".json"));
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

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

    function uint2str(
      uint256 _i
    )
      internal
      pure
      returns (string memory str)
    {
      if (_i == 0)
      {
        return "0";
      }
      uint256 j = _i;
      uint256 length;
      while (j != 0)
      {
        length++;
        j /= 10;
      }
      bytes memory bstr = new bytes(length);
      uint256 k = length;
      j = _i;
      while (j != 0)
      {
        bstr[--k] = bytes1(uint8(48 + j % 10));
        j /= 10;
      }
      str = string(bstr);
    }
}

File 2 of 5 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 3 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 5 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_bps","type":"uint256"}],"name":"UpdateRoyalty","type":"event"},{"inputs":[],"name":"accountMax","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"creditCardMint","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":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"}],"name":"getEthSignedMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"uint16","name":"_qty","type":"uint16"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxZombies","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_count","type":"uint16"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeHolder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ethSignedMessageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_am","type":"uint16"}],"name":"setAccountMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOn","type":"bool"}],"name":"setPlaceHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOn","type":"bool"}],"name":"setSaleOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_zlc","type":"uint256"}],"name":"setZlc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_zListOn","type":"bool"}],"name":"setZlistOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPerAccount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"uint16","name":"_qty","type":"uint16"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_count","type":"uint16"},{"internalType":"uint256","name":"_nonce","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"websiteMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zListOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_count","type":"uint16"},{"internalType":"uint256","name":"_zlc","type":"uint256"}],"name":"zombieListMint","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600a5560405180602001604052806000815250600b90805190602001906200003792919062000287565b506001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506015600c60036101000a81548161ffff021916908361ffff1602179055506109c4600d556101f4600e60006101000a81548161ffff021916908361ffff160217905550348015620000d957600080fd5b50620000fa620000ee620001b260201b60201c565b620001ba60201b60201c565b6040518060400160405280601881526020017f4a2e20506965726365205a6f6d62696520467269656e64730000000000000000815250600390805190602001906200014792919062000287565b506040518060400160405280600581526020017f4a50465a46000000000000000000000000000000000000000000000000000000815250600490805190602001906200019592919062000287565b50620001a66200027e60201b60201c565b6001819055506200039c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620002959062000337565b90600052602060002090601f016020900481019282620002b9576000855562000305565b82601f10620002d457805160ff191683800117855562000305565b8280016001018555821562000305579182015b8281111562000304578251825591602001919060010190620002e7565b5b50905062000314919062000318565b5090565b5b808211156200033357600081600090555060010162000319565b5090565b600060028204905060018216806200035057607f821691505b602082108114156200036757620003666200036d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61516f80620003ac6000396000f3fe6080604052600436106102885760003560e01c80637df1fe1e1161015a578063bb3bafd6116100c1578063e367694e1161007a578063e367694e14610a01578063e985e9c514610a2a578063f2fde38b14610a67578063f51f96dd14610a90578063f9b9c2b514610abb578063fa54080114610ae657610288565b8063bb3bafd6146108dc578063c87b56dd1461091a578063d37ba08114610957578063d547cfb714610980578063d64d6b51146109ab578063d8231712146109d657610288565b80639c205513116101135780639c205513146107c9578063a22cb465146107e5578063a7bb58031461080e578063af3a21a31461084d578063b88d4fde14610876578063b9c4d9fb1461089f57610288565b80637df1fe1e146106a55780638da5cb5b146106e25780638e89457a1461070d57806391b7f5ed1461073857806395d89b411461076157806397aba7f91461078c57610288565b80632a55205a116101fe5780636352211e116101b75780636352211e1461059757806370a08231146105d4578063715018a61461061157806376bbedc514610628578063773ef1cf1461065157806377fa56ab1461067c57610288565b80632a55205a146104975780633ccfd60b146104d55780633ce40d64146104ec57806342842e0e1461052957806348cb01551461055257806355f804b31461056e57610288565b80630ebd4c7f116102505780630ebd4c7f1461038457806312622031146103c157806318160ddd146103dd5780631b17ecac146104085780631e960d201461044557806323b872dd1461046e57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063081af61614610332578063095ea7b31461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613b6b565b610b23565b6040516102c19190614559565b60405180910390f35b3480156102d657600080fd5b506102df610ca2565b6040516102ec919061460b565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613d47565b610d34565b604051610329919061444e565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613d70565b610db0565b005b34801561036757600080fd5b50610382600480360381019061037d9190613a89565b610e9b565b005b34801561039057600080fd5b506103ab60048036038101906103a69190613d47565b610fdc565b6040516103b89190614537565b60405180910390f35b6103db60048036038101906103d69190613ca4565b611107565b005b3480156103e957600080fd5b506103f2611382565b6040516103ff9190614823565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190613de8565b611399565b60405161043c9190614559565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613ac5565b6113ff565b005b34801561047a57600080fd5b5061049560048036038101906104909190613983565b611498565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613e4f565b6117bd565b6040516104cc9291906144b5565b60405180910390f35b3480156104e157600080fd5b506104ea61181b565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613dac565b611953565b6040516105209190614574565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613983565b611986565b005b61056c60048036038101906105679190613ce0565b6119a6565b005b34801561057a57600080fd5b5061059560048036038101906105909190613bfe565b611b5c565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613d47565b611bf2565b6040516105cb919061444e565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906138e2565b611c04565b6040516106089190614823565b60405180910390f35b34801561061d57600080fd5b50610626611cbd565b005b34801561063457600080fd5b5061064f600480360381019061064a9190613ac5565b611d45565b005b34801561065d57600080fd5b50610666611dde565b6040516106739190614559565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190613ac5565b611df1565b005b3480156106b157600080fd5b506106cc60048036038101906106c791906138e2565b611e8a565b6040516106d991906147ed565b60405180910390f35b3480156106ee57600080fd5b506106f7611eab565b604051610704919061444e565b60405180910390f35b34801561071957600080fd5b50610722611ed4565b60405161072f9190614559565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613d47565b611ee7565b005b34801561076d57600080fd5b50610776611f6d565b604051610783919061460b565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613b17565b611fff565b6040516107c0919061444e565b60405180910390f35b6107e360048036038101906107de9190613c68565b61206e565b005b3480156107f157600080fd5b5061080c60048036038101906108079190613a4d565b6122f9565b005b34801561081a57600080fd5b5061083560048036038101906108309190613bbd565b612471565b6040516108449392919061458f565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613d47565b6124d9565b005b34801561088257600080fd5b5061089d600480360381019061089891906139d2565b61255f565b005b3480156108ab57600080fd5b506108c660048036038101906108c19190613d47565b6125d2565b6040516108d391906144de565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190613d47565b612739565b604051610911929190614500565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c9190613d47565b61296e565b60405161094e919061460b565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613c3f565b612a89565b005b34801561098c57600080fd5b50610995612b25565b6040516109a2919061460b565b60405180910390f35b3480156109b757600080fd5b506109c0612bb3565b6040516109cd9190614559565b60405180910390f35b3480156109e257600080fd5b506109eb612bc6565b6040516109f891906147ed565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a23919061390b565b612bcc565b005b348015610a3657600080fd5b50610a516004803603810190610a4c9190613947565b612cf8565b604051610a5e9190614559565b60405180910390f35b348015610a7357600080fd5b50610a8e6004803603810190610a8991906138e2565b612d8c565b005b348015610a9c57600080fd5b50610aa5612e84565b604051610ab29190614823565b60405180910390f35b348015610ac757600080fd5b50610ad0612e8a565b604051610add91906147ed565b60405180910390f35b348015610af257600080fd5b50610b0d6004803603810190610b089190613aee565b612e9e565b604051610b1a9190614574565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bae5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bfd575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4c5750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c9b575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610cb190614bdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90614bdc565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b5050505050905090565b6000610d3f82612ece565b610d75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610db8612f2d565b73ffffffffffffffffffffffffffffffffffffffff16610dd6611eab565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e23906146cd565b60405180910390fd5b6000610e36612f35565b905061271061ffff168382610e4b91906149d2565b1115610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e839061468d565b60405180910390fd5b610e968284612f48565b505050565b6000610ea682611bf2565b90508073ffffffffffffffffffffffffffffffffffffffff16610ec761311d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a57610ef381610eee61311d565b612cf8565b610f29576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461110257600167ffffffffffffffff811115611075577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110a35781602001602082028036833780820191505090505b509050600e60009054906101000a900461ffff1661ffff16816000815181106110f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b6000611111612f35565b905060008361ffff168261112591906149d2565b905061271061ffff16811115611170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111679061478d565b60405180910390fd5b60011515600c60029054906101000a900460ff161515146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061470d565b60405180910390fd5b600d54831461120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061474d565b60405180910390fd5b600c60039054906101000a900461ffff1661ffff1684600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611278919061499a565b61ffff16106112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061462d565b60405180910390fd5b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611315919061499a565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555061137c338561ffff16612f48565b50505050565b600061138c613125565b6002546001540303905090565b6000806113a68585611953565b905060006113b382612e9e565b90506113bd611eab565b73ffffffffffffffffffffffffffffffffffffffff166113dd8286611fff565b73ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b611407612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611425611eab565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906146cd565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60006114a38261312e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611516846131fc565b9150915061152c818761152761311d565b61321e565b611578576115418661153c61311d565b612cf8565b611577576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115df576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115ec8686866001613262565b80156115f757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506116c5856116a1888887613268565b7c020000000000000000000000000000000000000000000000000000000017613290565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561174d57600060018501905060006005600083815260200190815260200160002054141561174b57600154811461174a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117b586868660016132bb565b505050505050565b600080600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600e60009054906101000a900461ffff1661ffff16856118069190614a59565b6118109190614a28565b915091509250929050565b611823612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611841611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e906146cd565b60405180910390fd5b600047905060006118a6611eab565b73ffffffffffffffffffffffffffffffffffffffff16826040516118c99061440d565b60006040518083038185875af1925050503d8060008114611906576040519150601f19603f3d011682016040523d82523d6000602084013e61190b565b606091505b505090508061194f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119469061466d565b60405180910390fd5b5050565b60008282604051602001611968929190614422565b60405160208183030381529060405280519060200120905092915050565b6119a18383836040518060200160405280600081525061255f565b505050565b60006119b0612f35565b905060008461ffff16826119c491906149d2565b905061271061ffff16811115611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a069061478d565b60405180910390fd5b60011515600c60019054906101000a900460ff16151514611a7057610fa0811115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906146ad565b60405180910390fd5b5b6009600085815260200190815260200160002060009054906101000a900460ff1615611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906147cd565b60405180910390fd5b611adc848685611399565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906147ad565b60405180910390fd5b60016009600086815260200190815260200160002060006101000a81548160ff021916908315150217905550611b55338661ffff16612f48565b5050505050565b611b64612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611b82611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906146cd565b60405180910390fd5b80600b9080519060200190611bee9291906136c7565b5050565b6000611bfd8261312e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611cc5612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d30906146cd565b60405180910390fd5b611d4360006132c1565b565b611d4d612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611d6b611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906146cd565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b600c60019054906101000a900460ff1681565b611df9612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611e17611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e64906146cd565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b600f6020528060005260406000206000915054906101000a900461ffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b611eef612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611f0d611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a906146cd565b60405180910390fd5b80600a8190555050565b606060048054611f7c90614bdc565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa890614bdc565b8015611ff55780601f10611fca57610100808354040283529160200191611ff5565b820191906000526020600020905b815481529060010190602001808311611fd857829003601f168201915b5050505050905090565b60008060008061200e85612471565b9250925092506001868285856040516000815260200160405260405161203794939291906145c6565b6020604051602081039080840390855afa158015612059573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000612078612f35565b905060006120958461ffff16600a5461338590919063ffffffff16565b9050600c60019054906101000a900460ff166120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061476d565b60405180910390fd5b61271061ffff168461ffff16836120fd91906149d2565b111561213e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121359061468d565b60405180910390fd5b80341015612181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612178906146ed565b60405180910390fd5b600c60039054906101000a900461ffff1661ffff1684600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166121ef919061499a565b61ffff1610612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a9061462d565b60405180910390fd5b83600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661228c919061499a565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055506122f3838561ffff16612f48565b50505050565b61230161311d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612366576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061237361311d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661242061311d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124659190614559565b60405180910390a35050565b600080600060418451146124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b19061472d565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6124e1612f2d565b73ffffffffffffffffffffffffffffffffffffffff166124ff611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254c906146cd565b60405180910390fd5b80600d8190555050565b61256a848484611498565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125cc576125958484848461339b565b6125cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461273457600167ffffffffffffffff81111561266b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156126995781602001602082028036833780820191505090505b509050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106126f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461296957600167ffffffffffffffff8111156127d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156128015781602001602082028036833780820191505090505b509150600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600081518110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff8111156128dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561290a5781602001602082028036833780820191505090505b509050600e60009054906101000a900461ffff1661ffff168160008151811061295c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b606061297982612ece565b6129af576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900460ff1615612a5657600b80546129d190614bdc565b80601f01602080910402602001604051908101604052809291908181526020018280546129fd90614bdc565b8015612a4a5780601f10612a1f57610100808354040283529160200191612a4a565b820191906000526020600020905b815481529060010190602001808311612a2d57829003601f168201915b50505050509050612a84565b600b612a61836134fb565b604051602001612a729291906143b8565b60405160208183030381529060405290505b919050565b612a91612f2d565b73ffffffffffffffffffffffffffffffffffffffff16612aaf611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc906146cd565b60405180910390fd5b80600c60036101000a81548161ffff021916908361ffff16021790555050565b600b8054612b3290614bdc565b80601f0160208091040260200160405190810160405280929190818152602001828054612b5e90614bdc565b8015612bab5780601f10612b8057610100808354040283529160200191612bab565b820191906000526020600020905b815481529060010190602001808311612b8e57829003601f168201915b505050505081565b600c60029054906101000a900460ff1681565b61271081565b612bd4612f2d565b73ffffffffffffffffffffffffffffffffffffffff16612bf2611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f906146cd565b60405180910390fd5b81600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167fa0a3764a6a020070a984037ddad31af783c92eae7581e99c957792d105717dd482604051612cec9190614808565b60405180910390a25050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d94612f2d565b73ffffffffffffffffffffffffffffffffffffffff16612db2611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff906146cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f9061464d565b60405180910390fd5b612e81816132c1565b50565b600a5481565b600c60039054906101000a900461ffff1681565b600081604051602001612eb191906143e7565b604051602081830303815290604052805190602001209050919050565b600081612ed9613125565b11158015612ee8575060015482105b8015612f26575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6000612f3f613125565b60015403905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ff1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ffe6000848385613262565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613075836130666000866000613268565b61306f856136ae565b17613290565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130995780600181905550505061311860008483856132bb565b505050565b600033905090565b60006001905090565b6000808290508061313d613125565b116131c5576001548110156131c45760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156131c2575b60008114156131b857600560008360019003935083815260200190815260200160002054905061318d565b80925050506131f7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861327f8686846136be565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836133939190614a59565b905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c161311d565b8786866040518563ffffffff1660e01b81526004016133e39493929190614469565b602060405180830381600087803b1580156133fd57600080fd5b505af192505050801561342e57506040513d601f19601f8201168201806040525081019061342b9190613b94565b60015b6134a8573d806000811461345e576040519150601f19603f3d011682016040523d82523d6000602084013e613463565b606091505b506000815114156134a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613543576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136a9565b600082905060005b6000821461357557808061355e90614c3f565b915050600a8261356e9190614a28565b915061354b565b60008167ffffffffffffffff8111156135b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e95781602001600182028036833780820191505090505b50905060008290508593505b600084146136a157600a8461360a9190614cae565b603061361691906149d2565b60f81b828261362490614bb2565b9250828151811061365e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8461369a9190614a28565b93506135f5565b819450505050505b919050565b60006001821460e11b9050919050565b60009392505050565b8280546136d390614bdc565b90600052602060002090601f0160209004810192826136f5576000855561373c565b82601f1061370e57805160ff191683800117855561373c565b8280016001018555821561373c579182015b8281111561373b578251825591602001919060010190613720565b5b509050613749919061374d565b5090565b5b8082111561376657600081600090555060010161374e565b5090565b600061377d61377884614863565b61483e565b90508281526020810184848401111561379557600080fd5b6137a0848285614b70565b509392505050565b60006137bb6137b684614894565b61483e565b9050828152602081018484840111156137d357600080fd5b6137de848285614b70565b509392505050565b6000813590506137f581615098565b92915050565b60008135905061380a816150af565b92915050565b60008135905061381f816150c6565b92915050565b600081359050613834816150dd565b92915050565b600081359050613849816150f4565b92915050565b60008151905061385e816150f4565b92915050565b600082601f83011261387557600080fd5b813561388584826020860161376a565b91505092915050565b600082601f83011261389f57600080fd5b81356138af8482602086016137a8565b91505092915050565b6000813590506138c78161510b565b92915050565b6000813590506138dc81615122565b92915050565b6000602082840312156138f457600080fd5b6000613902848285016137e6565b91505092915050565b6000806040838503121561391e57600080fd5b600061392c858286016137fb565b925050602061393d858286016138b8565b9150509250929050565b6000806040838503121561395a57600080fd5b6000613968858286016137e6565b9250506020613979858286016137e6565b9150509250929050565b60008060006060848603121561399857600080fd5b60006139a6868287016137e6565b93505060206139b7868287016137e6565b92505060406139c8868287016138cd565b9150509250925092565b600080600080608085870312156139e857600080fd5b60006139f6878288016137e6565b9450506020613a07878288016137e6565b9350506040613a18878288016138cd565b925050606085013567ffffffffffffffff811115613a3557600080fd5b613a4187828801613864565b91505092959194509250565b60008060408385031215613a6057600080fd5b6000613a6e858286016137e6565b9250506020613a7f85828601613810565b9150509250929050565b60008060408385031215613a9c57600080fd5b6000613aaa858286016137e6565b9250506020613abb858286016138cd565b9150509250929050565b600060208284031215613ad757600080fd5b6000613ae584828501613810565b91505092915050565b600060208284031215613b0057600080fd5b6000613b0e84828501613825565b91505092915050565b60008060408385031215613b2a57600080fd5b6000613b3885828601613825565b925050602083013567ffffffffffffffff811115613b5557600080fd5b613b6185828601613864565b9150509250929050565b600060208284031215613b7d57600080fd5b6000613b8b8482850161383a565b91505092915050565b600060208284031215613ba657600080fd5b6000613bb48482850161384f565b91505092915050565b600060208284031215613bcf57600080fd5b600082013567ffffffffffffffff811115613be957600080fd5b613bf584828501613864565b91505092915050565b600060208284031215613c1057600080fd5b600082013567ffffffffffffffff811115613c2a57600080fd5b613c368482850161388e565b91505092915050565b600060208284031215613c5157600080fd5b6000613c5f848285016138b8565b91505092915050565b60008060408385031215613c7b57600080fd5b6000613c89858286016138b8565b9250506020613c9a858286016137e6565b9150509250929050565b60008060408385031215613cb757600080fd5b6000613cc5858286016138b8565b9250506020613cd6858286016138cd565b9150509250929050565b600080600060608486031215613cf557600080fd5b6000613d03868287016138b8565b9350506020613d14868287016138cd565b925050604084013567ffffffffffffffff811115613d3157600080fd5b613d3d86828701613864565b9150509250925092565b600060208284031215613d5957600080fd5b6000613d67848285016138cd565b91505092915050565b60008060408385031215613d8357600080fd5b6000613d91858286016138cd565b9250506020613da2858286016137e6565b9150509250929050565b60008060408385031215613dbf57600080fd5b6000613dcd858286016138cd565b9250506020613dde858286016138b8565b9150509250929050565b600080600060608486031215613dfd57600080fd5b6000613e0b868287016138cd565b9350506020613e1c868287016138b8565b925050604084013567ffffffffffffffff811115613e3957600080fd5b613e4586828701613864565b9150509250925092565b60008060408385031215613e6257600080fd5b6000613e70858286016138cd565b9250506020613e81858286016138cd565b9150509250929050565b6000613e978383613ebb565b60208301905092915050565b6000613eaf8383614374565b60208301905092915050565b613ec481614ac5565b82525050565b613ed381614ab3565b82525050565b6000613ee4826148fa565b613eee8185614940565b9350613ef9836148c5565b8060005b83811015613f2a578151613f118882613e8b565b9750613f1c83614926565b925050600181019050613efd565b5085935050505092915050565b6000613f4282614905565b613f4c8185614951565b9350613f57836148d5565b8060005b83811015613f88578151613f6f8882613ea3565b9750613f7a83614933565b925050600181019050613f5b565b5085935050505092915050565b613f9e81614ad7565b82525050565b613fad81614ae3565b82525050565b613fc4613fbf82614ae3565b614c88565b82525050565b6000613fd582614910565b613fdf8185614962565b9350613fef818560208601614b7f565b613ff881614d9b565b840191505092915050565b600061400e8261491b565b614018818561497e565b9350614028818560208601614b7f565b61403181614d9b565b840191505092915050565b60006140478261491b565b614051818561498f565b9350614061818560208601614b7f565b80840191505092915050565b6000815461407a81614bdc565b614084818661498f565b9450600182166000811461409f57600181146140b0576140e3565b60ff198316865281860193506140e3565b6140b9856148e5565b60005b838110156140db578154818901526001820191506020810190506140bc565b838801955050505b50505092915050565b60006140f9601c8361498f565b915061410482614db9565b601c82019050919050565b600061411c601c8361497e565b915061412782614de2565b602082019050919050565b600061413f60268361497e565b915061414a82614e0b565b604082019050919050565b600061416260148361497e565b915061416d82614e5a565b602082019050919050565b600061418560098361497e565b915061419082614e83565b602082019050919050565b60006141a8601c8361497e565b91506141b382614eac565b602082019050919050565b60006141cb60058361498f565b91506141d682614ed5565b600582019050919050565b60006141ee60208361497e565b91506141f982614efe565b602082019050919050565b600061421160118361497e565b915061421c82614f27565b602082019050919050565b600061423460188361497e565b915061423f82614f50565b602082019050919050565b6000614257600083614973565b915061426282614f79565b600082019050919050565b600061427a60188361497e565b915061428582614f7c565b602082019050919050565b600061429d60128361497e565b91506142a882614fa5565b602082019050919050565b60006142c060148361497e565b91506142cb82614fce565b602082019050919050565b60006142e3600f8361497e565b91506142ee82614ff7565b602082019050919050565b600061430660138361497e565b915061431182615020565b602082019050919050565b600061432960298361497e565b915061433482615049565b604082019050919050565b61434881614b19565b82525050565b61435f61435a82614b19565b614c92565b82525050565b61436e81614b5e565b82525050565b61437d81614b47565b82525050565b61438c81614b47565b82525050565b6143a361439e82614b47565b614ca4565b82525050565b6143b281614b51565b82525050565b60006143c4828561406d565b91506143d0828461403c565b91506143db826141be565b91508190509392505050565b60006143f2826140ec565b91506143fe8284613fb3565b60208201915081905092915050565b60006144188261424a565b9150819050919050565b600061442e8285614392565b60208201915061443e828461434e565b6002820191508190509392505050565b60006020820190506144636000830184613eca565b92915050565b600060808201905061447e6000830187613eca565b61448b6020830186613eca565b6144986040830185614383565b81810360608301526144aa8184613fca565b905095945050505050565b60006040820190506144ca6000830185613eca565b6144d76020830184614383565b9392505050565b600060208201905081810360008301526144f88184613ed9565b905092915050565b6000604082019050818103600083015261451a8185613ed9565b9050818103602083015261452e8184613f37565b90509392505050565b600060208201905081810360008301526145518184613f37565b905092915050565b600060208201905061456e6000830184613f95565b92915050565b60006020820190506145896000830184613fa4565b92915050565b60006060820190506145a46000830186613fa4565b6145b16020830185613fa4565b6145be60408301846143a9565b949350505050565b60006080820190506145db6000830187613fa4565b6145e860208301866143a9565b6145f56040830185613fa4565b6146026060830184613fa4565b95945050505050565b600060208201905081810360008301526146258184614003565b905092915050565b600060208201905081810360008301526146468161410f565b9050919050565b6000602082019050818103600083015261466681614132565b9050919050565b6000602082019050818103600083015261468681614155565b9050919050565b600060208201905081810360008301526146a681614178565b9050919050565b600060208201905081810360008301526146c68161419b565b9050919050565b600060208201905081810360008301526146e6816141e1565b9050919050565b6000602082019050818103600083015261470681614204565b9050919050565b6000602082019050818103600083015261472681614227565b9050919050565b600060208201905081810360008301526147468161426d565b9050919050565b6000602082019050818103600083015261476681614290565b9050919050565b60006020820190508181036000830152614786816142b3565b9050919050565b600060208201905081810360008301526147a6816142d6565b9050919050565b600060208201905081810360008301526147c6816142f9565b9050919050565b600060208201905081810360008301526147e68161431c565b9050919050565b6000602082019050614802600083018461433f565b92915050565b600060208201905061481d6000830184614365565b92915050565b60006020820190506148386000830184614383565b92915050565b6000614848614859565b90506148548282614c0e565b919050565b6000604051905090565b600067ffffffffffffffff82111561487e5761487d614d6c565b5b61488782614d9b565b9050602081019050919050565b600067ffffffffffffffff8211156148af576148ae614d6c565b5b6148b882614d9b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006149a582614b19565b91506149b083614b19565b92508261ffff038211156149c7576149c6614cdf565b5b828201905092915050565b60006149dd82614b47565b91506149e883614b47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c614cdf565b5b828201905092915050565b6000614a3382614b47565b9150614a3e83614b47565b925082614a4e57614a4d614d0e565b5b828204905092915050565b6000614a6482614b47565b9150614a6f83614b47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa857614aa7614cdf565b5b828202905092915050565b6000614abe82614b27565b9050919050565b6000614ad082614b27565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614b6982614b19565b9050919050565b82818337600083830152505050565b60005b83811015614b9d578082015181840152602081019050614b82565b83811115614bac576000848401525b50505050565b6000614bbd82614b47565b91506000821415614bd157614bd0614cdf565b5b600182039050919050565b60006002820490506001821680614bf457607f821691505b60208210811415614c0857614c07614d3d565b5b50919050565b614c1782614d9b565b810181811067ffffffffffffffff82111715614c3657614c35614d6c565b5b80604052505050565b6000614c4a82614b47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7d57614c7c614cdf565b5b600182019050919050565b6000819050919050565b6000614c9d82614dac565b9050919050565b6000819050919050565b6000614cb982614b47565b9150614cc483614b47565b925082614cd457614cd3614d0e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d6178206f6e2074686973206163636f756e7420657863656564656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69742064757272696e67207468697320706861736500000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f5a6f6d6269656c6973742073616c65206e6f74206f70656e0000000000000000600082015250565b50565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f636f64657320646f206e6f74206d617463680000000000000000000000000000600082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f4d617820746f74616c206c696d69740000000000000000000000000000000000600082015250565b7f5369676e617475726520496e636f727265637400000000000000000000000000600082015250565b7f4e6f6e63652072657065617465642c207468697320747820616c72656164792060008201527f70726f6365737365640000000000000000000000000000000000000000000000602082015250565b6150a181614ab3565b81146150ac57600080fd5b50565b6150b881614ac5565b81146150c357600080fd5b50565b6150cf81614ad7565b81146150da57600080fd5b50565b6150e681614ae3565b81146150f157600080fd5b50565b6150fd81614aed565b811461510857600080fd5b50565b61511481614b19565b811461511f57600080fd5b50565b61512b81614b47565b811461513657600080fd5b5056fea2646970667358221220563437aa06d1ac60f28751c0aed5c0e2404c4b85a857cd6e324dde041dfa07ae64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102885760003560e01c80637df1fe1e1161015a578063bb3bafd6116100c1578063e367694e1161007a578063e367694e14610a01578063e985e9c514610a2a578063f2fde38b14610a67578063f51f96dd14610a90578063f9b9c2b514610abb578063fa54080114610ae657610288565b8063bb3bafd6146108dc578063c87b56dd1461091a578063d37ba08114610957578063d547cfb714610980578063d64d6b51146109ab578063d8231712146109d657610288565b80639c205513116101135780639c205513146107c9578063a22cb465146107e5578063a7bb58031461080e578063af3a21a31461084d578063b88d4fde14610876578063b9c4d9fb1461089f57610288565b80637df1fe1e146106a55780638da5cb5b146106e25780638e89457a1461070d57806391b7f5ed1461073857806395d89b411461076157806397aba7f91461078c57610288565b80632a55205a116101fe5780636352211e116101b75780636352211e1461059757806370a08231146105d4578063715018a61461061157806376bbedc514610628578063773ef1cf1461065157806377fa56ab1461067c57610288565b80632a55205a146104975780633ccfd60b146104d55780633ce40d64146104ec57806342842e0e1461052957806348cb01551461055257806355f804b31461056e57610288565b80630ebd4c7f116102505780630ebd4c7f1461038457806312622031146103c157806318160ddd146103dd5780631b17ecac146104085780631e960d201461044557806323b872dd1461046e57610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063081af61614610332578063095ea7b31461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613b6b565b610b23565b6040516102c19190614559565b60405180910390f35b3480156102d657600080fd5b506102df610ca2565b6040516102ec919061460b565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613d47565b610d34565b604051610329919061444e565b60405180910390f35b34801561033e57600080fd5b5061035960048036038101906103549190613d70565b610db0565b005b34801561036757600080fd5b50610382600480360381019061037d9190613a89565b610e9b565b005b34801561039057600080fd5b506103ab60048036038101906103a69190613d47565b610fdc565b6040516103b89190614537565b60405180910390f35b6103db60048036038101906103d69190613ca4565b611107565b005b3480156103e957600080fd5b506103f2611382565b6040516103ff9190614823565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a9190613de8565b611399565b60405161043c9190614559565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613ac5565b6113ff565b005b34801561047a57600080fd5b5061049560048036038101906104909190613983565b611498565b005b3480156104a357600080fd5b506104be60048036038101906104b99190613e4f565b6117bd565b6040516104cc9291906144b5565b60405180910390f35b3480156104e157600080fd5b506104ea61181b565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613dac565b611953565b6040516105209190614574565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190613983565b611986565b005b61056c60048036038101906105679190613ce0565b6119a6565b005b34801561057a57600080fd5b5061059560048036038101906105909190613bfe565b611b5c565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613d47565b611bf2565b6040516105cb919061444e565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906138e2565b611c04565b6040516106089190614823565b60405180910390f35b34801561061d57600080fd5b50610626611cbd565b005b34801561063457600080fd5b5061064f600480360381019061064a9190613ac5565b611d45565b005b34801561065d57600080fd5b50610666611dde565b6040516106739190614559565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190613ac5565b611df1565b005b3480156106b157600080fd5b506106cc60048036038101906106c791906138e2565b611e8a565b6040516106d991906147ed565b60405180910390f35b3480156106ee57600080fd5b506106f7611eab565b604051610704919061444e565b60405180910390f35b34801561071957600080fd5b50610722611ed4565b60405161072f9190614559565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613d47565b611ee7565b005b34801561076d57600080fd5b50610776611f6d565b604051610783919061460b565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613b17565b611fff565b6040516107c0919061444e565b60405180910390f35b6107e360048036038101906107de9190613c68565b61206e565b005b3480156107f157600080fd5b5061080c60048036038101906108079190613a4d565b6122f9565b005b34801561081a57600080fd5b5061083560048036038101906108309190613bbd565b612471565b6040516108449392919061458f565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190613d47565b6124d9565b005b34801561088257600080fd5b5061089d600480360381019061089891906139d2565b61255f565b005b3480156108ab57600080fd5b506108c660048036038101906108c19190613d47565b6125d2565b6040516108d391906144de565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190613d47565b612739565b604051610911929190614500565b60405180910390f35b34801561092657600080fd5b50610941600480360381019061093c9190613d47565b61296e565b60405161094e919061460b565b60405180910390f35b34801561096357600080fd5b5061097e60048036038101906109799190613c3f565b612a89565b005b34801561098c57600080fd5b50610995612b25565b6040516109a2919061460b565b60405180910390f35b3480156109b757600080fd5b506109c0612bb3565b6040516109cd9190614559565b60405180910390f35b3480156109e257600080fd5b506109eb612bc6565b6040516109f891906147ed565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a23919061390b565b612bcc565b005b348015610a3657600080fd5b50610a516004803603810190610a4c9190613947565b612cf8565b604051610a5e9190614559565b60405180910390f35b348015610a7357600080fd5b50610a8e6004803603810190610a8991906138e2565b612d8c565b005b348015610a9c57600080fd5b50610aa5612e84565b604051610ab29190614823565b60405180910390f35b348015610ac757600080fd5b50610ad0612e8a565b604051610add91906147ed565b60405180910390f35b348015610af257600080fd5b50610b0d6004803603810190610b089190613aee565b612e9e565b604051610b1a9190614574565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bae5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bfd575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4c5750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c9b575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610cb190614bdc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdd90614bdc565b8015610d2a5780601f10610cff57610100808354040283529160200191610d2a565b820191906000526020600020905b815481529060010190602001808311610d0d57829003601f168201915b5050505050905090565b6000610d3f82612ece565b610d75576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610db8612f2d565b73ffffffffffffffffffffffffffffffffffffffff16610dd6611eab565b73ffffffffffffffffffffffffffffffffffffffff1614610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e23906146cd565b60405180910390fd5b6000610e36612f35565b905061271061ffff168382610e4b91906149d2565b1115610e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e839061468d565b60405180910390fd5b610e968284612f48565b505050565b6000610ea682611bf2565b90508073ffffffffffffffffffffffffffffffffffffffff16610ec761311d565b73ffffffffffffffffffffffffffffffffffffffff1614610f2a57610ef381610eee61311d565b612cf8565b610f29576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461110257600167ffffffffffffffff811115611075577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110a35781602001602082028036833780820191505090505b509050600e60009054906101000a900461ffff1661ffff16816000815181106110f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b6000611111612f35565b905060008361ffff168261112591906149d2565b905061271061ffff16811115611170576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111679061478d565b60405180910390fd5b60011515600c60029054906101000a900460ff161515146111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd9061470d565b60405180910390fd5b600d54831461120a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112019061474d565b60405180910390fd5b600c60039054906101000a900461ffff1661ffff1684600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611278919061499a565b61ffff16106112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061462d565b60405180910390fd5b83600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff16611315919061499a565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555061137c338561ffff16612f48565b50505050565b600061138c613125565b6002546001540303905090565b6000806113a68585611953565b905060006113b382612e9e565b90506113bd611eab565b73ffffffffffffffffffffffffffffffffffffffff166113dd8286611fff565b73ffffffffffffffffffffffffffffffffffffffff1614925050509392505050565b611407612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611425611eab565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906146cd565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b60006114a38261312e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461150a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611516846131fc565b9150915061152c818761152761311d565b61321e565b611578576115418661153c61311d565b612cf8565b611577576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156115df576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115ec8686866001613262565b80156115f757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506116c5856116a1888887613268565b7c020000000000000000000000000000000000000000000000000000000017613290565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561174d57600060018501905060006005600083815260200190815260200160002054141561174b57600154811461174a578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117b586868660016132bb565b505050505050565b600080600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600e60009054906101000a900461ffff1661ffff16856118069190614a59565b6118109190614a28565b915091509250929050565b611823612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611841611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e906146cd565b60405180910390fd5b600047905060006118a6611eab565b73ffffffffffffffffffffffffffffffffffffffff16826040516118c99061440d565b60006040518083038185875af1925050503d8060008114611906576040519150601f19603f3d011682016040523d82523d6000602084013e61190b565b606091505b505090508061194f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119469061466d565b60405180910390fd5b5050565b60008282604051602001611968929190614422565b60405160208183030381529060405280519060200120905092915050565b6119a18383836040518060200160405280600081525061255f565b505050565b60006119b0612f35565b905060008461ffff16826119c491906149d2565b905061271061ffff16811115611a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a069061478d565b60405180910390fd5b60011515600c60019054906101000a900460ff16151514611a7057610fa0811115611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a66906146ad565b60405180910390fd5b5b6009600085815260200190815260200160002060009054906101000a900460ff1615611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac8906147cd565b60405180910390fd5b611adc848685611399565b611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b12906147ad565b60405180910390fd5b60016009600086815260200190815260200160002060006101000a81548160ff021916908315150217905550611b55338661ffff16612f48565b5050505050565b611b64612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611b82611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906146cd565b60405180910390fd5b80600b9080519060200190611bee9291906136c7565b5050565b6000611bfd8261312e565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c6c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611cc5612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d30906146cd565b60405180910390fd5b611d4360006132c1565b565b611d4d612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611d6b611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db8906146cd565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b600c60019054906101000a900460ff1681565b611df9612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611e17611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e64906146cd565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b600f6020528060005260406000206000915054906101000a900461ffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900460ff1681565b611eef612f2d565b73ffffffffffffffffffffffffffffffffffffffff16611f0d611eab565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a906146cd565b60405180910390fd5b80600a8190555050565b606060048054611f7c90614bdc565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa890614bdc565b8015611ff55780601f10611fca57610100808354040283529160200191611ff5565b820191906000526020600020905b815481529060010190602001808311611fd857829003601f168201915b5050505050905090565b60008060008061200e85612471565b9250925092506001868285856040516000815260200160405260405161203794939291906145c6565b6020604051602081039080840390855afa158015612059573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000612078612f35565b905060006120958461ffff16600a5461338590919063ffffffff16565b9050600c60019054906101000a900460ff166120e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dd9061476d565b60405180910390fd5b61271061ffff168461ffff16836120fd91906149d2565b111561213e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121359061468d565b60405180910390fd5b80341015612181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612178906146ed565b60405180910390fd5b600c60039054906101000a900461ffff1661ffff1684600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff166121ef919061499a565b61ffff1610612233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222a9061462d565b60405180910390fd5b83600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff1661228c919061499a565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055506122f3838561ffff16612f48565b50505050565b61230161311d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612366576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061237361311d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661242061311d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124659190614559565b60405180910390a35050565b600080600060418451146124ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b19061472d565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6124e1612f2d565b73ffffffffffffffffffffffffffffffffffffffff166124ff611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254c906146cd565b60405180910390fd5b80600d8190555050565b61256a848484611498565b60008373ffffffffffffffffffffffffffffffffffffffff163b146125cc576125958484848461339b565b6125cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461273457600167ffffffffffffffff81111561266b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156126995781602001602082028036833780820191505090505b509050600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106126f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461296957600167ffffffffffffffff8111156127d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156128015781602001602082028036833780820191505090505b509150600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600081518110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff8111156128dc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561290a5781602001602082028036833780820191505090505b509050600e60009054906101000a900461ffff1661ffff168160008151811061295c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b606061297982612ece565b6129af576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c60009054906101000a900460ff1615612a5657600b80546129d190614bdc565b80601f01602080910402602001604051908101604052809291908181526020018280546129fd90614bdc565b8015612a4a5780601f10612a1f57610100808354040283529160200191612a4a565b820191906000526020600020905b815481529060010190602001808311612a2d57829003601f168201915b50505050509050612a84565b600b612a61836134fb565b604051602001612a729291906143b8565b60405160208183030381529060405290505b919050565b612a91612f2d565b73ffffffffffffffffffffffffffffffffffffffff16612aaf611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc906146cd565b60405180910390fd5b80600c60036101000a81548161ffff021916908361ffff16021790555050565b600b8054612b3290614bdc565b80601f0160208091040260200160405190810160405280929190818152602001828054612b5e90614bdc565b8015612bab5780601f10612b8057610100808354040283529160200191612bab565b820191906000526020600020905b815481529060010190602001808311612b8e57829003601f168201915b505050505081565b600c60029054906101000a900460ff1681565b61271081565b612bd4612f2d565b73ffffffffffffffffffffffffffffffffffffffff16612bf2611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3f906146cd565b60405180910390fd5b81600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548161ffff021916908361ffff1602179055508173ffffffffffffffffffffffffffffffffffffffff167fa0a3764a6a020070a984037ddad31af783c92eae7581e99c957792d105717dd482604051612cec9190614808565b60405180910390a25050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d94612f2d565b73ffffffffffffffffffffffffffffffffffffffff16612db2611eab565b73ffffffffffffffffffffffffffffffffffffffff1614612e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dff906146cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6f9061464d565b60405180910390fd5b612e81816132c1565b50565b600a5481565b600c60039054906101000a900461ffff1681565b600081604051602001612eb191906143e7565b604051602081830303815290604052805190602001209050919050565b600081612ed9613125565b11158015612ee8575060015482105b8015612f26575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b6000612f3f613125565b60015403905090565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fb6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612ff1576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ffe6000848385613262565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550613075836130666000866000613268565b61306f856136ae565b17613290565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106130995780600181905550505061311860008483856132bb565b505050565b600033905090565b60006001905090565b6000808290508061313d613125565b116131c5576001548110156131c45760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156131c2575b60008114156131b857600560008360019003935083815260200190815260200160002054905061318d565b80925050506131f7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861327f8686846136be565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836133939190614a59565b905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133c161311d565b8786866040518563ffffffff1660e01b81526004016133e39493929190614469565b602060405180830381600087803b1580156133fd57600080fd5b505af192505050801561342e57506040513d601f19601f8201168201806040525081019061342b9190613b94565b60015b6134a8573d806000811461345e576040519150601f19603f3d011682016040523d82523d6000602084013e613463565b606091505b506000815114156134a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613543576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136a9565b600082905060005b6000821461357557808061355e90614c3f565b915050600a8261356e9190614a28565b915061354b565b60008167ffffffffffffffff8111156135b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e95781602001600182028036833780820191505090505b50905060008290508593505b600084146136a157600a8461360a9190614cae565b603061361691906149d2565b60f81b828261362490614bb2565b9250828151811061365e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8461369a9190614a28565b93506135f5565b819450505050505b919050565b60006001821460e11b9050919050565b60009392505050565b8280546136d390614bdc565b90600052602060002090601f0160209004810192826136f5576000855561373c565b82601f1061370e57805160ff191683800117855561373c565b8280016001018555821561373c579182015b8281111561373b578251825591602001919060010190613720565b5b509050613749919061374d565b5090565b5b8082111561376657600081600090555060010161374e565b5090565b600061377d61377884614863565b61483e565b90508281526020810184848401111561379557600080fd5b6137a0848285614b70565b509392505050565b60006137bb6137b684614894565b61483e565b9050828152602081018484840111156137d357600080fd5b6137de848285614b70565b509392505050565b6000813590506137f581615098565b92915050565b60008135905061380a816150af565b92915050565b60008135905061381f816150c6565b92915050565b600081359050613834816150dd565b92915050565b600081359050613849816150f4565b92915050565b60008151905061385e816150f4565b92915050565b600082601f83011261387557600080fd5b813561388584826020860161376a565b91505092915050565b600082601f83011261389f57600080fd5b81356138af8482602086016137a8565b91505092915050565b6000813590506138c78161510b565b92915050565b6000813590506138dc81615122565b92915050565b6000602082840312156138f457600080fd5b6000613902848285016137e6565b91505092915050565b6000806040838503121561391e57600080fd5b600061392c858286016137fb565b925050602061393d858286016138b8565b9150509250929050565b6000806040838503121561395a57600080fd5b6000613968858286016137e6565b9250506020613979858286016137e6565b9150509250929050565b60008060006060848603121561399857600080fd5b60006139a6868287016137e6565b93505060206139b7868287016137e6565b92505060406139c8868287016138cd565b9150509250925092565b600080600080608085870312156139e857600080fd5b60006139f6878288016137e6565b9450506020613a07878288016137e6565b9350506040613a18878288016138cd565b925050606085013567ffffffffffffffff811115613a3557600080fd5b613a4187828801613864565b91505092959194509250565b60008060408385031215613a6057600080fd5b6000613a6e858286016137e6565b9250506020613a7f85828601613810565b9150509250929050565b60008060408385031215613a9c57600080fd5b6000613aaa858286016137e6565b9250506020613abb858286016138cd565b9150509250929050565b600060208284031215613ad757600080fd5b6000613ae584828501613810565b91505092915050565b600060208284031215613b0057600080fd5b6000613b0e84828501613825565b91505092915050565b60008060408385031215613b2a57600080fd5b6000613b3885828601613825565b925050602083013567ffffffffffffffff811115613b5557600080fd5b613b6185828601613864565b9150509250929050565b600060208284031215613b7d57600080fd5b6000613b8b8482850161383a565b91505092915050565b600060208284031215613ba657600080fd5b6000613bb48482850161384f565b91505092915050565b600060208284031215613bcf57600080fd5b600082013567ffffffffffffffff811115613be957600080fd5b613bf584828501613864565b91505092915050565b600060208284031215613c1057600080fd5b600082013567ffffffffffffffff811115613c2a57600080fd5b613c368482850161388e565b91505092915050565b600060208284031215613c5157600080fd5b6000613c5f848285016138b8565b91505092915050565b60008060408385031215613c7b57600080fd5b6000613c89858286016138b8565b9250506020613c9a858286016137e6565b9150509250929050565b60008060408385031215613cb757600080fd5b6000613cc5858286016138b8565b9250506020613cd6858286016138cd565b9150509250929050565b600080600060608486031215613cf557600080fd5b6000613d03868287016138b8565b9350506020613d14868287016138cd565b925050604084013567ffffffffffffffff811115613d3157600080fd5b613d3d86828701613864565b9150509250925092565b600060208284031215613d5957600080fd5b6000613d67848285016138cd565b91505092915050565b60008060408385031215613d8357600080fd5b6000613d91858286016138cd565b9250506020613da2858286016137e6565b9150509250929050565b60008060408385031215613dbf57600080fd5b6000613dcd858286016138cd565b9250506020613dde858286016138b8565b9150509250929050565b600080600060608486031215613dfd57600080fd5b6000613e0b868287016138cd565b9350506020613e1c868287016138b8565b925050604084013567ffffffffffffffff811115613e3957600080fd5b613e4586828701613864565b9150509250925092565b60008060408385031215613e6257600080fd5b6000613e70858286016138cd565b9250506020613e81858286016138cd565b9150509250929050565b6000613e978383613ebb565b60208301905092915050565b6000613eaf8383614374565b60208301905092915050565b613ec481614ac5565b82525050565b613ed381614ab3565b82525050565b6000613ee4826148fa565b613eee8185614940565b9350613ef9836148c5565b8060005b83811015613f2a578151613f118882613e8b565b9750613f1c83614926565b925050600181019050613efd565b5085935050505092915050565b6000613f4282614905565b613f4c8185614951565b9350613f57836148d5565b8060005b83811015613f88578151613f6f8882613ea3565b9750613f7a83614933565b925050600181019050613f5b565b5085935050505092915050565b613f9e81614ad7565b82525050565b613fad81614ae3565b82525050565b613fc4613fbf82614ae3565b614c88565b82525050565b6000613fd582614910565b613fdf8185614962565b9350613fef818560208601614b7f565b613ff881614d9b565b840191505092915050565b600061400e8261491b565b614018818561497e565b9350614028818560208601614b7f565b61403181614d9b565b840191505092915050565b60006140478261491b565b614051818561498f565b9350614061818560208601614b7f565b80840191505092915050565b6000815461407a81614bdc565b614084818661498f565b9450600182166000811461409f57600181146140b0576140e3565b60ff198316865281860193506140e3565b6140b9856148e5565b60005b838110156140db578154818901526001820191506020810190506140bc565b838801955050505b50505092915050565b60006140f9601c8361498f565b915061410482614db9565b601c82019050919050565b600061411c601c8361497e565b915061412782614de2565b602082019050919050565b600061413f60268361497e565b915061414a82614e0b565b604082019050919050565b600061416260148361497e565b915061416d82614e5a565b602082019050919050565b600061418560098361497e565b915061419082614e83565b602082019050919050565b60006141a8601c8361497e565b91506141b382614eac565b602082019050919050565b60006141cb60058361498f565b91506141d682614ed5565b600582019050919050565b60006141ee60208361497e565b91506141f982614efe565b602082019050919050565b600061421160118361497e565b915061421c82614f27565b602082019050919050565b600061423460188361497e565b915061423f82614f50565b602082019050919050565b6000614257600083614973565b915061426282614f79565b600082019050919050565b600061427a60188361497e565b915061428582614f7c565b602082019050919050565b600061429d60128361497e565b91506142a882614fa5565b602082019050919050565b60006142c060148361497e565b91506142cb82614fce565b602082019050919050565b60006142e3600f8361497e565b91506142ee82614ff7565b602082019050919050565b600061430660138361497e565b915061431182615020565b602082019050919050565b600061432960298361497e565b915061433482615049565b604082019050919050565b61434881614b19565b82525050565b61435f61435a82614b19565b614c92565b82525050565b61436e81614b5e565b82525050565b61437d81614b47565b82525050565b61438c81614b47565b82525050565b6143a361439e82614b47565b614ca4565b82525050565b6143b281614b51565b82525050565b60006143c4828561406d565b91506143d0828461403c565b91506143db826141be565b91508190509392505050565b60006143f2826140ec565b91506143fe8284613fb3565b60208201915081905092915050565b60006144188261424a565b9150819050919050565b600061442e8285614392565b60208201915061443e828461434e565b6002820191508190509392505050565b60006020820190506144636000830184613eca565b92915050565b600060808201905061447e6000830187613eca565b61448b6020830186613eca565b6144986040830185614383565b81810360608301526144aa8184613fca565b905095945050505050565b60006040820190506144ca6000830185613eca565b6144d76020830184614383565b9392505050565b600060208201905081810360008301526144f88184613ed9565b905092915050565b6000604082019050818103600083015261451a8185613ed9565b9050818103602083015261452e8184613f37565b90509392505050565b600060208201905081810360008301526145518184613f37565b905092915050565b600060208201905061456e6000830184613f95565b92915050565b60006020820190506145896000830184613fa4565b92915050565b60006060820190506145a46000830186613fa4565b6145b16020830185613fa4565b6145be60408301846143a9565b949350505050565b60006080820190506145db6000830187613fa4565b6145e860208301866143a9565b6145f56040830185613fa4565b6146026060830184613fa4565b95945050505050565b600060208201905081810360008301526146258184614003565b905092915050565b600060208201905081810360008301526146468161410f565b9050919050565b6000602082019050818103600083015261466681614132565b9050919050565b6000602082019050818103600083015261468681614155565b9050919050565b600060208201905081810360008301526146a681614178565b9050919050565b600060208201905081810360008301526146c68161419b565b9050919050565b600060208201905081810360008301526146e6816141e1565b9050919050565b6000602082019050818103600083015261470681614204565b9050919050565b6000602082019050818103600083015261472681614227565b9050919050565b600060208201905081810360008301526147468161426d565b9050919050565b6000602082019050818103600083015261476681614290565b9050919050565b60006020820190508181036000830152614786816142b3565b9050919050565b600060208201905081810360008301526147a6816142d6565b9050919050565b600060208201905081810360008301526147c6816142f9565b9050919050565b600060208201905081810360008301526147e68161431c565b9050919050565b6000602082019050614802600083018461433f565b92915050565b600060208201905061481d6000830184614365565b92915050565b60006020820190506148386000830184614383565b92915050565b6000614848614859565b90506148548282614c0e565b919050565b6000604051905090565b600067ffffffffffffffff82111561487e5761487d614d6c565b5b61488782614d9b565b9050602081019050919050565b600067ffffffffffffffff8211156148af576148ae614d6c565b5b6148b882614d9b565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006149a582614b19565b91506149b083614b19565b92508261ffff038211156149c7576149c6614cdf565b5b828201905092915050565b60006149dd82614b47565b91506149e883614b47565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c614cdf565b5b828201905092915050565b6000614a3382614b47565b9150614a3e83614b47565b925082614a4e57614a4d614d0e565b5b828204905092915050565b6000614a6482614b47565b9150614a6f83614b47565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa857614aa7614cdf565b5b828202905092915050565b6000614abe82614b27565b9050919050565b6000614ad082614b27565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614b6982614b19565b9050919050565b82818337600083830152505050565b60005b83811015614b9d578082015181840152602081019050614b82565b83811115614bac576000848401525b50505050565b6000614bbd82614b47565b91506000821415614bd157614bd0614cdf565b5b600182039050919050565b60006002820490506001821680614bf457607f821691505b60208210811415614c0857614c07614d3d565b5b50919050565b614c1782614d9b565b810181811067ffffffffffffffff82111715614c3657614c35614d6c565b5b80604052505050565b6000614c4a82614b47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7d57614c7c614cdf565b5b600182019050919050565b6000819050919050565b6000614c9d82614dac565b9050919050565b6000819050919050565b6000614cb982614b47565b9150614cc483614b47565b925082614cd457614cd3614d0e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4d6178206f6e2074686973206163636f756e7420657863656564656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69742064757272696e67207468697320706861736500000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c75652062656c6f77207072696365000000000000000000000000000000600082015250565b7f5a6f6d6269656c6973742073616c65206e6f74206f70656e0000000000000000600082015250565b50565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b7f636f64657320646f206e6f74206d617463680000000000000000000000000000600082015250565b7f53616c6520686173206e6f742073746172746564000000000000000000000000600082015250565b7f4d617820746f74616c206c696d69740000000000000000000000000000000000600082015250565b7f5369676e617475726520496e636f727265637400000000000000000000000000600082015250565b7f4e6f6e63652072657065617465642c207468697320747820616c72656164792060008201527f70726f6365737365640000000000000000000000000000000000000000000000602082015250565b6150a181614ab3565b81146150ac57600080fd5b50565b6150b881614ac5565b81146150c357600080fd5b50565b6150cf81614ad7565b81146150da57600080fd5b50565b6150e681614ae3565b81146150f157600080fd5b50565b6150fd81614aed565b811461510857600080fd5b50565b61511481614b19565b811461511f57600080fd5b50565b61512b81614b47565b811461513657600080fd5b5056fea2646970667358221220563437aa06d1ac60f28751c0aed5c0e2404c4b85a857cd6e324dde041dfa07ae64736f6c63430008040033

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.