ETH Price: $3,304.79 (-3.53%)
Gas: 8 Gwei

Token

Pepe Jr. (PEPEJUNIOR)
 

Overview

Max Total Supply

4,096 PEPEJUNIOR

Holders

785

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 PEPEJUNIOR
0x184717d4167c878438dd5f7d61beab7830be5cfe
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:
PepeJunior

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-17
*/

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

/**

Roses are red,
Violets are blue.
If gas scares you off,
This isn't for you.

*/

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

    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}


contract PepeJunior is IERC721A { 

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    uint256 public constant MAX_SUPPLY = 4096;
    uint256 public MAX_FREE = 4096;

    uint256 public MAX_FREE_PER_WALLET = 2;
    uint256 public COST = 0.002 ether;

    string private constant _name = "Pepe Jr.";
    string private constant _symbol = "PEPEJUNIOR";
    string private _baseURI = "bafybeif4k4gcfnlf4y2k55yg7w5m6j6gtmljiv744qp2lpygcthxfwmtly";

    constructor() {
        _owner = msg.sender;
    }

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

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

        _mint(_caller, amount);
    }

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

        require(totalSupply() + amount <= MAX_FREE, "Freemint Sold Out");
        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;

    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 setConfig(uint _MAX_FREE, uint _COST, uint _MAX_FREE_PER_WALLET) external onlyOwner{
        MAX_FREE = _MAX_FREE;
        COST = _COST;
        MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET;
    }

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

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

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

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

    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex;
    }

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

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


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

    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)
        }
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    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","type":"uint256"},{"internalType":"uint256","name":"_COST","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE_PER_WALLET","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"}]

