ETH Price: $3,305.06 (-3.35%)
Gas: 15 Gwei

Token

Samurai by PJ (PJ)
 

Overview

Max Total Supply

333 PJ

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PJ
0x78d0ef818eddf1a33afeac0c3c241048643e939a
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:
SamuraibyPJ

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;


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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}


contract SamuraibyPJ is IERC721A { 
    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }
    modifier onlyOwner() { 
        require(_owner==msg.sender);
        _; 
    }

    uint256 public constant MAX_SUPPLY = 333;
    uint256 public constant MAX_FREE = 100;
    uint256 public MAX_FREE_PER_WALLET = 1;
    uint256 public COST = 0.002 ether;

    string private constant _name = "Samurai by PJ";
    string private constant _symbol = "PJ";
    string private _baseURI = "bafybeiftiixfcvbvolbs6q7nnzwkcgplkfgpaczze7xrwtzrh2z4nishuy";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount*COST <= msg.value, "Value to Low");

        _mint(_caller, amount);
    }

    function freeMint() external{
        address _caller = _msgSenderERC721A();
        uint256 amount = 1;

        require(totalSupply() + amount <= MAX_FREE, "Freemint SoldOut");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "Max per Wallet");

        _mint(_caller, amount);
    }

    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

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

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


    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159] `addr`
    // - [160..223] `startTimestamp`
    // - [224] `burned`
    // - [225] `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

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

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

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


    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }

    function setConfig(uint256 _MAX_FREE_PER_WALLET, uint256 _COST) external onlyOwner{
        MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET;
        COST = _COST;
    }

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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



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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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


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

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

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

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

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


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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

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

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

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




    /**
     * @dev 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 withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_FREE_PER_WALLET","type":"uint256"},{"internalType":"uint256","name":"_COST","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001805566071afd498d00006002556040518060600160405280603b815260200162002888603b9139600390816200003d919062000311565b5060006004553480156200005057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003f8565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200011957607f821691505b6020821081036200012f576200012e620000d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200015a565b620001a586836200015a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001f2620001ec620001e684620001bd565b620001c7565b620001bd565b9050919050565b6000819050919050565b6200020e83620001d1565b620002266200021d82620001f9565b84845462000167565b825550505050565b600090565b6200023d6200022e565b6200024a81848462000203565b505050565b5b8181101562000272576200026660008262000233565b60018101905062000250565b5050565b601f821115620002c1576200028b8162000135565b62000296846200014a565b81016020851015620002a6578190505b620002be620002b5856200014a565b8301826200024f565b50505b505050565b600082821c905092915050565b6000620002e660001984600802620002c6565b1980831691505092915050565b6000620003018383620002d3565b9150826002028217905092915050565b6200031c8262000097565b67ffffffffffffffff811115620003385762000337620000a2565b5b62000344825462000100565b6200035182828562000276565b600060209050601f83116001811462000389576000841562000374578287015190505b620003808582620002f3565b865550620003f0565b601f198416620003998662000135565b60005b82811015620003c3578489015182556001820191506020850194506020810190506200039c565b86831015620003e35784890151620003df601f891682620002d3565b8355505b6001600288020188555050505b505050505050565b61248080620004086000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e5780631e34c58514610249575b600080fd5b34801561015c57600080fd5b506101776004803603810190610172919061173a565b61057f565b6040516101849190611782565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af919061182d565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190611885565b61064e565b6040516101ec91906118f3565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061193a565b6106ca565b005b34801561022a57600080fd5b50610233610843565b6040516102409190611989565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b91906119a4565b610856565b005b34801561027e57600080fd5b50610299600480360381019061029491906119e4565b6108c0565b005b3480156102a757600080fd5b506102b06108d0565b6040516102bd9190611989565b60405180910390f35b3480156102d257600080fd5b506102db6108d6565b005b3480156102e957600080fd5b5061030460048036038101906102ff91906119e4565b61097d565b005b34801561031257600080fd5b5061032d60048036038101906103289190611b6c565b61099d565b005b34801561033b57600080fd5b50610344610a08565b005b34801561035257600080fd5b5061036d60048036038101906103689190611885565b610ad6565b60405161037a91906118f3565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611bb5565b610ae8565b6040516103b79190611989565b60405180910390f35b3480156103cc57600080fd5b506103d5610b7c565b6040516103e291906118f3565b60405180910390f35b3480156103f757600080fd5b50610400610ba5565b60405161040d919061182d565b60405180910390f35b34801561042257600080fd5b5061042b610be2565b6040516104389190611989565b60405180910390f35b61045b60048036038101906104569190611885565b610be8565b005b34801561046957600080fd5b50610484600480360381019061047f9190611c0e565b610ca9565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611cef565b610e20565b005b3480156104bb57600080fd5b506104c4610e31565b6040516104d19190611989565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190611885565b610e37565b60405161050e919061182d565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611d72565b610f58565b60405161054b9190611782565b60405180910390f35b34801561056057600080fd5b50610569610fec565b6040516105769190611989565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f53616d7572616920627920504a00000000000000000000000000000000000000815250905090565b600061065982610ff1565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d582611012565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6110de565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556110de565b610f58565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084d6110e6565b60045403905090565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108ae57600080fd5b81600181905550806002819055505050565b6108cb8383836110eb565b505050565b61014d81565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461092e57600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610979573d6000803e3d6000fd5b5050565b61099883838360405180602001604052806000815250610e20565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109f557600080fd5b8060039081610a049190611fbe565b5050565b6000610a126110de565b9050600060019050606481610a25610843565b610a2f91906120bf565b1115610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a679061213f565b60405180910390fd5b600154610a7c83611461565b82610a8791906120bf565b1115610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf906121ab565b60405180910390fd5b610ad282826114b8565b5050565b6000610ae182611012565b9050919050565b600080610af48361165a565b03610b2b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f504a000000000000000000000000000000000000000000000000000000000000815250905090565b60015481565b6000610bf26110de565b905061014d82610c00610843565b610c0a91906120bf565b1115610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290612217565b60405180910390fd5b3460025483610c5a9190612237565b1115610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c92906122c5565b60405180910390fd5b610ca581836114b8565b5050565b610cb16110de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d15576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610d226110de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dcf6110de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e149190611782565b60405180910390a35050565b610e2b8484846110eb565b50505050565b60025481565b6060610e4282610ff1565b610e78576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060038054610e8790611de1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390611de1565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505090506000815103610f255760405180602001604052806000815250610f50565b80610f2f84611664565b604051602001610f40929190612405565b6040516020818303038152906040525b915050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606481565b600081610ffc6110e6565b1115801561100b575060045482105b9050919050565b600080829050806110216110e6565b116110a7576004548110156110a65760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110a4575b6000810361109a576005600083600190039350838152602001908152602001600020549050611070565b80925050506110d9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006110f682611012565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461115d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166111b66110de565b73ffffffffffffffffffffffffffffffffffffffff1614806111e557506111e4866111df6110de565b610f58565b5b8061122257506111f36110de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061125b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112668361165a565b146112a2576007600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6113698761165a565b1717600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113f157600060018501905060006005600083815260200190815260200160002054036113ef5760045481146113ee578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461145986868660016116be565b505050505050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600454905060006114ca8461165a565b03611501576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361153b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16115a0600184146116c4565b901b60a042901b6115b08561165a565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106115d65781600481905550505061165560008483856116be565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156116aa57600183039250600a81066030018353600a8104905061168a565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611717816116e2565b811461172257600080fd5b50565b6000813590506117348161170e565b92915050565b6000602082840312156117505761174f6116d8565b5b600061175e84828501611725565b91505092915050565b60008115159050919050565b61177c81611767565b82525050565b60006020820190506117976000830184611773565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117d75780820151818401526020810190506117bc565b60008484015250505050565b6000601f19601f8301169050919050565b60006117ff8261179d565b61180981856117a8565b93506118198185602086016117b9565b611822816117e3565b840191505092915050565b6000602082019050818103600083015261184781846117f4565b905092915050565b6000819050919050565b6118628161184f565b811461186d57600080fd5b50565b60008135905061187f81611859565b92915050565b60006020828403121561189b5761189a6116d8565b5b60006118a984828501611870565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118dd826118b2565b9050919050565b6118ed816118d2565b82525050565b600060208201905061190860008301846118e4565b92915050565b611917816118d2565b811461192257600080fd5b50565b6000813590506119348161190e565b92915050565b60008060408385031215611951576119506116d8565b5b600061195f85828601611925565b925050602061197085828601611870565b9150509250929050565b6119838161184f565b82525050565b600060208201905061199e600083018461197a565b92915050565b600080604083850312156119bb576119ba6116d8565b5b60006119c985828601611870565b92505060206119da85828601611870565b9150509250929050565b6000806000606084860312156119fd576119fc6116d8565b5b6000611a0b86828701611925565b9350506020611a1c86828701611925565b9250506040611a2d86828701611870565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611a79826117e3565b810181811067ffffffffffffffff82111715611a9857611a97611a41565b5b80604052505050565b6000611aab6116ce565b9050611ab78282611a70565b919050565b600067ffffffffffffffff821115611ad757611ad6611a41565b5b611ae0826117e3565b9050602081019050919050565b82818337600083830152505050565b6000611b0f611b0a84611abc565b611aa1565b905082815260208101848484011115611b2b57611b2a611a3c565b5b611b36848285611aed565b509392505050565b600082601f830112611b5357611b52611a37565b5b8135611b63848260208601611afc565b91505092915050565b600060208284031215611b8257611b816116d8565b5b600082013567ffffffffffffffff811115611ba057611b9f6116dd565b5b611bac84828501611b3e565b91505092915050565b600060208284031215611bcb57611bca6116d8565b5b6000611bd984828501611925565b91505092915050565b611beb81611767565b8114611bf657600080fd5b50565b600081359050611c0881611be2565b92915050565b60008060408385031215611c2557611c246116d8565b5b6000611c3385828601611925565b9250506020611c4485828601611bf9565b9150509250929050565b600067ffffffffffffffff821115611c6957611c68611a41565b5b611c72826117e3565b9050602081019050919050565b6000611c92611c8d84611c4e565b611aa1565b905082815260208101848484011115611cae57611cad611a3c565b5b611cb9848285611aed565b509392505050565b600082601f830112611cd657611cd5611a37565b5b8135611ce6848260208601611c7f565b91505092915050565b60008060008060808587031215611d0957611d086116d8565b5b6000611d1787828801611925565b9450506020611d2887828801611925565b9350506040611d3987828801611870565b925050606085013567ffffffffffffffff811115611d5a57611d596116dd565b5b611d6687828801611cc1565b91505092959194509250565b60008060408385031215611d8957611d886116d8565b5b6000611d9785828601611925565b9250506020611da885828601611925565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611df957607f821691505b602082108103611e0c57611e0b611db2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611e747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611e37565b611e7e8683611e37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611ebb611eb6611eb18461184f565b611e96565b61184f565b9050919050565b6000819050919050565b611ed583611ea0565b611ee9611ee182611ec2565b848454611e44565b825550505050565b600090565b611efe611ef1565b611f09818484611ecc565b505050565b5b81811015611f2d57611f22600082611ef6565b600181019050611f0f565b5050565b601f821115611f7257611f4381611e12565b611f4c84611e27565b81016020851015611f5b578190505b611f6f611f6785611e27565b830182611f0e565b50505b505050565b600082821c905092915050565b6000611f9560001984600802611f77565b1980831691505092915050565b6000611fae8383611f84565b9150826002028217905092915050565b611fc78261179d565b67ffffffffffffffff811115611fe057611fdf611a41565b5b611fea8254611de1565b611ff5828285611f31565b600060209050601f8311600181146120285760008415612016578287015190505b6120208582611fa2565b865550612088565b601f19841661203686611e12565b60005b8281101561205e57848901518255600182019150602085019450602081019050612039565b8683101561207b5784890151612077601f891682611f84565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120ca8261184f565b91506120d58361184f565b92508282019050808211156120ed576120ec612090565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b60006121296010836117a8565b9150612134826120f3565b602082019050919050565b600060208201905081810360008301526121588161211c565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b6000612195600e836117a8565b91506121a08261215f565b602082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b60006122016007836117a8565b915061220c826121cb565b602082019050919050565b60006020820190508181036000830152612230816121f4565b9050919050565b60006122428261184f565b915061224d8361184f565b925082820261225b8161184f565b9150828204841483151761227257612271612090565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006122af600c836117a8565b91506122ba82612279565b602082019050919050565b600060208201905081810360008301526122de816122a2565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b60006123266007836122e5565b9150612331826122f0565b600782019050919050565b60006123478261179d565b61235181856122e5565b93506123618185602086016117b9565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006123a36001836122e5565b91506123ae8261236d565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006123ef6005836122e5565b91506123fa826123b9565b600582019050919050565b600061241082612319565b915061241c828561233c565b915061242782612396565b9150612433828461233c565b915061243e826123e2565b9150819050939250505056fea264697066735822122056103e155d6742c8bed157c28dbe8ef30a0b7b5074e6042a288ee60bea91e44564736f6c6343000811003362616679626569667469697866637662766f6c62733671376e6e7a776b6367706c6b66677061637a7a6537787277747a7268327a346e6973687579

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e5780631e34c58514610249575b600080fd5b34801561015c57600080fd5b506101776004803603810190610172919061173a565b61057f565b6040516101849190611782565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af919061182d565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190611885565b61064e565b6040516101ec91906118f3565b60405180910390f35b34801561020157600080fd5b5061021c6004803603810190610217919061193a565b6106ca565b005b34801561022a57600080fd5b50610233610843565b6040516102409190611989565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b91906119a4565b610856565b005b34801561027e57600080fd5b50610299600480360381019061029491906119e4565b6108c0565b005b3480156102a757600080fd5b506102b06108d0565b6040516102bd9190611989565b60405180910390f35b3480156102d257600080fd5b506102db6108d6565b005b3480156102e957600080fd5b5061030460048036038101906102ff91906119e4565b61097d565b005b34801561031257600080fd5b5061032d60048036038101906103289190611b6c565b61099d565b005b34801561033b57600080fd5b50610344610a08565b005b34801561035257600080fd5b5061036d60048036038101906103689190611885565b610ad6565b60405161037a91906118f3565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611bb5565b610ae8565b6040516103b79190611989565b60405180910390f35b3480156103cc57600080fd5b506103d5610b7c565b6040516103e291906118f3565b60405180910390f35b3480156103f757600080fd5b50610400610ba5565b60405161040d919061182d565b60405180910390f35b34801561042257600080fd5b5061042b610be2565b6040516104389190611989565b60405180910390f35b61045b60048036038101906104569190611885565b610be8565b005b34801561046957600080fd5b50610484600480360381019061047f9190611c0e565b610ca9565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611cef565b610e20565b005b3480156104bb57600080fd5b506104c4610e31565b6040516104d19190611989565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc9190611885565b610e37565b60405161050e919061182d565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611d72565b610f58565b60405161054b9190611782565b60405180910390f35b34801561056057600080fd5b50610569610fec565b6040516105769190611989565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f53616d7572616920627920504a00000000000000000000000000000000000000815250905090565b600061065982610ff1565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d582611012565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6110de565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556110de565b610f58565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084d6110e6565b60045403905090565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108ae57600080fd5b81600181905550806002819055505050565b6108cb8383836110eb565b505050565b61014d81565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461092e57600080fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610979573d6000803e3d6000fd5b5050565b61099883838360405180602001604052806000815250610e20565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109f557600080fd5b8060039081610a049190611fbe565b5050565b6000610a126110de565b9050600060019050606481610a25610843565b610a2f91906120bf565b1115610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a679061213f565b60405180910390fd5b600154610a7c83611461565b82610a8791906120bf565b1115610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf906121ab565b60405180910390fd5b610ad282826114b8565b5050565b6000610ae182611012565b9050919050565b600080610af48361165a565b03610b2b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f504a000000000000000000000000000000000000000000000000000000000000815250905090565b60015481565b6000610bf26110de565b905061014d82610c00610843565b610c0a91906120bf565b1115610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290612217565b60405180910390fd5b3460025483610c5a9190612237565b1115610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c92906122c5565b60405180910390fd5b610ca581836114b8565b5050565b610cb16110de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d15576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000610d226110de565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dcf6110de565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e149190611782565b60405180910390a35050565b610e2b8484846110eb565b50505050565b60025481565b6060610e4282610ff1565b610e78576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060038054610e8790611de1565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390611de1565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505090506000815103610f255760405180602001604052806000815250610f50565b80610f2f84611664565b604051602001610f40929190612405565b6040516020818303038152906040525b915050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606481565b600081610ffc6110e6565b1115801561100b575060045482105b9050919050565b600080829050806110216110e6565b116110a7576004548110156110a65760006005600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110a4575b6000810361109a576005600083600190039350838152602001908152602001600020549050611070565b80925050506110d9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006110f682611012565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461115d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166111b66110de565b73ffffffffffffffffffffffffffffffffffffffff1614806111e557506111e4866111df6110de565b610f58565b5b8061122257506111f36110de565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061125b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112668361165a565b146112a2576007600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6113698761165a565b1717600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036113f157600060018501905060006005600083815260200190815260200160002054036113ef5760045481146113ee578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461145986868660016116be565b505050505050565b600067ffffffffffffffff6040600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600454905060006114ca8461165a565b03611501576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000820361153b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16115a0600184146116c4565b901b60a042901b6115b08561165a565b171760056000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106115d65781600481905550505061165560008483856116be565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156116aa57600183039250600a81066030018353600a8104905061168a565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611717816116e2565b811461172257600080fd5b50565b6000813590506117348161170e565b92915050565b6000602082840312156117505761174f6116d8565b5b600061175e84828501611725565b91505092915050565b60008115159050919050565b61177c81611767565b82525050565b60006020820190506117976000830184611773565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117d75780820151818401526020810190506117bc565b60008484015250505050565b6000601f19601f8301169050919050565b60006117ff8261179d565b61180981856117a8565b93506118198185602086016117b9565b611822816117e3565b840191505092915050565b6000602082019050818103600083015261184781846117f4565b905092915050565b6000819050919050565b6118628161184f565b811461186d57600080fd5b50565b60008135905061187f81611859565b92915050565b60006020828403121561189b5761189a6116d8565b5b60006118a984828501611870565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118dd826118b2565b9050919050565b6118ed816118d2565b82525050565b600060208201905061190860008301846118e4565b92915050565b611917816118d2565b811461192257600080fd5b50565b6000813590506119348161190e565b92915050565b60008060408385031215611951576119506116d8565b5b600061195f85828601611925565b925050602061197085828601611870565b9150509250929050565b6119838161184f565b82525050565b600060208201905061199e600083018461197a565b92915050565b600080604083850312156119bb576119ba6116d8565b5b60006119c985828601611870565b92505060206119da85828601611870565b9150509250929050565b6000806000606084860312156119fd576119fc6116d8565b5b6000611a0b86828701611925565b9350506020611a1c86828701611925565b9250506040611a2d86828701611870565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611a79826117e3565b810181811067ffffffffffffffff82111715611a9857611a97611a41565b5b80604052505050565b6000611aab6116ce565b9050611ab78282611a70565b919050565b600067ffffffffffffffff821115611ad757611ad6611a41565b5b611ae0826117e3565b9050602081019050919050565b82818337600083830152505050565b6000611b0f611b0a84611abc565b611aa1565b905082815260208101848484011115611b2b57611b2a611a3c565b5b611b36848285611aed565b509392505050565b600082601f830112611b5357611b52611a37565b5b8135611b63848260208601611afc565b91505092915050565b600060208284031215611b8257611b816116d8565b5b600082013567ffffffffffffffff811115611ba057611b9f6116dd565b5b611bac84828501611b3e565b91505092915050565b600060208284031215611bcb57611bca6116d8565b5b6000611bd984828501611925565b91505092915050565b611beb81611767565b8114611bf657600080fd5b50565b600081359050611c0881611be2565b92915050565b60008060408385031215611c2557611c246116d8565b5b6000611c3385828601611925565b9250506020611c4485828601611bf9565b9150509250929050565b600067ffffffffffffffff821115611c6957611c68611a41565b5b611c72826117e3565b9050602081019050919050565b6000611c92611c8d84611c4e565b611aa1565b905082815260208101848484011115611cae57611cad611a3c565b5b611cb9848285611aed565b509392505050565b600082601f830112611cd657611cd5611a37565b5b8135611ce6848260208601611c7f565b91505092915050565b60008060008060808587031215611d0957611d086116d8565b5b6000611d1787828801611925565b9450506020611d2887828801611925565b9350506040611d3987828801611870565b925050606085013567ffffffffffffffff811115611d5a57611d596116dd565b5b611d6687828801611cc1565b91505092959194509250565b60008060408385031215611d8957611d886116d8565b5b6000611d9785828601611925565b9250506020611da885828601611925565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611df957607f821691505b602082108103611e0c57611e0b611db2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611e747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611e37565b611e7e8683611e37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000611ebb611eb6611eb18461184f565b611e96565b61184f565b9050919050565b6000819050919050565b611ed583611ea0565b611ee9611ee182611ec2565b848454611e44565b825550505050565b600090565b611efe611ef1565b611f09818484611ecc565b505050565b5b81811015611f2d57611f22600082611ef6565b600181019050611f0f565b5050565b601f821115611f7257611f4381611e12565b611f4c84611e27565b81016020851015611f5b578190505b611f6f611f6785611e27565b830182611f0e565b50505b505050565b600082821c905092915050565b6000611f9560001984600802611f77565b1980831691505092915050565b6000611fae8383611f84565b9150826002028217905092915050565b611fc78261179d565b67ffffffffffffffff811115611fe057611fdf611a41565b5b611fea8254611de1565b611ff5828285611f31565b600060209050601f8311600181146120285760008415612016578287015190505b6120208582611fa2565b865550612088565b601f19841661203686611e12565b60005b8281101561205e57848901518255600182019150602085019450602081019050612039565b8683101561207b5784890151612077601f891682611f84565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006120ca8261184f565b91506120d58361184f565b92508282019050808211156120ed576120ec612090565b5b92915050565b7f467265656d696e7420536f6c644f757400000000000000000000000000000000600082015250565b60006121296010836117a8565b9150612134826120f3565b602082019050919050565b600060208201905081810360008301526121588161211c565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b6000612195600e836117a8565b91506121a08261215f565b602082019050919050565b600060208201905081810360008301526121c481612188565b9050919050565b7f536f6c644f757400000000000000000000000000000000000000000000000000600082015250565b60006122016007836117a8565b915061220c826121cb565b602082019050919050565b60006020820190508181036000830152612230816121f4565b9050919050565b60006122428261184f565b915061224d8361184f565b925082820261225b8161184f565b9150828204841483151761227257612271612090565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006122af600c836117a8565b91506122ba82612279565b602082019050919050565b600060208201905081810360008301526122de816122a2565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b60006123266007836122e5565b9150612331826122f0565b600782019050919050565b60006123478261179d565b61235181856122e5565b93506123618185602086016117b9565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006123a36001836122e5565b91506123ae8261236d565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006123ef6005836122e5565b91506123fa826123b9565b600582019050919050565b600061241082612319565b915061241c828561233c565b915061242782612396565b9150612433828461233c565b915061243e826123e2565b9150819050939250505056fea264697066735822122056103e155d6742c8bed157c28dbe8ef30a0b7b5074e6042a288ee60bea91e44564736f6c63430008110033

Deployed Bytecode Sourcemap

9020:24284:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14188:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18941:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20091:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13431:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12645:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21494:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9262:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33156:145;;;;;;;;;;;;;:::i;:::-;;21755:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12546:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9970:316;;;;;;;;;;;;;:::i;:::-;;18730:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14867:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9090:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19110:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9354:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9696:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20884:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22031:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9399:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19228:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9309:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14188:615;14273:4;14588:10;14573:25;;:11;:25;;;;:102;;;;14665:10;14650:25;;:11;:25;;;;14573:102;:179;;;;14742:10;14727:25;;:11;:25;;;;14573:179;14553:199;;14188:615;;;:::o;18941:100::-;18995:13;19028:5;;;;;;;;;;;;;;;;;19021:12;;18941:100;:::o;20608:204::-;20676:7;20701:16;20709:7;20701;:16::i;:::-;20696:64;;20726:34;;;;;;;;;;;;;;20696:64;20780:15;:24;20796:7;20780:24;;;;;;;;;;;;;;;;;;;;;20773:31;;20608:204;;;:::o;20091:451::-;20164:13;20196:27;20215:7;20196:18;:27::i;:::-;20164:61;;20246:5;20240:11;;:2;:11;;;20236:25;;20253:8;;;20236:25;20301:5;20278:28;;:19;:17;:19::i;:::-;:28;;;20274:175;;20326:44;20343:5;20350:19;:17;:19::i;:::-;20326:16;:44::i;:::-;20321:128;;20398:35;;;;;;;;;;;;;;20321:128;20274:175;20488:2;20461:15;:24;20477:7;20461:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20526:7;20522:2;20506:28;;20515:5;20506:28;;;;;;;;;;;;20153:389;20091:451;;:::o;13431:300::-;13484:7;13697:15;:13;:15::i;:::-;13681:13;;:31;13674:38;;13431:300;:::o;12645:166::-;9222:10;9214:18;;:6;;;;;;;;;;:18;;;9206:27;;;;;;12760:20:::1;12738:19;:42;;;;12798:5;12791:4;:12;;;;12645:166:::0;;:::o;21494:190::-;21648:28;21658:4;21664:2;21668:7;21648:9;:28::i;:::-;21494:190;;;:::o;9262:40::-;9299:3;9262:40;:::o;33156:145::-;9222:10;9214:18;;:6;;;;;;;;;;:18;;;9206:27;;;;;;33206:15:::1;33224:21;33206:39;;33264:10;33256:28;;:37;33285:7;33256:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;33195:106;33156:145::o:0;21755:205::-;21913:39;21930:4;21936:2;21940:7;21913:39;;;;;;;;;;;;:16;:39::i;:::-;21755:205;;;:::o;12546:91::-;9222:10;9214:18;;:6;;;;;;;;;;:18;;;9206:27;;;;;;12624:5:::1;12613:8;:16;;;;;;:::i;:::-;;12546:91:::0;:::o;9970:316::-;10009:15;10027:19;:17;:19::i;:::-;10009:37;;10057:14;10074:1;10057:18;;9344:3;10112:6;10096:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;10088:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10205:19;;10179:22;10193:7;10179:13;:22::i;:::-;10170:6;:31;;;;:::i;:::-;:54;;10162:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10256:22;10262:7;10271:6;10256:5;:22::i;:::-;9998:288;;9970:316::o;18730:144::-;18794:7;18837:27;18856:7;18837:18;:27::i;:::-;18814:52;;18730:144;;;:::o;14867:234::-;14931:7;14983:1;14955:24;14973:5;14955:17;:24::i;:::-;:29;14951:70;;14993:28;;;;;;;;;;;;;;14951:70;10397:13;15039:18;:25;15058:5;15039:25;;;;;;;;;;;;;;;;:54;15032:61;;14867:234;;;:::o;9090:77::-;9127:7;9153:6;;;;;;;;;;;9146:13;;9090:77;:::o;19110:104::-;19166:13;19199:7;;;;;;;;;;;;;;;;;19192:14;;19110:104;:::o;9354:38::-;;;;:::o;9696:266::-;9753:15;9771:19;:17;:19::i;:::-;9753:37;;9299:3;9827:6;9811:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;9803:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;9893:9;9885:4;;9878:6;:11;;;;:::i;:::-;:24;;9870:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;9932:22;9938:7;9947:6;9932:5;:22::i;:::-;9742:220;9696:266;:::o;20884:308::-;20995:19;:17;:19::i;:::-;20983:31;;:8;:31;;;20979:61;;21023:17;;;;;;;;;;;;;;20979:61;21105:8;21053:18;:39;21072:19;:17;:19::i;:::-;21053:39;;;;;;;;;;;;;;;:49;21093:8;21053:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;21165:8;21129:55;;21144:19;:17;:19::i;:::-;21129:55;;;21175:8;21129:55;;;;;;:::i;:::-;;;;;;;;20884:308;;:::o;22031:227::-;22222:28;22232:4;22238:2;22242:7;22222:9;:28::i;:::-;22031:227;;;;:::o;9399:33::-;;;;:::o;19228:339::-;19301:13;19332:16;19340:7;19332;:16::i;:::-;19327:59;;19357:29;;;;;;;;;;;;;;19327:59;19397:21;19421:8;19397:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19472:1;19453:7;19447:21;:26;:112;;;;;;;;;;;;;;;;;19511:7;19525:18;19535:7;19525:9;:18::i;:::-;19483:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19447:112;19440:119;;;19228:339;;;:::o;21263:164::-;21360:4;21384:18;:25;21403:5;21384:25;;;;;;;;;;;;;;;:35;21410:8;21384:35;;;;;;;;;;;;;;;;;;;;;;;;;21377:42;;21263:164;;;;:::o;9309:38::-;9344:3;9309:38;:::o;22513:168::-;22570:4;22626:7;22607:15;:13;:15::i;:::-;:26;;:66;;;;;22660:13;;22650:7;:23;22607:66;22587:86;;22513:168;;;:::o;16245:1129::-;16312:7;16332:12;16347:7;16332:22;;16415:4;16396:15;:13;:15::i;:::-;:23;16392:915;;16449:13;;16442:4;:20;16438:869;;;16487:14;16504:17;:23;16522:4;16504:23;;;;;;;;;;;;16487:40;;16620:1;11167:8;16593:6;:23;:28;16589:699;;17112:113;17129:1;17119:6;:11;17112:113;;17172:17;:25;17190:6;;;;;;;17172:25;;;;;;;;;;;;17163:34;;17112:113;;;17258:6;17251:13;;;;;;16589:699;16464:843;16438:869;16392:915;17335:31;;;;;;;;;;;;;;16245:1129;;;;:::o;31055:105::-;31115:7;31142:10;31135:17;;31055:105;:::o;12954:92::-;13010:7;12954:92;:::o;27381:2636::-;27518:27;27548;27567:7;27548:18;:27::i;:::-;27518:57;;27633:4;27592:45;;27608:19;27592:45;;;27588:86;;27646:28;;;;;;;;;;;;;;27588:86;27687:23;27713:15;:24;27729:7;27713:24;;;;;;;;;;;;;;;;;;;;;27687:50;;27750:22;27799:4;27776:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;27824:43;27841:4;27847:19;:17;:19::i;:::-;27824:16;:43::i;:::-;27776:91;:150;;;;27907:19;:17;:19::i;:::-;27888:38;;:15;:38;;;27776:150;27750:177;;27945:17;27940:66;;27971:35;;;;;;;;;;;;;;27940:66;28195:1;28157:34;28175:15;28157:17;:34::i;:::-;:39;28153:103;;28220:15;:24;28236:7;28220:24;;;;;;;;;;;;28213:31;;;;;;;;;;;28153:103;28623:18;:24;28642:4;28623:24;;;;;;;;;;;;;;;;28621:26;;;;;;;;;;;;28692:18;:22;28711:2;28692:22;;;;;;;;;;;;;;;;28690:24;;;;;;;;;;;11445:8;11051:3;29073:15;:41;;29031:21;29049:2;29031:17;:21::i;:::-;:84;:128;28985:17;:26;29003:7;28985:26;;;;;;;;;;;:174;;;;29329:1;11445:8;29279:19;:46;:51;29275:626;;29351:19;29383:1;29373:7;:11;29351:33;;29540:1;29506:17;:30;29524:11;29506:30;;;;;;;;;;;;:35;29502:384;;29644:13;;29629:11;:28;29625:242;;29824:19;29791:17;:30;29809:11;29791:30;;;;;;;;;;;:52;;;;29625:242;29502:384;29332:569;29275:626;29948:7;29944:2;29929:27;;29938:4;29929:27;;;;;;;;;;;;29967:42;29988:4;29994:2;29998:7;30007:1;29967:20;:42::i;:::-;27505:2512;;;27381:2636;;;:::o;15183:176::-;15244:7;10397:13;10534:2;15272:18;:25;15291:5;15272:25;;;;;;;;;;;;;;;;:49;;15271:80;15264:87;;15183:176;;;:::o;25533:1594::-;25598:20;25621:13;;25598:36;;25674:1;25649:21;25667:2;25649:17;:21::i;:::-;:26;25645:58;;25684:19;;;;;;;;;;;;;;25645:58;25730:1;25718:8;:13;25714:44;;25740:18;;;;;;;;;;;;;;25714:44;26303:1;10534:2;26274:1;:25;;26273:31;26261:8;:44;26235:18;:22;26254:2;26235:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;11310:3;26704:29;26731:1;26719:8;:13;26704:14;:29::i;:::-;:56;;11051:3;26641:15;:41;;26599:21;26617:2;26599:17;:21::i;:::-;:84;:162;26548:17;:31;26566:12;26548:31;;;;;;;;;;;:213;;;;26778:20;26801:12;26778:35;;26828:11;26857:8;26842:12;:23;26828:37;;26882:111;26934:14;;;;;;26930:2;26909:40;;26926:1;26909:40;;;;;;;;;;;;26988:3;26973:12;:18;26882:111;;27025:12;27009:13;:28;;;;26012:1037;;27059:60;27088:1;27092:2;27096:12;27110:8;27059:20;:60::i;:::-;25587:1540;25533:1594;;:::o;19652:148::-;19716:14;19777:5;19767:15;;19652:148;;;:::o;31266:1882::-;31323:17;31744:3;31737:4;31731:11;31727:21;31720:28;;31831:3;31825:4;31818:17;31931:3;32367:5;32499:1;32494:3;32490:11;32483:18;;32638:2;32632:4;32628:13;32624:2;32620:22;32615:3;32607:36;32680:2;32674:4;32670:13;32662:21;;32264:661;32696:4;32264:661;;;32864:1;32859:3;32855:11;32848:18;;32908:2;32902:4;32898:13;32894:2;32890:22;32885:3;32877:36;32781:2;32775:4;32771:13;32763:21;;32264:661;;;32268:427;32957:3;32952;32948:13;33066:2;33061:3;33057:12;33050:19;;33123:6;33118:3;33111:19;31362:1779;;31266:1882;;;:::o;30682:182::-;;;;;:::o;19887:142::-;19945:14;20006:5;19996:15;;19887:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:474::-;5310:6;5318;5367:2;5355:9;5346:7;5342:23;5338:32;5335:119;;;5373:79;;:::i;:::-;5335:119;5493:1;5518:53;5563:7;5554:6;5543:9;5539:22;5518:53;:::i;:::-;5508:63;;5464:117;5620:2;5646:53;5691:7;5682:6;5671:9;5667:22;5646:53;:::i;:::-;5636:63;;5591:118;5242:474;;;;;:::o;5722:619::-;5799:6;5807;5815;5864:2;5852:9;5843:7;5839:23;5835:32;5832:119;;;5870:79;;:::i;:::-;5832:119;5990:1;6015:53;6060:7;6051:6;6040:9;6036:22;6015:53;:::i;:::-;6005:63;;5961:117;6117:2;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6088:118;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5722:619;;;;;:::o;6347:117::-;6456:1;6453;6446:12;6470:117;6579:1;6576;6569:12;6593:180;6641:77;6638:1;6631:88;6738:4;6735:1;6728:15;6762:4;6759:1;6752:15;6779:281;6862:27;6884:4;6862:27;:::i;:::-;6854:6;6850:40;6992:6;6980:10;6977:22;6956:18;6944:10;6941:34;6938:62;6935:88;;;7003:18;;:::i;:::-;6935:88;7043:10;7039:2;7032:22;6822:238;6779:281;;:::o;7066:129::-;7100:6;7127:20;;:::i;:::-;7117:30;;7156:33;7184:4;7176:6;7156:33;:::i;:::-;7066:129;;;:::o;7201:308::-;7263:4;7353:18;7345:6;7342:30;7339:56;;;7375:18;;:::i;:::-;7339:56;7413:29;7435:6;7413:29;:::i;:::-;7405:37;;7497:4;7491;7487:15;7479:23;;7201:308;;;:::o;7515:146::-;7612:6;7607:3;7602;7589:30;7653:1;7644:6;7639:3;7635:16;7628:27;7515:146;;;:::o;7667:425::-;7745:5;7770:66;7786:49;7828:6;7786:49;:::i;:::-;7770:66;:::i;:::-;7761:75;;7859:6;7852:5;7845:21;7897:4;7890:5;7886:16;7935:3;7926:6;7921:3;7917:16;7914:25;7911:112;;;7942:79;;:::i;:::-;7911:112;8032:54;8079:6;8074:3;8069;8032:54;:::i;:::-;7751:341;7667:425;;;;;:::o;8112:340::-;8168:5;8217:3;8210:4;8202:6;8198:17;8194:27;8184:122;;8225:79;;:::i;:::-;8184:122;8342:6;8329:20;8367:79;8442:3;8434:6;8427:4;8419:6;8415:17;8367:79;:::i;:::-;8358:88;;8174:278;8112:340;;;;:::o;8458:509::-;8527:6;8576:2;8564:9;8555:7;8551:23;8547:32;8544:119;;;8582:79;;:::i;:::-;8544:119;8730:1;8719:9;8715:17;8702:31;8760:18;8752:6;8749:30;8746:117;;;8782:79;;:::i;:::-;8746:117;8887:63;8942:7;8933:6;8922:9;8918:22;8887:63;:::i;:::-;8877:73;;8673:287;8458:509;;;;:::o;8973:329::-;9032:6;9081:2;9069:9;9060:7;9056:23;9052:32;9049:119;;;9087:79;;:::i;:::-;9049:119;9207:1;9232:53;9277:7;9268:6;9257:9;9253:22;9232:53;:::i;:::-;9222:63;;9178:117;8973:329;;;;:::o;9308:116::-;9378:21;9393:5;9378:21;:::i;:::-;9371:5;9368:32;9358:60;;9414:1;9411;9404:12;9358:60;9308:116;:::o;9430:133::-;9473:5;9511:6;9498:20;9489:29;;9527:30;9551:5;9527:30;:::i;:::-;9430:133;;;;:::o;9569:468::-;9634:6;9642;9691:2;9679:9;9670:7;9666:23;9662:32;9659:119;;;9697:79;;:::i;:::-;9659:119;9817:1;9842:53;9887:7;9878:6;9867:9;9863:22;9842:53;:::i;:::-;9832:63;;9788:117;9944:2;9970:50;10012:7;10003:6;9992:9;9988:22;9970:50;:::i;:::-;9960:60;;9915:115;9569:468;;;;;:::o;10043:307::-;10104:4;10194:18;10186:6;10183:30;10180:56;;;10216:18;;:::i;:::-;10180:56;10254:29;10276:6;10254:29;:::i;:::-;10246:37;;10338:4;10332;10328:15;10320:23;;10043:307;;;:::o;10356:423::-;10433:5;10458:65;10474:48;10515:6;10474:48;:::i;:::-;10458:65;:::i;:::-;10449:74;;10546:6;10539:5;10532:21;10584:4;10577:5;10573:16;10622:3;10613:6;10608:3;10604:16;10601:25;10598:112;;;10629:79;;:::i;:::-;10598:112;10719:54;10766:6;10761:3;10756;10719:54;:::i;:::-;10439:340;10356:423;;;;;:::o;10798:338::-;10853:5;10902:3;10895:4;10887:6;10883:17;10879:27;10869:122;;10910:79;;:::i;:::-;10869:122;11027:6;11014:20;11052:78;11126:3;11118:6;11111:4;11103:6;11099:17;11052:78;:::i;:::-;11043:87;;10859:277;10798:338;;;;:::o;11142:943::-;11237:6;11245;11253;11261;11310:3;11298:9;11289:7;11285:23;11281:33;11278:120;;;11317:79;;:::i;:::-;11278:120;11437:1;11462:53;11507:7;11498:6;11487:9;11483:22;11462:53;:::i;:::-;11452:63;;11408:117;11564:2;11590:53;11635:7;11626:6;11615:9;11611:22;11590:53;:::i;:::-;11580:63;;11535:118;11692:2;11718:53;11763:7;11754:6;11743:9;11739:22;11718:53;:::i;:::-;11708:63;;11663:118;11848:2;11837:9;11833:18;11820:32;11879:18;11871:6;11868:30;11865:117;;;11901:79;;:::i;:::-;11865:117;12006:62;12060:7;12051:6;12040:9;12036:22;12006:62;:::i;:::-;11996:72;;11791:287;11142:943;;;;;;;:::o;12091:474::-;12159:6;12167;12216:2;12204:9;12195:7;12191:23;12187:32;12184:119;;;12222:79;;:::i;:::-;12184:119;12342:1;12367:53;12412:7;12403:6;12392:9;12388:22;12367:53;:::i;:::-;12357:63;;12313:117;12469:2;12495:53;12540:7;12531:6;12520:9;12516:22;12495:53;:::i;:::-;12485:63;;12440:118;12091:474;;;;;:::o;12571:180::-;12619:77;12616:1;12609:88;12716:4;12713:1;12706:15;12740:4;12737:1;12730:15;12757:320;12801:6;12838:1;12832:4;12828:12;12818:22;;12885:1;12879:4;12875:12;12906:18;12896:81;;12962:4;12954:6;12950:17;12940:27;;12896:81;13024:2;13016:6;13013:14;12993:18;12990:38;12987:84;;13043:18;;:::i;:::-;12987:84;12808:269;12757:320;;;:::o;13083:141::-;13132:4;13155:3;13147:11;;13178:3;13175:1;13168:14;13212:4;13209:1;13199:18;13191:26;;13083:141;;;:::o;13230:93::-;13267:6;13314:2;13309;13302:5;13298:14;13294:23;13284:33;;13230:93;;;:::o;13329:107::-;13373:8;13423:5;13417:4;13413:16;13392:37;;13329:107;;;;:::o;13442:393::-;13511:6;13561:1;13549:10;13545:18;13584:97;13614:66;13603:9;13584:97;:::i;:::-;13702:39;13732:8;13721:9;13702:39;:::i;:::-;13690:51;;13774:4;13770:9;13763:5;13759:21;13750:30;;13823:4;13813:8;13809:19;13802:5;13799:30;13789:40;;13518:317;;13442:393;;;;;:::o;13841:60::-;13869:3;13890:5;13883:12;;13841:60;;;:::o;13907:142::-;13957:9;13990:53;14008:34;14017:24;14035:5;14017:24;:::i;:::-;14008:34;:::i;:::-;13990:53;:::i;:::-;13977:66;;13907:142;;;:::o;14055:75::-;14098:3;14119:5;14112:12;;14055:75;;;:::o;14136:269::-;14246:39;14277:7;14246:39;:::i;:::-;14307:91;14356:41;14380:16;14356:41;:::i;:::-;14348:6;14341:4;14335:11;14307:91;:::i;:::-;14301:4;14294:105;14212:193;14136:269;;;:::o;14411:73::-;14456:3;14411:73;:::o;14490:189::-;14567:32;;:::i;:::-;14608:65;14666:6;14658;14652:4;14608:65;:::i;:::-;14543:136;14490:189;;:::o;14685:186::-;14745:120;14762:3;14755:5;14752:14;14745:120;;;14816:39;14853:1;14846:5;14816:39;:::i;:::-;14789:1;14782:5;14778:13;14769:22;;14745:120;;;14685:186;;:::o;14877:543::-;14978:2;14973:3;14970:11;14967:446;;;15012:38;15044:5;15012:38;:::i;:::-;15096:29;15114:10;15096:29;:::i;:::-;15086:8;15082:44;15279:2;15267:10;15264:18;15261:49;;;15300:8;15285:23;;15261:49;15323:80;15379:22;15397:3;15379:22;:::i;:::-;15369:8;15365:37;15352:11;15323:80;:::i;:::-;14982:431;;14967:446;14877:543;;;:::o;15426:117::-;15480:8;15530:5;15524:4;15520:16;15499:37;;15426:117;;;;:::o;15549:169::-;15593:6;15626:51;15674:1;15670:6;15662:5;15659:1;15655:13;15626:51;:::i;:::-;15622:56;15707:4;15701;15697:15;15687:25;;15600:118;15549:169;;;;:::o;15723:295::-;15799:4;15945:29;15970:3;15964:4;15945:29;:::i;:::-;15937:37;;16007:3;16004:1;16000:11;15994:4;15991:21;15983:29;;15723:295;;;;:::o;16023:1395::-;16140:37;16173:3;16140:37;:::i;:::-;16242:18;16234:6;16231:30;16228:56;;;16264:18;;:::i;:::-;16228:56;16308:38;16340:4;16334:11;16308:38;:::i;:::-;16393:67;16453:6;16445;16439:4;16393:67;:::i;:::-;16487:1;16511:4;16498:17;;16543:2;16535:6;16532:14;16560:1;16555:618;;;;17217:1;17234:6;17231:77;;;17283:9;17278:3;17274:19;17268:26;17259:35;;17231:77;17334:67;17394:6;17387:5;17334:67;:::i;:::-;17328:4;17321:81;17190:222;16525:887;;16555:618;16607:4;16603:9;16595:6;16591:22;16641:37;16673:4;16641:37;:::i;:::-;16700:1;16714:208;16728:7;16725:1;16722:14;16714:208;;;16807:9;16802:3;16798:19;16792:26;16784:6;16777:42;16858:1;16850:6;16846:14;16836:24;;16905:2;16894:9;16890:18;16877:31;;16751:4;16748:1;16744:12;16739:17;;16714:208;;;16950:6;16941:7;16938:19;16935:179;;;17008:9;17003:3;16999:19;16993:26;17051:48;17093:4;17085:6;17081:17;17070:9;17051:48;:::i;:::-;17043:6;17036:64;16958:156;16935:179;17160:1;17156;17148:6;17144:14;17140:22;17134:4;17127:36;16562:611;;;16525:887;;16115:1303;;;16023:1395;;:::o;17424:180::-;17472:77;17469:1;17462:88;17569:4;17566:1;17559:15;17593:4;17590:1;17583:15;17610:191;17650:3;17669:20;17687:1;17669:20;:::i;:::-;17664:25;;17703:20;17721:1;17703:20;:::i;:::-;17698:25;;17746:1;17743;17739:9;17732:16;;17767:3;17764:1;17761:10;17758:36;;;17774:18;;:::i;:::-;17758:36;17610:191;;;;:::o;17807:166::-;17947:18;17943:1;17935:6;17931:14;17924:42;17807:166;:::o;17979:366::-;18121:3;18142:67;18206:2;18201:3;18142:67;:::i;:::-;18135:74;;18218:93;18307:3;18218:93;:::i;:::-;18336:2;18331:3;18327:12;18320:19;;17979:366;;;:::o;18351:419::-;18517:4;18555:2;18544:9;18540:18;18532:26;;18604:9;18598:4;18594:20;18590:1;18579:9;18575:17;18568:47;18632:131;18758:4;18632:131;:::i;:::-;18624:139;;18351:419;;;:::o;18776:164::-;18916:16;18912:1;18904:6;18900:14;18893:40;18776:164;:::o;18946:366::-;19088:3;19109:67;19173:2;19168:3;19109:67;:::i;:::-;19102:74;;19185:93;19274:3;19185:93;:::i;:::-;19303:2;19298:3;19294:12;19287:19;;18946:366;;;:::o;19318:419::-;19484:4;19522:2;19511:9;19507:18;19499:26;;19571:9;19565:4;19561:20;19557:1;19546:9;19542:17;19535:47;19599:131;19725:4;19599:131;:::i;:::-;19591:139;;19318:419;;;:::o;19743:157::-;19883:9;19879:1;19871:6;19867:14;19860:33;19743:157;:::o;19906:365::-;20048:3;20069:66;20133:1;20128:3;20069:66;:::i;:::-;20062:73;;20144:93;20233:3;20144:93;:::i;:::-;20262:2;20257:3;20253:12;20246:19;;19906:365;;;:::o;20277:419::-;20443:4;20481:2;20470:9;20466:18;20458:26;;20530:9;20524:4;20520:20;20516:1;20505:9;20501:17;20494:47;20558:131;20684:4;20558:131;:::i;:::-;20550:139;;20277:419;;;:::o;20702:410::-;20742:7;20765:20;20783:1;20765:20;:::i;:::-;20760:25;;20799:20;20817:1;20799:20;:::i;:::-;20794:25;;20854:1;20851;20847:9;20876:30;20894:11;20876:30;:::i;:::-;20865:41;;21055:1;21046:7;21042:15;21039:1;21036:22;21016:1;21009:9;20989:83;20966:139;;21085:18;;:::i;:::-;20966:139;20750:362;20702:410;;;;:::o;21118:162::-;21258:14;21254:1;21246:6;21242:14;21235:38;21118:162;:::o;21286:366::-;21428:3;21449:67;21513:2;21508:3;21449:67;:::i;:::-;21442:74;;21525:93;21614:3;21525:93;:::i;:::-;21643:2;21638:3;21634:12;21627:19;;21286:366;;;:::o;21658:419::-;21824:4;21862:2;21851:9;21847:18;21839:26;;21911:9;21905:4;21901:20;21897:1;21886:9;21882:17;21875:47;21939:131;22065:4;21939:131;:::i;:::-;21931:139;;21658:419;;;:::o;22083:148::-;22185:11;22222:3;22207:18;;22083:148;;;;:::o;22237:161::-;22377:9;22373:1;22365:6;22361:14;22354:33;22237:161;:::o;22408:416::-;22568:3;22593:84;22675:1;22670:3;22593:84;:::i;:::-;22586:91;;22690:93;22779:3;22690:93;:::i;:::-;22812:1;22807:3;22803:11;22796:18;;22408:416;;;:::o;22834:410::-;22940:3;22972:39;23005:5;22972:39;:::i;:::-;23031:89;23113:6;23108:3;23031:89;:::i;:::-;23024:96;;23133:65;23191:6;23186:3;23179:4;23172:5;23168:16;23133:65;:::i;:::-;23227:6;23222:3;23218:16;23211:23;;22944:300;22834:410;;;;:::o;23254:159::-;23398:3;23394:1;23386:6;23382:14;23375:27;23254:159;:::o;23423:416::-;23583:3;23608:84;23690:1;23685:3;23608:84;:::i;:::-;23601:91;;23705:93;23794:3;23705:93;:::i;:::-;23827:1;23822:3;23818:11;23811:18;;23423:416;;;:::o;23849:163::-;23993:7;23989:1;23981:6;23977:14;23970:31;23849:163;:::o;24022:416::-;24182:3;24207:84;24289:1;24284:3;24207:84;:::i;:::-;24200:91;;24304:93;24393:3;24304:93;:::i;:::-;24426:1;24421:3;24417:11;24410:18;;24022:416;;;:::o;24448:1261::-;24931:3;24957:148;25101:3;24957:148;:::i;:::-;24950:155;;25126:95;25217:3;25208:6;25126:95;:::i;:::-;25119:102;;25242:148;25386:3;25242:148;:::i;:::-;25235:155;;25411:95;25502:3;25493:6;25411:95;:::i;:::-;25404:102;;25527:148;25671:3;25527:148;:::i;:::-;25520:155;;25696:3;25689:10;;24448:1261;;;;;:::o

Swarm Source

ipfs://56103e155d6742c8bed157c28dbe8ef30a0b7b5074e6042a288ee60bea91e445
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.