60806040526110006001556002805566071afd498d00006003556040518060600160405280603b815260200162002a94603b91396004908162000043919062000317565b5060006005553480156200005657600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003fe565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200011f57607f821691505b602082108103620001355762000134620000d7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200019f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000160565b620001ab868362000160565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001f8620001f2620001ec84620001c3565b620001cd565b620001c3565b9050919050565b6000819050919050565b6200021483620001d7565b6200022c6200022382620001ff565b8484546200016d565b825550505050565b600090565b6200024362000234565b6200025081848462000209565b505050565b5b8181101562000278576200026c60008262000239565b60018101905062000256565b5050565b601f821115620002c75762000291816200013b565b6200029c8462000150565b81016020851015620002ac578190505b620002c4620002bb8562000150565b83018262000255565b50505b505050565b600082821c905092915050565b6000620002ec60001984600802620002cc565b1980831691505092915050565b6000620003078383620002d9565b9150826002028217905092915050565b62000322826200009d565b67ffffffffffffffff8111156200033e576200033d620000a8565b5b6200034a825462000106565b620003578282856200027c565b600060209050601f8311600181146200038f57600084156200037a578287015190505b620003868582620002f9565b865550620003f6565b601f1984166200039f866200013b565b60005b82811015620003c957848901518255600182019150602085019450602081019050620003a2565b86831015620003e95784890151620003e5601f891682620002d9565b8355505b6001600288020188555050505b505050505050565b612686806200040e6000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f5578063129ee21a1461021e57806318160ddd14610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611855565b61057f565b604051610184919061189d565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611948565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906119a0565b61064e565b6040516101ec9190611a0e565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611a55565b6106ca565b005b34801561022a57600080fd5b5061024560048036038101906102409190611a95565b610843565b005b34801561025357600080fd5b5061025c6108eb565b6040516102699190611af7565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190611b12565b6108fe565b005b3480156102a757600080fd5b506102b061090e565b6040516102bd9190611af7565b60405180910390f35b3480156102d257600080fd5b506102db610914565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611b12565b6109f1565b005b34801561031257600080fd5b5061032d60048036038101906103289190611c9a565b610a11565b005b34801561033b57600080fd5b50610344610ab2565b005b34801561035257600080fd5b5061036d600480360381019061036891906119a0565b610bf0565b60405161037a9190611a0e565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611ce3565b610c02565b6040516103b79190611af7565b60405180910390f35b3480156103cc57600080fd5b506103d5610c96565b6040516103e29190611a0e565b60405180910390f35b3480156103f757600080fd5b50610400610cbf565b60405161040d9190611948565b60405180910390f35b34801561042257600080fd5b5061042b610cfc565b6040516104389190611af7565b60405180910390f35b61045b600480360381019061045691906119a0565b610d02565b005b34801561046957600080fd5b50610484600480360381019061047f9190611d3c565b610dc3565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611e1d565b610f3a565b005b3480156104bb57600080fd5b506104c4610f4b565b6040516104d19190611af7565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906119a0565b610f51565b60405161050e9190611948565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611ea0565b611072565b60405161054b919061189d565b60405180910390f35b34801561056057600080fd5b50610569611106565b6040516105769190611af7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600881526020017f50657065204a722e000000000000000000000000000000000000000000000000815250905090565b60006106598261110c565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261112d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6111f9565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556111f9565b611072565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611f2c565b60405180910390fd5b826001819055508160038190555080600281905550505050565b60006108f5611201565b60055403905090565b610909838383611206565b505050565b61100081565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611f2c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109ed573d6000803e3d6000fd5b5050565b610a0c83838360405180602001604052806000815250610f3a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690611f2c565b60405180910390fd5b8060049081610aae9190612158565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612276565b60405180910390fd5b6000610b2a6111f9565b90506000600254905060015481610b3f6108eb565b610b4991906122c5565b1115610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190612345565b60405180910390fd5b600254610b968361157c565b82610ba191906122c5565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906123b1565b60405180910390fd5b610bec82826115d3565b5050565b6000610bfb8261112d565b9050919050565b600080610c0e83611775565b03610c45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600a81526020017f504550454a554e494f5200000000000000000000000000000000000000000000815250905090565b60025481565b6000610d0c6111f9565b905061100082610d1a6108eb565b610d2491906122c5565b1115610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c9061241d565b60405180910390fd5b3460035483610d74919061243d565b1115610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906124cb565b60405180910390fd5b610dbf81836115d3565b5050565b610dcb6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610e3c6111f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ee96111f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f2e919061189d565b60405180910390a35050565b610f45848484611206565b50505050565b60035481565b6060610f5c8261110c565b610f92576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610fa190611f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd90611f7b565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b50505050509050600081510361103f576040518060200160405280600081525061106a565b806110498461177f565b60405160200161105a92919061260b565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b600081611117611201565b11158015611126575060055482105b9050919050565b6000808290508061113c611201565b116111c2576005548110156111c15760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036111bf575b600081036111b557600660008360019003935083815260200190815260200160002054905061118b565b80925050506111f4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006112118261112d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611278576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166112d16111f9565b73ffffffffffffffffffffffffffffffffffffffff16148061130057506112ff866112fa6111f9565b611072565b5b8061133d575061130e6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611376576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061138183611775565b146113bd576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61148487611775565b1717600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361150c576000600185019050600060066000838152602001908152602001600020540361150a576005548114611509578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461157486868660016117d9565b505050505050565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600554905060006115e584611775565b0361161c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611656576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16116bb600184146117df565b901b60a042901b6116cb85611775565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106116f15781600581905550505061177060008483856117d9565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156117c557600183039250600a81066030018353600a810490506117a5565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611832816117fd565b811461183d57600080fd5b50565b60008135905061184f81611829565b92915050565b60006020828403121561186b5761186a6117f3565b5b600061187984828501611840565b91505092915050565b60008115159050919050565b61189781611882565b82525050565b60006020820190506118b2600083018461188e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118f25780820151818401526020810190506118d7565b60008484015250505050565b6000601f19601f8301169050919050565b600061191a826118b8565b61192481856118c3565b93506119348185602086016118d4565b61193d816118fe565b840191505092915050565b60006020820190508181036000830152611962818461190f565b905092915050565b6000819050919050565b61197d8161196a565b811461198857600080fd5b50565b60008135905061199a81611974565b92915050565b6000602082840312156119b6576119b56117f3565b5b60006119c48482850161198b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119f8826119cd565b9050919050565b611a08816119ed565b82525050565b6000602082019050611a2360008301846119ff565b92915050565b611a32816119ed565b8114611a3d57600080fd5b50565b600081359050611a4f81611a29565b92915050565b60008060408385031215611a6c57611a6b6117f3565b5b6000611a7a85828601611a40565b9250506020611a8b8582860161198b565b9150509250929050565b600080600060608486031215611aae57611aad6117f3565b5b6000611abc8682870161198b565b9350506020611acd8682870161198b565b9250506040611ade8682870161198b565b9150509250925092565b611af18161196a565b82525050565b6000602082019050611b0c6000830184611ae8565b92915050565b600080600060608486031215611b2b57611b2a6117f3565b5b6000611b3986828701611a40565b9350506020611b4a86828701611a40565b9250506040611b5b8682870161198b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ba7826118fe565b810181811067ffffffffffffffff82111715611bc657611bc5611b6f565b5b80604052505050565b6000611bd96117e9565b9050611be58282611b9e565b919050565b600067ffffffffffffffff821115611c0557611c04611b6f565b5b611c0e826118fe565b9050602081019050919050565b82818337600083830152505050565b6000611c3d611c3884611bea565b611bcf565b905082815260208101848484011115611c5957611c58611b6a565b5b611c64848285611c1b565b509392505050565b600082601f830112611c8157611c80611b65565b5b8135611c91848260208601611c2a565b91505092915050565b600060208284031215611cb057611caf6117f3565b5b600082013567ffffffffffffffff811115611cce57611ccd6117f8565b5b611cda84828501611c6c565b91505092915050565b600060208284031215611cf957611cf86117f3565b5b6000611d0784828501611a40565b91505092915050565b611d1981611882565b8114611d2457600080fd5b50565b600081359050611d3681611d10565b92915050565b60008060408385031215611d5357611d526117f3565b5b6000611d6185828601611a40565b9250506020611d7285828601611d27565b9150509250929050565b600067ffffffffffffffff821115611d9757611d96611b6f565b5b611da0826118fe565b9050602081019050919050565b6000611dc0611dbb84611d7c565b611bcf565b905082815260208101848484011115611ddc57611ddb611b6a565b5b611de7848285611c1b565b509392505050565b600082601f830112611e0457611e03611b65565b5b8135611e14848260208601611dad565b91505092915050565b60008060008060808587031215611e3757611e366117f3565b5b6000611e4587828801611a40565b9450506020611e5687828801611a40565b9350506040611e678782880161198b565b925050606085013567ffffffffffffffff811115611e8857611e876117f8565b5b611e9487828801611def565b91505092959194509250565b60008060408385031215611eb757611eb66117f3565b5b6000611ec585828601611a40565b9250506020611ed685828601611a40565b9150509250929050565b7f6e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b6000611f166009836118c3565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f9357607f821691505b602082108103611fa657611fa5611f4c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261200e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fd1565b6120188683611fd1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061205561205061204b8461196a565b612030565b61196a565b9050919050565b6000819050919050565b61206f8361203a565b61208361207b8261205c565b848454611fde565b825550505050565b600090565b61209861208b565b6120a3818484612066565b505050565b5b818110156120c7576120bc600082612090565b6001810190506120a9565b5050565b601f82111561210c576120dd81611fac565b6120e684611fc1565b810160208510156120f5578190505b61210961210185611fc1565b8301826120a8565b50505b505050565b600082821c905092915050565b600061212f60001984600802612111565b1980831691505092915050565b6000612148838361211e565b9150826002028217905092915050565b612161826118b8565b67ffffffffffffffff81111561217a57612179611b6f565b5b6121848254611f7b565b61218f8282856120cb565b600060209050601f8311600181146121c257600084156121b0578287015190505b6121ba858261213c565b865550612222565b601f1984166121d086611fac565b60005b828110156121f8578489015182556001820191506020850194506020810190506121d3565b868310156122155784890151612211601f89168261211e565b8355505b6001600288020188555050505b505050505050565b7f6e6f205363726970740000000000000000000000000000000000000000000000600082015250565b60006122606009836118c3565b915061226b8261222a565b602082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122d08261196a565b91506122db8361196a565b92508282019050808211156122f3576122f2612296565b5b92915050565b7f467265656d696e7420536f6c64204f7574000000000000000000000000000000600082015250565b600061232f6011836118c3565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b600061239b600e836118c3565b91506123a682612365565b602082019050919050565b600060208201905081810360008301526123ca8161238e565b9050919050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b60006124076008836118c3565b9150612412826123d1565b602082019050919050565b60006020820190508181036000830152612436816123fa565b9050919050565b60006124488261196a565b91506124538361196a565b92508282026124618161196a565b9150828204841483151761247857612477612296565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006124b5600c836118c3565b91506124c08261247f565b602082019050919050565b600060208201905081810360008301526124e4816124a8565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061252c6007836124eb565b9150612537826124f6565b600782019050919050565b600061254d826118b8565b61255781856124eb565b93506125678185602086016118d4565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006125a96001836124eb565b91506125b482612573565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006125f56005836124eb565b9150612600826125bf565b600582019050919050565b60006126168261251f565b91506126228285612542565b915061262d8261259c565b91506126398284612542565b9150612644826125e8565b9150819050939250505056fea26469706673582212201643061ff946a705e99715c05d1fb127d9a85fc3258595a1c2e45033733f1eef64736f6c634300081100336261667962656966346b346763666e6c663479326b353579673777356d366a3667746d6c6a69763734347170326c7079676374687866776d746c79

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f5578063129ee21a1461021e57806318160ddd14610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611855565b61057f565b604051610184919061189d565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611948565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906119a0565b61064e565b6040516101ec9190611a0e565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611a55565b6106ca565b005b34801561022a57600080fd5b5061024560048036038101906102409190611a95565b610843565b005b34801561025357600080fd5b5061025c6108eb565b6040516102699190611af7565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190611b12565b6108fe565b005b3480156102a757600080fd5b506102b061090e565b6040516102bd9190611af7565b60405180910390f35b3480156102d257600080fd5b506102db610914565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611b12565b6109f1565b005b34801561031257600080fd5b5061032d60048036038101906103289190611c9a565b610a11565b005b34801561033b57600080fd5b50610344610ab2565b005b34801561035257600080fd5b5061036d600480360381019061036891906119a0565b610bf0565b60405161037a9190611a0e565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611ce3565b610c02565b6040516103b79190611af7565b60405180910390f35b3480156103cc57600080fd5b506103d5610c96565b6040516103e29190611a0e565b60405180910390f35b3480156103f757600080fd5b50610400610cbf565b60405161040d9190611948565b60405180910390f35b34801561042257600080fd5b5061042b610cfc565b6040516104389190611af7565b60405180910390f35b61045b600480360381019061045691906119a0565b610d02565b005b34801561046957600080fd5b50610484600480360381019061047f9190611d3c565b610dc3565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611e1d565b610f3a565b005b3480156104bb57600080fd5b506104c4610f4b565b6040516104d19190611af7565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906119a0565b610f51565b60405161050e9190611948565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611ea0565b611072565b60405161054b919061189d565b60405180910390f35b34801561056057600080fd5b50610569611106565b6040516105769190611af7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600881526020017f50657065204a722e000000000000000000000000000000000000000000000000815250905090565b60006106598261110c565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261112d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6111f9565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556111f9565b611072565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611f2c565b60405180910390fd5b826001819055508160038190555080600281905550505050565b60006108f5611201565b60055403905090565b610909838383611206565b505050565b61100081565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611f2c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109ed573d6000803e3d6000fd5b5050565b610a0c83838360405180602001604052806000815250610f3a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690611f2c565b60405180910390fd5b8060049081610aae9190612158565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612276565b60405180910390fd5b6000610b2a6111f9565b90506000600254905060015481610b3f6108eb565b610b4991906122c5565b1115610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190612345565b60405180910390fd5b600254610b968361157c565b82610ba191906122c5565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906123b1565b60405180910390fd5b610bec82826115d3565b5050565b6000610bfb8261112d565b9050919050565b600080610c0e83611775565b03610c45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600a81526020017f504550454a554e494f5200000000000000000000000000000000000000000000815250905090565b60025481565b6000610d0c6111f9565b905061100082610d1a6108eb565b610d2491906122c5565b1115610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c9061241d565b60405180910390fd5b3460035483610d74919061243d565b1115610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906124cb565b60405180910390fd5b610dbf81836115d3565b5050565b610dcb6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610e3c6111f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ee96111f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f2e919061189d565b60405180910390a35050565b610f45848484611206565b50505050565b60035481565b6060610f5c8261110c565b610f92576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610fa190611f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd90611f7b565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b50505050509050600081510361103f576040518060200160405280600081525061106a565b806110498461177f565b60405160200161105a92919061260b565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b600081611117611201565b11158015611126575060055482105b9050919050565b6000808290508061113c611201565b116111c2576005548110156111c15760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036111bf575b600081036111b557600660008360019003935083815260200190815260200160002054905061118b565b80925050506111f4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006112118261112d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611278576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166112d16111f9565b73ffffffffffffffffffffffffffffffffffffffff16148061130057506112ff866112fa6111f9565b611072565b5b8061133d575061130e6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611376576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061138183611775565b146113bd576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61148487611775565b1717600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361150c576000600185019050600060066000838152602001908152602001600020540361150a576005548114611509578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461157486868660016117d9565b505050505050565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600554905060006115e584611775565b0361161c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611656576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16116bb600184146117df565b901b60a042901b6116cb85611775565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106116f15781600581905550505061177060008483856117d9565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156117c557600183039250600a81066030018353600a810490506117a5565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611832816117fd565b811461183d57600080fd5b50565b60008135905061184f81611829565b92915050565b60006020828403121561186b5761186a6117f3565b5b600061187984828501611840565b91505092915050565b60008115159050919050565b61189781611882565b82525050565b60006020820190506118b2600083018461188e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118f25780820151818401526020810190506118d7565b60008484015250505050565b6000601f19601f8301169050919050565b600061191a826118b8565b61192481856118c3565b93506119348185602086016118d4565b61193d816118fe565b840191505092915050565b60006020820190508181036000830152611962818461190f565b905092915050565b6000819050919050565b61197d8161196a565b811461198857600080fd5b50565b60008135905061199a81611974565b92915050565b6000602082840312156119b6576119b56117f3565b5b60006119c48482850161198b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119f8826119cd565b9050919050565b611a08816119ed565b82525050565b6000602082019050611a2360008301846119ff565b92915050565b611a32816119ed565b8114611a3d57600080fd5b50565b600081359050611a4f81611a29565b92915050565b60008060408385031215611a6c57611a6b6117f3565b5b6000611a7a85828601611a40565b9250506020611a8b8582860161198b565b9150509250929050565b600080600060608486031215611aae57611aad6117f3565b5b6000611abc8682870161198b565b9350506020611acd8682870161198b565b9250506040611ade8682870161198b565b9150509250925092565b611af18161196a565b82525050565b6000602082019050611b0c6000830184611ae8565b92915050565b600080600060608486031215611b2b57611b2a6117f3565b5b6000611b3986828701611a40565b9350506020611b4a86828701611a40565b9250506040611b5b8682870161198b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ba7826118fe565b810181811067ffffffffffffffff82111715611bc657611bc5611b6f565b5b80604052505050565b6000611bd96117e9565b9050611be58282611b9e565b919050565b600067ffffffffffffffff821115611c0557611c04611b6f565b5b611c0e826118fe565b9050602081019050919050565b82818337600083830152505050565b6000611c3d611c3884611bea565b611bcf565b905082815260208101848484011115611c5957611c58611b6a565b5b611c64848285611c1b565b509392505050565b600082601f830112611c8157611c80611b65565b5b8135611c91848260208601611c2a565b91505092915050565b600060208284031215611cb057611caf6117f3565b5b600082013567ffffffffffffffff811115611cce57611ccd6117f8565b5b611cda84828501611c6c565b91505092915050565b600060208284031215611cf957611cf86117f3565b5b6000611d0784828501611a40565b91505092915050565b611d1981611882565b8114611d2457600080fd5b50565b600081359050611d3681611d10565b92915050565b60008060408385031215611d5357611d526117f3565b5b6000611d6185828601611a40565b9250506020611d7285828601611d27565b9150509250929050565b600067ffffffffffffffff821115611d9757611d96611b6f565b5b611da0826118fe565b9050602081019050919050565b6000611dc0611dbb84611d7c565b611bcf565b905082815260208101848484011115611ddc57611ddb611b6a565b5b611de7848285611c1b565b509392505050565b600082601f830112611e0457611e03611b65565b5b8135611e14848260208601611dad565b91505092915050565b60008060008060808587031215611e3757611e366117f3565b5b6000611e4587828801611a40565b9450506020611e5687828801611a40565b9350506040611e678782880161198b565b925050606085013567ffffffffffffffff811115611e8857611e876117f8565b5b611e9487828801611def565b91505092959194509250565b60008060408385031215611eb757611eb66117f3565b5b6000611ec585828601611a40565b9250506020611ed685828601611a40565b9150509250929050565b7f6e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b6000611f166009836118c3565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f9357607f821691505b602082108103611fa657611fa5611f4c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261200e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fd1565b6120188683611fd1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061205561205061204b8461196a565b612030565b61196a565b9050919050565b6000819050919050565b61206f8361203a565b61208361207b8261205c565b848454611fde565b825550505050565b600090565b61209861208b565b6120a3818484612066565b505050565b5b818110156120c7576120bc600082612090565b6001810190506120a9565b5050565b601f82111561210c576120dd81611fac565b6120e684611fc1565b810160208510156120f5578190505b61210961210185611fc1565b8301826120a8565b50505b505050565b600082821c905092915050565b600061212f60001984600802612111565b1980831691505092915050565b6000612148838361211e565b9150826002028217905092915050565b612161826118b8565b67ffffffffffffffff81111561217a57612179611b6f565b5b6121848254611f7b565b61218f8282856120cb565b600060209050601f8311600181146121c257600084156121b0578287015190505b6121ba858261213c565b865550612222565b601f1984166121d086611fac565b60005b828110156121f8578489015182556001820191506020850194506020810190506121d3565b868310156122155784890151612211601f89168261211e565b8355505b6001600288020188555050505b505050505050565b7f6e6f205363726970740000000000000000000000000000000000000000000000600082015250565b60006122606009836118c3565b915061226b8261222a565b602082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122d08261196a565b91506122db8361196a565b92508282019050808211156122f3576122f2612296565b5b92915050565b7f467265656d696e7420536f6c64204f7574000000000000000000000000000000600082015250565b600061232f6011836118c3565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b600061239b600e836118c3565b91506123a682612365565b602082019050919050565b600060208201905081810360008301526123ca8161238e565b9050919050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b60006124076008836118c3565b9150612412826123d1565b602082019050919050565b60006020820190508181036000830152612436816123fa565b9050919050565b60006124488261196a565b91506124538361196a565b92508282026124618161196a565b9150828204841483151761247857612477612296565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006124b5600c836118c3565b91506124c08261247f565b602082019050919050565b600060208201905081810360008301526124e4816124a8565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061252c6007836124eb565b9150612537826124f6565b600782019050919050565b600061254d826118b8565b61255781856124eb565b93506125678185602086016118d4565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006125a96001836124eb565b91506125b482612573565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006125f56005836124eb565b9150612600826125bf565b600582019050919050565b60006126168261251f565b91506126228285612542565b915061262d8261259c565b91506126398284612542565b9150612644826125e8565b9150819050939250505056fea26469706673582212201643061ff946a705e99715c05d1fb127d9a85fc3258595a1c2e45033733f1eef64736f6c63430008110033

Deployed Bytecode Sourcemap

8649:19350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13305:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19177:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18660:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11688:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12614:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20063:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8805:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27851:145;;;;;;;;;;;;;:::i;:::-;;20324:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11903:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9512:339;;;;;;;;;;;;;:::i;:::-;;17299:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13984:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8720:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17679:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8892:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9237:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19453:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20600:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8937:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17797:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19832:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8853:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13305:615;13390:4;13705:10;13690:25;;:11;:25;;;;:102;;;;13782:10;13767:25;;:11;:25;;;;13690:102;:179;;;;13859:10;13844:25;;:11;:25;;;;13690:179;13670:199;;13305:615;;;:::o;17510:100::-;17564:13;17597:5;;;;;;;;;;;;;;;;;17590:12;;17510:100;:::o;19177:204::-;19245:7;19270:16;19278:7;19270;:16::i;:::-;19265:64;;19295:34;;;;;;;;;;;;;;19265:64;19349:15;:24;19365:7;19349:24;;;;;;;;;;;;;;;;;;;;;19342:31;;19177:204;;;:::o;18660:451::-;18733:13;18765:27;18784:7;18765:18;:27::i;:::-;18733:61;;18815:5;18809:11;;:2;:11;;;18805:25;;18822:8;;;18805:25;18870:5;18847:28;;:19;:17;:19::i;:::-;:28;;;18843:175;;18895:44;18912:5;18919:19;:17;:19::i;:::-;18895:16;:44::i;:::-;18890:128;;18967:35;;;;;;;;;;;;;;18890:128;18843:175;19057:2;19030:15;:24;19046:7;19030:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19095:7;19091:2;19075:28;;19084:5;19075:28;;;;;;;;;;;;18722:389;18660:451;;:::o;11688:207::-;27701:10;27693:18;;:6;;;;;;;;;;:18;;;27685:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;11802:9:::1;11791:8;:20;;;;11829:5;11822:4;:12;;;;11867:20;11845:19;:42;;;;11688:207:::0;;;:::o;12614:300::-;12667:7;12880:15;:13;:15::i;:::-;12864:13;;:31;12857:38;;12614:300;:::o;20063:190::-;20217:28;20227:4;20233:2;20237:7;20217:9;:28::i;:::-;20063:190;;;:::o;8805:41::-;8842:4;8805:41;:::o;27851:145::-;27701:10;27693:18;;:6;;;;;;;;;;:18;;;27685:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;27901:15:::1;27919:21;27901:39;;27959:10;27951:28;;:37;27980:7;27951:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;27890:106;27851:145::o:0;20324:205::-;20482:39;20499:4;20505:2;20509:7;20482:39;;;;;;;;;;;;:16;:39::i;:::-;20324:205;;;:::o;11903:91::-;27701:10;27693:18;;:6;;;;;;;;;;:18;;;27685:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;11981:5:::1;11970:8;:16;;;;;;:::i;:::-;;11903:91:::0;:::o;9512:339::-;27799:10;27788:21;;:9;:21;;;27780:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;9555:15:::1;9573:19;:17;:19::i;:::-;9555:37;;9603:14;9620:19;;9603:36;;9686:8;;9676:6;9660:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;9652:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;9770:19;;9744:22;9758:7;9744:13;:22::i;:::-;9735:6;:31;;;;:::i;:::-;:54;;9727:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;9821:22;9827:7;9836:6;9821:5;:22::i;:::-;9544:307;;9512:339::o:0;17299:144::-;17363:7;17406:27;17425:7;17406:18;:27::i;:::-;17383:52;;17299:144;;;:::o;13984:234::-;14048:7;14100:1;14072:24;14090:5;14072:17;:24::i;:::-;:29;14068:70;;14110:28;;;;;;;;;;;;;;14068:70;9962:13;14156:18;:25;14175:5;14156:25;;;;;;;;;;;;;;;;:54;14149:61;;13984:234;;;:::o;8720:77::-;8757:7;8783:6;;;;;;;;;;;8776:13;;8720:77;:::o;17679:104::-;17735:13;17768:7;;;;;;;;;;;;;;;;;17761:14;;17679:104;:::o;8892:38::-;;;;:::o;9237:267::-;9294:15;9312:19;:17;:19::i;:::-;9294:37;;8842:4;9368:6;9352:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;9344:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;9435:9;9427:4;;9420:6;:11;;;;:::i;:::-;:24;;9412:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;9474:22;9480:7;9489:6;9474:5;:22::i;:::-;9283:221;9237:267;:::o;19453:308::-;19564:19;:17;:19::i;:::-;19552:31;;:8;:31;;;19548:61;;19592:17;;;;;;;;;;;;;;19548:61;19674:8;19622:18;:39;19641:19;:17;:19::i;:::-;19622:39;;;;;;;;;;;;;;;:49;19662:8;19622:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;19734:8;19698:55;;19713:19;:17;:19::i;:::-;19698:55;;;19744:8;19698:55;;;;;;:::i;:::-;;;;;;;;19453:308;;:::o;20600:227::-;20791:28;20801:4;20807:2;20811:7;20791:9;:28::i;:::-;20600:227;;;;:::o;8937:33::-;;;;:::o;17797:339::-;17870:13;17901:16;17909:7;17901;:16::i;:::-;17896:59;;17926:29;;;;;;;;;;;;;;17896:59;17966:21;17990:8;17966:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18041:1;18022:7;18016:21;:26;:112;;;;;;;;;;;;;;;;;18080:7;18094:18;18104:7;18094:9;:18::i;:::-;18052:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18016:112;18009:119;;;17797:339;;;:::o;19832:164::-;19929:4;19953:18;:25;19972:5;19953:25;;;;;;;;;;;;;;;:35;19979:8;19953:35;;;;;;;;;;;;;;;;;;;;;;;;;19946:42;;19832:164;;;;:::o;8853:30::-;;;;:::o;20835:168::-;20892:4;20948:7;20929:15;:13;:15::i;:::-;:26;;:66;;;;;20982:13;;20972:7;:23;20929:66;20909:86;;20835:168;;;:::o;14814:1129::-;14881:7;14901:12;14916:7;14901:22;;14984:4;14965:15;:13;:15::i;:::-;:23;14961:915;;15018:13;;15011:4;:20;15007:869;;;15056:14;15073:17;:23;15091:4;15073:23;;;;;;;;;;;;15056:40;;15189:1;10732:8;15162:6;:23;:28;15158:699;;15681:113;15698:1;15688:6;:11;15681:113;;15741:17;:25;15759:6;;;;;;;15741:25;;;;;;;;;;;;15732:34;;15681:113;;;15827:6;15820:13;;;;;;15158:699;15033:843;15007:869;14961:915;15904:31;;;;;;;;;;;;;;14814:1129;;;;:::o;25551:105::-;25611:7;25638:10;25631:17;;25551:105;:::o;12137:92::-;12193:7;12137:92;:::o;22613:2557::-;22750:27;22780;22799:7;22780:18;:27::i;:::-;22750:57;;22865:4;22824:45;;22840:19;22824:45;;;22820:86;;22878:28;;;;;;;;;;;;;;22820:86;22919:23;22945:15;:24;22961:7;22945:24;;;;;;;;;;;;;;;;;;;;;22919:50;;22982:22;23031:4;23008:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;23056:43;23073:4;23079:19;:17;:19::i;:::-;23056:16;:43::i;:::-;23008:91;:150;;;;23139:19;:17;:19::i;:::-;23120:38;;:15;:38;;;23008:150;22982:177;;23177:17;23172:66;;23203:35;;;;;;;;;;;;;;23172:66;23348:1;23310:34;23328:15;23310:17;:34::i;:::-;:39;23306:103;;23373:15;:24;23389:7;23373:24;;;;;;;;;;;;23366:31;;;;;;;;;;;23306:103;23776:18;:24;23795:4;23776:24;;;;;;;;;;;;;;;;23774:26;;;;;;;;;;;;23845:18;:22;23864:2;23845:22;;;;;;;;;;;;;;;;23843:24;;;;;;;;;;;11010:8;10616:3;24226:15;:41;;24184:21;24202:2;24184:17;:21::i;:::-;:84;:128;24138:17;:26;24156:7;24138:26;;;;;;;;;;;:174;;;;24482:1;11010:8;24432:19;:46;:51;24428:626;;24504:19;24536:1;24526:7;:11;24504:33;;24693:1;24659:17;:30;24677:11;24659:30;;;;;;;;;;;;:35;24655:384;;24797:13;;24782:11;:28;24778:242;;24977:19;24944:17;:30;24962:11;24944:30;;;;;;;;;;;:52;;;;24778:242;24655:384;24485:569;24428:626;25101:7;25097:2;25082:27;;25091:4;25082:27;;;;;;;;;;;;25120:42;25141:4;25147:2;25151:7;25160:1;25120:20;:42::i;:::-;22737:2433;;;22613:2557;;;:::o;14300:176::-;14361:7;9962:13;10099:2;14389:18;:25;14408:5;14389:25;;;;;;;;;;;;;;;;:49;;14388:80;14381:87;;14300:176;;;:::o;21011:1594::-;21076:20;21099:13;;21076:36;;21152:1;21127:21;21145:2;21127:17;:21::i;:::-;:26;21123:58;;21162:19;;;;;;;;;;;;;;21123:58;21208:1;21196:8;:13;21192:44;;21218:18;;;;;;;;;;;;;;21192:44;21781:1;10099:2;21752:1;:25;;21751:31;21739:8;:44;21713:18;:22;21732:2;21713:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10875:3;22182:29;22209:1;22197:8;:13;22182:14;:29::i;:::-;:56;;10616:3;22119:15;:41;;22077:21;22095:2;22077:17;:21::i;:::-;:84;:162;22026:17;:31;22044:12;22026:31;;;;;;;;;;;:213;;;;22256:20;22279:12;22256:35;;22306:11;22335:8;22320:12;:23;22306:37;;22360:111;22412:14;;;;;;22408:2;22387:40;;22404:1;22387:40;;;;;;;;;;;;22466:3;22451:12;:18;22360:111;;22503:12;22487:13;:28;;;;21490:1037;;22537:60;22566:1;22570:2;22574:12;22588:8;22537:20;:60::i;:::-;21065:1540;21011:1594;;:::o;18221:148::-;18285:14;18346:5;18336:15;;18221:148;;;:::o;25762:1882::-;25819:17;26240:3;26233:4;26227:11;26223:21;26216:28;;26327:3;26321:4;26314:17;26427:3;26863:5;26995:1;26990:3;26986:11;26979:18;;27134:2;27128:4;27124:13;27120:2;27116:22;27111:3;27103:36;27176:2;27170:4;27166:13;27158:21;;26760:661;27192:4;26760:661;;;27360:1;27355:3;27351:11;27344:18;;27404:2;27398:4;27394:13;27390:2;27386:22;27381:3;27373:36;27277:2;27271:4;27267:13;27259:21;;26760:661;;;26764:427;27453:3;27448;27444:13;27562:2;27557:3;27553:12;27546:19;;27619:6;27614:3;27607:19;25858:1779;;25762:1882;;;:::o;25178:182::-;;;;;:::o;18456:142::-;18514:14;18575:5;18565:15;;18456: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:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:118::-;5602:24;5620:5;5602:24;:::i;:::-;5597:3;5590:37;5515:118;;:::o;5639:222::-;5732:4;5770:2;5759:9;5755:18;5747:26;;5783:71;5851:1;5840:9;5836:17;5827:6;5783:71;:::i;:::-;5639:222;;;;:::o;5867:619::-;5944:6;5952;5960;6009:2;5997:9;5988:7;5984:23;5980:32;5977:119;;;6015:79;;:::i;:::-;5977:119;6135:1;6160:53;6205:7;6196:6;6185:9;6181:22;6160:53;:::i;:::-;6150:63;;6106:117;6262:2;6288:53;6333:7;6324:6;6313:9;6309:22;6288:53;:::i;:::-;6278:63;;6233:118;6390:2;6416:53;6461:7;6452:6;6441:9;6437:22;6416:53;:::i;:::-;6406:63;;6361:118;5867:619;;;;;:::o;6492:117::-;6601:1;6598;6591:12;6615:117;6724:1;6721;6714:12;6738:180;6786:77;6783:1;6776:88;6883:4;6880:1;6873:15;6907:4;6904:1;6897:15;6924:281;7007:27;7029:4;7007:27;:::i;:::-;6999:6;6995:40;7137:6;7125:10;7122:22;7101:18;7089:10;7086:34;7083:62;7080:88;;;7148:18;;:::i;:::-;7080:88;7188:10;7184:2;7177:22;6967:238;6924:281;;:::o;7211:129::-;7245:6;7272:20;;:::i;:::-;7262:30;;7301:33;7329:4;7321:6;7301:33;:::i;:::-;7211:129;;;:::o;7346:308::-;7408:4;7498:18;7490:6;7487:30;7484:56;;;7520:18;;:::i;:::-;7484:56;7558:29;7580:6;7558:29;:::i;:::-;7550:37;;7642:4;7636;7632:15;7624:23;;7346:308;;;:::o;7660:146::-;7757:6;7752:3;7747;7734:30;7798:1;7789:6;7784:3;7780:16;7773:27;7660:146;;;:::o;7812:425::-;7890:5;7915:66;7931:49;7973:6;7931:49;:::i;:::-;7915:66;:::i;:::-;7906:75;;8004:6;7997:5;7990:21;8042:4;8035:5;8031:16;8080:3;8071:6;8066:3;8062:16;8059:25;8056:112;;;8087:79;;:::i;:::-;8056:112;8177:54;8224:6;8219:3;8214;8177:54;:::i;:::-;7896:341;7812:425;;;;;:::o;8257:340::-;8313:5;8362:3;8355:4;8347:6;8343:17;8339:27;8329:122;;8370:79;;:::i;:::-;8329:122;8487:6;8474:20;8512:79;8587:3;8579:6;8572:4;8564:6;8560:17;8512:79;:::i;:::-;8503:88;;8319:278;8257:340;;;;:::o;8603:509::-;8672:6;8721:2;8709:9;8700:7;8696:23;8692:32;8689:119;;;8727:79;;:::i;:::-;8689:119;8875:1;8864:9;8860:17;8847:31;8905:18;8897:6;8894:30;8891:117;;;8927:79;;:::i;:::-;8891:117;9032:63;9087:7;9078:6;9067:9;9063:22;9032:63;:::i;:::-;9022:73;;8818:287;8603:509;;;;:::o;9118:329::-;9177:6;9226:2;9214:9;9205:7;9201:23;9197:32;9194:119;;;9232:79;;:::i;:::-;9194:119;9352:1;9377:53;9422:7;9413:6;9402:9;9398:22;9377:53;:::i;:::-;9367:63;;9323:117;9118:329;;;;:::o;9453:116::-;9523:21;9538:5;9523:21;:::i;:::-;9516:5;9513:32;9503:60;;9559:1;9556;9549:12;9503:60;9453:116;:::o;9575:133::-;9618:5;9656:6;9643:20;9634:29;;9672:30;9696:5;9672:30;:::i;:::-;9575:133;;;;:::o;9714:468::-;9779:6;9787;9836:2;9824:9;9815:7;9811:23;9807:32;9804:119;;;9842:79;;:::i;:::-;9804:119;9962:1;9987:53;10032:7;10023:6;10012:9;10008:22;9987:53;:::i;:::-;9977:63;;9933:117;10089:2;10115:50;10157:7;10148:6;10137:9;10133:22;10115:50;:::i;:::-;10105:60;;10060:115;9714:468;;;;;:::o;10188:307::-;10249:4;10339:18;10331:6;10328:30;10325:56;;;10361:18;;:::i;:::-;10325:56;10399:29;10421:6;10399:29;:::i;:::-;10391:37;;10483:4;10477;10473:15;10465:23;;10188:307;;;:::o;10501:423::-;10578:5;10603:65;10619:48;10660:6;10619:48;:::i;:::-;10603:65;:::i;:::-;10594:74;;10691:6;10684:5;10677:21;10729:4;10722:5;10718:16;10767:3;10758:6;10753:3;10749:16;10746:25;10743:112;;;10774:79;;:::i;:::-;10743:112;10864:54;10911:6;10906:3;10901;10864:54;:::i;:::-;10584:340;10501:423;;;;;:::o;10943:338::-;10998:5;11047:3;11040:4;11032:6;11028:17;11024:27;11014:122;;11055:79;;:::i;:::-;11014:122;11172:6;11159:20;11197:78;11271:3;11263:6;11256:4;11248:6;11244:17;11197:78;:::i;:::-;11188:87;;11004:277;10943:338;;;;:::o;11287:943::-;11382:6;11390;11398;11406;11455:3;11443:9;11434:7;11430:23;11426:33;11423:120;;;11462:79;;:::i;:::-;11423:120;11582:1;11607:53;11652:7;11643:6;11632:9;11628:22;11607:53;:::i;:::-;11597:63;;11553:117;11709:2;11735:53;11780:7;11771:6;11760:9;11756:22;11735:53;:::i;:::-;11725:63;;11680:118;11837:2;11863:53;11908:7;11899:6;11888:9;11884:22;11863:53;:::i;:::-;11853:63;;11808:118;11993:2;11982:9;11978:18;11965:32;12024:18;12016:6;12013:30;12010:117;;;12046:79;;:::i;:::-;12010:117;12151:62;12205:7;12196:6;12185:9;12181:22;12151:62;:::i;:::-;12141:72;;11936:287;11287:943;;;;;;;:::o;12236:474::-;12304:6;12312;12361:2;12349:9;12340:7;12336:23;12332:32;12329:119;;;12367:79;;:::i;:::-;12329:119;12487:1;12512:53;12557:7;12548:6;12537:9;12533:22;12512:53;:::i;:::-;12502:63;;12458:117;12614:2;12640:53;12685:7;12676:6;12665:9;12661:22;12640:53;:::i;:::-;12630:63;;12585:118;12236:474;;;;;:::o;12716:159::-;12856:11;12852:1;12844:6;12840:14;12833:35;12716:159;:::o;12881:365::-;13023:3;13044:66;13108:1;13103:3;13044:66;:::i;:::-;13037:73;;13119:93;13208:3;13119:93;:::i;:::-;13237:2;13232:3;13228:12;13221:19;;12881:365;;;:::o;13252:419::-;13418:4;13456:2;13445:9;13441:18;13433:26;;13505:9;13499:4;13495:20;13491:1;13480:9;13476:17;13469:47;13533:131;13659:4;13533:131;:::i;:::-;13525:139;;13252:419;;;:::o;13677:180::-;13725:77;13722:1;13715:88;13822:4;13819:1;13812:15;13846:4;13843:1;13836:15;13863:320;13907:6;13944:1;13938:4;13934:12;13924:22;;13991:1;13985:4;13981:12;14012:18;14002:81;;14068:4;14060:6;14056:17;14046:27;;14002:81;14130:2;14122:6;14119:14;14099:18;14096:38;14093:84;;14149:18;;:::i;:::-;14093:84;13914:269;13863:320;;;:::o;14189:141::-;14238:4;14261:3;14253:11;;14284:3;14281:1;14274:14;14318:4;14315:1;14305:18;14297:26;;14189:141;;;:::o;14336:93::-;14373:6;14420:2;14415;14408:5;14404:14;14400:23;14390:33;;14336:93;;;:::o;14435:107::-;14479:8;14529:5;14523:4;14519:16;14498:37;;14435:107;;;;:::o;14548:393::-;14617:6;14667:1;14655:10;14651:18;14690:97;14720:66;14709:9;14690:97;:::i;:::-;14808:39;14838:8;14827:9;14808:39;:::i;:::-;14796:51;;14880:4;14876:9;14869:5;14865:21;14856:30;;14929:4;14919:8;14915:19;14908:5;14905:30;14895:40;;14624:317;;14548:393;;;;;:::o;14947:60::-;14975:3;14996:5;14989:12;;14947:60;;;:::o;15013:142::-;15063:9;15096:53;15114:34;15123:24;15141:5;15123:24;:::i;:::-;15114:34;:::i;:::-;15096:53;:::i;:::-;15083:66;;15013:142;;;:::o;15161:75::-;15204:3;15225:5;15218:12;;15161:75;;;:::o;15242:269::-;15352:39;15383:7;15352:39;:::i;:::-;15413:91;15462:41;15486:16;15462:41;:::i;:::-;15454:6;15447:4;15441:11;15413:91;:::i;:::-;15407:4;15400:105;15318:193;15242:269;;;:::o;15517:73::-;15562:3;15517:73;:::o;15596:189::-;15673:32;;:::i;:::-;15714:65;15772:6;15764;15758:4;15714:65;:::i;:::-;15649:136;15596:189;;:::o;15791:186::-;15851:120;15868:3;15861:5;15858:14;15851:120;;;15922:39;15959:1;15952:5;15922:39;:::i;:::-;15895:1;15888:5;15884:13;15875:22;;15851:120;;;15791:186;;:::o;15983:543::-;16084:2;16079:3;16076:11;16073:446;;;16118:38;16150:5;16118:38;:::i;:::-;16202:29;16220:10;16202:29;:::i;:::-;16192:8;16188:44;16385:2;16373:10;16370:18;16367:49;;;16406:8;16391:23;;16367:49;16429:80;16485:22;16503:3;16485:22;:::i;:::-;16475:8;16471:37;16458:11;16429:80;:::i;:::-;16088:431;;16073:446;15983:543;;;:::o;16532:117::-;16586:8;16636:5;16630:4;16626:16;16605:37;;16532:117;;;;:::o;16655:169::-;16699:6;16732:51;16780:1;16776:6;16768:5;16765:1;16761:13;16732:51;:::i;:::-;16728:56;16813:4;16807;16803:15;16793:25;;16706:118;16655:169;;;;:::o;16829:295::-;16905:4;17051:29;17076:3;17070:4;17051:29;:::i;:::-;17043:37;;17113:3;17110:1;17106:11;17100:4;17097:21;17089:29;;16829:295;;;;:::o;17129:1395::-;17246:37;17279:3;17246:37;:::i;:::-;17348:18;17340:6;17337:30;17334:56;;;17370:18;;:::i;:::-;17334:56;17414:38;17446:4;17440:11;17414:38;:::i;:::-;17499:67;17559:6;17551;17545:4;17499:67;:::i;:::-;17593:1;17617:4;17604:17;;17649:2;17641:6;17638:14;17666:1;17661:618;;;;18323:1;18340:6;18337:77;;;18389:9;18384:3;18380:19;18374:26;18365:35;;18337:77;18440:67;18500:6;18493:5;18440:67;:::i;:::-;18434:4;18427:81;18296:222;17631:887;;17661:618;17713:4;17709:9;17701:6;17697:22;17747:37;17779:4;17747:37;:::i;:::-;17806:1;17820:208;17834:7;17831:1;17828:14;17820:208;;;17913:9;17908:3;17904:19;17898:26;17890:6;17883:42;17964:1;17956:6;17952:14;17942:24;;18011:2;18000:9;17996:18;17983:31;;17857:4;17854:1;17850:12;17845:17;;17820:208;;;18056:6;18047:7;18044:19;18041:179;;;18114:9;18109:3;18105:19;18099:26;18157:48;18199:4;18191:6;18187:17;18176:9;18157:48;:::i;:::-;18149:6;18142:64;18064:156;18041:179;18266:1;18262;18254:6;18250:14;18246:22;18240:4;18233:36;17668:611;;;17631:887;;17221:1303;;;17129:1395;;:::o;18530:159::-;18670:11;18666:1;18658:6;18654:14;18647:35;18530:159;:::o;18695:365::-;18837:3;18858:66;18922:1;18917:3;18858:66;:::i;:::-;18851:73;;18933:93;19022:3;18933:93;:::i;:::-;19051:2;19046:3;19042:12;19035:19;;18695:365;;;:::o;19066:419::-;19232:4;19270:2;19259:9;19255:18;19247:26;;19319:9;19313:4;19309:20;19305:1;19294:9;19290:17;19283:47;19347:131;19473:4;19347:131;:::i;:::-;19339:139;;19066:419;;;:::o;19491:180::-;19539:77;19536:1;19529:88;19636:4;19633:1;19626:15;19660:4;19657:1;19650:15;19677:191;19717:3;19736:20;19754:1;19736:20;:::i;:::-;19731:25;;19770:20;19788:1;19770:20;:::i;:::-;19765:25;;19813:1;19810;19806:9;19799:16;;19834:3;19831:1;19828:10;19825:36;;;19841:18;;:::i;:::-;19825:36;19677:191;;;;:::o;19874:167::-;20014:19;20010:1;20002:6;19998:14;19991:43;19874:167;:::o;20047:366::-;20189:3;20210:67;20274:2;20269:3;20210:67;:::i;:::-;20203:74;;20286:93;20375:3;20286:93;:::i;:::-;20404:2;20399:3;20395:12;20388:19;;20047:366;;;:::o;20419:419::-;20585:4;20623:2;20612:9;20608:18;20600:26;;20672:9;20666:4;20662:20;20658:1;20647:9;20643:17;20636:47;20700:131;20826:4;20700:131;:::i;:::-;20692:139;;20419:419;;;:::o;20844:164::-;20984:16;20980:1;20972:6;20968:14;20961:40;20844:164;:::o;21014:366::-;21156:3;21177:67;21241:2;21236:3;21177:67;:::i;:::-;21170:74;;21253:93;21342:3;21253:93;:::i;:::-;21371:2;21366:3;21362:12;21355:19;;21014:366;;;:::o;21386:419::-;21552:4;21590:2;21579:9;21575:18;21567:26;;21639:9;21633:4;21629:20;21625:1;21614:9;21610:17;21603:47;21667:131;21793:4;21667:131;:::i;:::-;21659:139;;21386:419;;;:::o;21811:158::-;21951:10;21947:1;21939:6;21935:14;21928:34;21811:158;:::o;21975:365::-;22117:3;22138:66;22202:1;22197:3;22138:66;:::i;:::-;22131:73;;22213:93;22302:3;22213:93;:::i;:::-;22331:2;22326:3;22322:12;22315:19;;21975:365;;;:::o;22346:419::-;22512:4;22550:2;22539:9;22535:18;22527:26;;22599:9;22593:4;22589:20;22585:1;22574:9;22570:17;22563:47;22627:131;22753:4;22627:131;:::i;:::-;22619:139;;22346:419;;;:::o;22771:410::-;22811:7;22834:20;22852:1;22834:20;:::i;:::-;22829:25;;22868:20;22886:1;22868:20;:::i;:::-;22863:25;;22923:1;22920;22916:9;22945:30;22963:11;22945:30;:::i;:::-;22934:41;;23124:1;23115:7;23111:15;23108:1;23105:22;23085:1;23078:9;23058:83;23035:139;;23154:18;;:::i;:::-;23035:139;22819:362;22771:410;;;;:::o;23187:162::-;23327:14;23323:1;23315:6;23311:14;23304:38;23187:162;:::o;23355:366::-;23497:3;23518:67;23582:2;23577:3;23518:67;:::i;:::-;23511:74;;23594:93;23683:3;23594:93;:::i;:::-;23712:2;23707:3;23703:12;23696:19;;23355:366;;;:::o;23727:419::-;23893:4;23931:2;23920:9;23916:18;23908:26;;23980:9;23974:4;23970:20;23966:1;23955:9;23951:17;23944:47;24008:131;24134:4;24008:131;:::i;:::-;24000:139;;23727:419;;;:::o;24152:148::-;24254:11;24291:3;24276:18;;24152:148;;;;:::o;24306:161::-;24446:9;24442:1;24434:6;24430:14;24423:33;24306:161;:::o;24477:416::-;24637:3;24662:84;24744:1;24739:3;24662:84;:::i;:::-;24655:91;;24759:93;24848:3;24759:93;:::i;:::-;24881:1;24876:3;24872:11;24865:18;;24477:416;;;:::o;24903:410::-;25009:3;25041:39;25074:5;25041:39;:::i;:::-;25100:89;25182:6;25177:3;25100:89;:::i;:::-;25093:96;;25202:65;25260:6;25255:3;25248:4;25241:5;25237:16;25202:65;:::i;:::-;25296:6;25291:3;25287:16;25280:23;;25013:300;24903:410;;;;:::o;25323:159::-;25467:3;25463:1;25455:6;25451:14;25444:27;25323:159;:::o;25492:416::-;25652:3;25677:84;25759:1;25754:3;25677:84;:::i;:::-;25670:91;;25774:93;25863:3;25774:93;:::i;:::-;25896:1;25891:3;25887:11;25880:18;;25492:416;;;:::o;25918:163::-;26062:7;26058:1;26050:6;26046:14;26039:31;25918:163;:::o;26091:416::-;26251:3;26276:84;26358:1;26353:3;26276:84;:::i;:::-;26269:91;;26373:93;26462:3;26373:93;:::i;:::-;26495:1;26490:3;26486:11;26479:18;;26091:416;;;:::o;26517:1261::-;27000:3;27026:148;27170:3;27026:148;:::i;:::-;27019:155;;27195:95;27286:3;27277:6;27195:95;:::i;:::-;27188:102;;27311:148;27455:3;27311:148;:::i;:::-;27304:155;;27480:95;27571:3;27562:6;27480:95;:::i;:::-;27473:102;;27596:148;27740:3;27596:148;:::i;:::-;27589:155;;27765:3;27758:10;;26517:1261;;;;;:::o

Swarm Source

ipfs://1643061ff946a705e99715c05d1fb127d9a85fc3258595a1c2e45033733f1eef
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.