ETH Price: $2,974.61 (+3.83%)
Gas: 1 Gwei

Token

smolfrens (sf)
 

Overview

Max Total Supply

285 sf

Holders

63

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hopp.eth
Balance
1 sf
0xad86534d7cd8b571918427b527afa6d1991abad8
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:
smolfrens

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

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

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

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

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

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

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

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

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

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

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

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

// File: contracts/smolfren.sol



pragma solidity >=0.8.9 <0.9.0;





contract smolfrens is ERC721A, Ownable, ReentrancyGuard {
    
    using Strings for uint256;
    
    //it's cco summer and we are throwing it back to the summer of 21 with mfers. yup 22 1/1 for summer of 22
    uint256 private maxTotalTokens;
    
    //boring stuff
    string private _currentBaseURI;
    
    //How many reserved we keep. 
    uint private _reservedMints;
    
    //the max amount of reserved for the dev wallter for stuff and things.
    uint private maxReservedMints = 222;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddress;
    
    //current state os sale
    enum State {WeAreFrens, YouWishYouCouldMint}

    State private saleState_;
    
    //declaring initial values for variables
    constructor() ERC721A('smolfrens', 'sf') {
        maxTotalTokens = 2022;

        _currentBaseURI = "ipfs://QmV7kgsn9ETrzfH1aYNcyfPa6NsUW8UJPXzjgn7THa68yM/";
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //if we mess up, let's us fix it
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function setSaleState(uint newSaleState) public onlyOwner {
        require(newSaleState < 2, "Invalid Sale State!");
        if (newSaleState == 0) {
            saleState_ = State.WeAreFrens;
        }
        else {
            saleState_ = State.YouWishYouCouldMint;
        }
    }

    //mint a @param number of NFTs in public sale
    function mint() public nonReentrant {
        require(msg.sender == tx.origin, "Sender is not the same as origin!");
        require(saleState_ == State.YouWishYouCouldMint, "Public Sale in not open yet!");
        require(totalSupply() < maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddress[msg.sender] == 0, "Wallet has already have minted an NFT!");

        _safeMint(msg.sender, 1);
        mintsPerAddress[msg.sender] += 1;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");

        tokenId_ += 1;
        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId_.toString(), ".json")); 
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");

        _safeMint(recipient, number);
        mintsPerAddress[recipient] += number;
        _reservedMints += number; 
        
    }
    
    //burn 
    function burnTokens() public onlyOwner {
        maxTotalTokens = totalSupply();
    }
    
    //
    function accountBalance() public onlyOwner view returns(uint) {
        return address(this).balance;
    }
    
    //retrieve all funds recieved from minting
    function withdraw() public onlyOwner {
        uint256 balance = accountBalance();
        require(balance > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(msg.sender), balance); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }
    
    //see current state of sale
    //see the current state of the sale
    function saleState() public view returns(State){
        return saleState_;
    }
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","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":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","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":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum smolfrens.State","name":"","type":"uint8"}],"stateMutability":"view","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":"newSaleState","type":"uint256"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260de600d553480156200001657600080fd5b506040518060400160405280600981526020017f736d6f6c6672656e7300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f736600000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200009b92919062000209565b508060039080519060200190620000b492919062000209565b50620000c56200013660201b60201c565b6000819055505050620000ed620000e16200013b60201b60201c565b6200014360201b60201c565b60016009819055506107e6600a8190555060405180606001604052806036815260200162003a3760369139600b90805190602001906200012f92919062000209565b506200031d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021790620002e8565b90600052602060002090601f0160209004810192826200023b576000855562000287565b82601f106200025657805160ff191683800117855562000287565b8280016001018555821562000287579182015b828111156200028657825182559160200191906001019062000269565b5b5090506200029691906200029a565b5090565b5b80821115620002b55760008160009055506001016200029b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030157607f821691505b602082108103620003175762000316620002b9565b5b50919050565b61370a806200032d6000396000f3fe6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce91906125cc565b610651565b6040516101e09190612614565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b91906126c8565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d9190612720565b610801565b60405161025f919061278e565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a9190612720565b61087d565b005b34801561029d57600080fd5b506102b860048036038101906102b391906127d5565b6109a3565b005b3480156102c657600080fd5b506102cf610b49565b005b3480156102dd57600080fd5b506102e6610dcc565b6040516102f39190612824565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061283f565b610de3565b005b34801561033157600080fd5b5061034c6004803603810190610347919061287f565b610f2e565b005b34801561035a57600080fd5b50610375600480360381019061037091906128d2565b610f3e565b6040516103829190612824565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612a34565b610f56565b005b3480156103c057600080fd5b506103c9610fec565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061287f565b6110c4565b005b34801561040057600080fd5b506104096110e4565b6040516104169190612824565b60405180910390f35b34801561042b57600080fd5b50610434611177565b6040516104419190612af4565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612720565b61118e565b60405161047e919061278e565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906128d2565b6111a0565b6040516104bb9190612824565b60405180910390f35b3480156104d057600080fd5b506104d9611258565b005b3480156104e757600080fd5b506104f06112e0565b6040516104fd919061278e565b60405180910390f35b34801561051257600080fd5b5061051b61130a565b60405161052891906126c8565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612b3b565b61139c565b005b34801561056657600080fd5b5061056f611513565b60405161057c9190612824565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612c1c565b611597565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612720565b61160a565b6040516105e291906126c8565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612c9f565b6116a1565b60405161061f9190612614565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906128d2565b611735565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f290612d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90612d0e565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d61182c565b73ffffffffffffffffffffffffffffffffffffffff1661079b6112e0565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612d8b565b60405180910390fd5b6107f9610dcc565b600a81905550565b600061080c82611834565b610842576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61088561182c565b73ffffffffffffffffffffffffffffffffffffffff166108a36112e0565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612d8b565b60405180910390fd5b6002811061093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390612df7565b60405180910390fd5b60008103610974576000600f60006101000a81548160ff0219169083600181111561096a57610969612a7d565b5b02179055506109a0565b6001600f60006101000a81548160ff0219169083600181111561099a57610999612a7d565b5b02179055505b50565b60006109ae82611893565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a15576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3461195f565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b61195f565b6116a1565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590612e63565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90612ef5565b60405180910390fd5b600180811115610c1757610c16612a7d565b5b600f60009054906101000a900460ff166001811115610c3957610c38612a7d565b5b14610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612f61565b60405180910390fd5b600c54600d54610c899190612fb0565b600a54610c969190612fb0565b610c9e610dcc565b10610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590613030565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906130c2565b60405180910390fd5b610d6b336001611967565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbb91906130e2565b925050819055506001600981905550565b6000610dd6611985565b6001546000540303905090565b610deb61182c565b73ffffffffffffffffffffffffffffffffffffffff16610e096112e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690612d8b565b60405180910390fd5b600d5482600c54610e7091906130e2565b1115610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906131aa565b60405180910390fd5b610ebb8183611967565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0a91906130e2565b9250508190555081600c6000828254610f2391906130e2565b925050819055505050565b610f3983838361198a565b505050565b600e6020528060005260406000206000915090505481565b610f5e61182c565b73ffffffffffffffffffffffffffffffffffffffff16610f7c6112e0565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612d8b565b60405180910390fd5b80600b9080519060200190610fe89291906124bd565b5050565b610ff461182c565b73ffffffffffffffffffffffffffffffffffffffff166110126112e0565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612d8b565b60405180910390fd5b6000611072611513565b9050600081116110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061323c565b60405180910390fd5b6110c13382611d31565b50565b6110df83838360405180602001604052806000815250611597565b505050565b60006110ee61182c565b73ffffffffffffffffffffffffffffffffffffffff1661110c6112e0565b73ffffffffffffffffffffffffffffffffffffffff1614611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612d8b565b60405180910390fd5b600c54600d546111729190612fb0565b905090565b6000600f60009054906101000a900460ff16905090565b600061119982611893565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611207576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61126061182c565b73ffffffffffffffffffffffffffffffffffffffff1661127e6112e0565b73ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90612d8b565b60405180910390fd5b6112de6000611de2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461131990612d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461134590612d0e565b80156113925780601f1061136757610100808354040283529160200191611392565b820191906000526020600020905b81548152906001019060200180831161137557829003601f168201915b5050505050905090565b6113a461195f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611408576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061141561195f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114c261195f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115079190612614565b60405180910390a35050565b600061151d61182c565b73ffffffffffffffffffffffffffffffffffffffff1661153b6112e0565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890612d8b565b60405180910390fd5b47905090565b6115a284848461198a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611604576115cd84848484611ea8565b611603576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061161582611834565b611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b906132ce565b60405180910390fd5b60018261166191906130e2565b9150600061166d611ff8565b9050806116798461208a565b60405160200161168a929190613376565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173d61182c565b73ffffffffffffffffffffffffffffffffffffffff1661175b6112e0565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890612d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613417565b60405180910390fd5b61182981611de2565b50565b600033905090565b60008161183f611985565b1115801561184e575060005482105b801561188c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118a2611985565b11611928576000548110156119275760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611925575b6000810361191b5760046000836001900393508381526020019081526020016000205490506118f1565b809250505061195a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b6119818282604051806020016040528060008152506121ea565b5050565b600090565b600061199582611893565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119fc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a1d61195f565b73ffffffffffffffffffffffffffffffffffffffff161480611a4c5750611a4b85611a4661195f565b6116a1565b5b80611a915750611a5a61195f565b73ffffffffffffffffffffffffffffffffffffffff16611a7984610801565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611aca576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b3d858585600161249d565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c3a866124a3565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611cc25760006001840190506000600460008381526020019081526020016000205403611cc0576000548114611cbf578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2a85858560016124ad565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d5790613468565b60006040518083038185875af1925050503d8060008114611d94576040519150601f19603f3d011682016040523d82523d6000602084013e611d99565b606091505b5050905080611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd4906134c9565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ece61195f565b8786866040518563ffffffff1660e01b8152600401611ef0949392919061353e565b6020604051808303816000875af1925050508015611f2c57506040513d601f19601f82011682018060405250810190611f29919061359f565b60015b611fa5573d8060008114611f5c576040519150601f19603f3d011682016040523d82523d6000602084013e611f61565b606091505b506000815103611f9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461200790612d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461203390612d0e565b80156120805780601f1061205557610100808354040283529160200191612080565b820191906000526020600020905b81548152906001019060200180831161206357829003601f168201915b5050505050905090565b6060600082036120d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e5565b600082905060005b600082146121035780806120ec906135cc565b915050600a826120fc9190613643565b91506120d9565b60008167ffffffffffffffff81111561211f5761211e612909565b5b6040519080825280601f01601f1916602001820160405280156121515781602001600182028036833780820191505090505b5090505b600085146121de5760018261216a9190612fb0565b9150600a856121799190613674565b603061218591906130e2565b60f81b81838151811061219b5761219a6136a5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d79190613643565b9450612155565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612256576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612290576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229d600085838661249d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612302600185146124b3565b901b60a042901b612312866124a3565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612416575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c66000878480600101955087611ea8565b6123fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061235757826000541461241157600080fd5b612481565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612417575b81600081905550505061249760008583866124ad565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b8280546124c990612d0e565b90600052602060002090601f0160209004810192826124eb5760008555612532565b82601f1061250457805160ff1916838001178555612532565b82800160010185558215612532579182015b82811115612531578251825591602001919060010190612516565b5b50905061253f9190612543565b5090565b5b8082111561255c576000816000905550600101612544565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125a981612574565b81146125b457600080fd5b50565b6000813590506125c6816125a0565b92915050565b6000602082840312156125e2576125e161256a565b5b60006125f0848285016125b7565b91505092915050565b60008115159050919050565b61260e816125f9565b82525050565b60006020820190506126296000830184612605565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561266957808201518184015260208101905061264e565b83811115612678576000848401525b50505050565b6000601f19601f8301169050919050565b600061269a8261262f565b6126a4818561263a565b93506126b481856020860161264b565b6126bd8161267e565b840191505092915050565b600060208201905081810360008301526126e2818461268f565b905092915050565b6000819050919050565b6126fd816126ea565b811461270857600080fd5b50565b60008135905061271a816126f4565b92915050565b6000602082840312156127365761273561256a565b5b60006127448482850161270b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127788261274d565b9050919050565b6127888161276d565b82525050565b60006020820190506127a3600083018461277f565b92915050565b6127b28161276d565b81146127bd57600080fd5b50565b6000813590506127cf816127a9565b92915050565b600080604083850312156127ec576127eb61256a565b5b60006127fa858286016127c0565b925050602061280b8582860161270b565b9150509250929050565b61281e816126ea565b82525050565b60006020820190506128396000830184612815565b92915050565b600080604083850312156128565761285561256a565b5b60006128648582860161270b565b9250506020612875858286016127c0565b9150509250929050565b6000806000606084860312156128985761289761256a565b5b60006128a6868287016127c0565b93505060206128b7868287016127c0565b92505060406128c88682870161270b565b9150509250925092565b6000602082840312156128e8576128e761256a565b5b60006128f6848285016127c0565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129418261267e565b810181811067ffffffffffffffff821117156129605761295f612909565b5b80604052505050565b6000612973612560565b905061297f8282612938565b919050565b600067ffffffffffffffff82111561299f5761299e612909565b5b6129a88261267e565b9050602081019050919050565b82818337600083830152505050565b60006129d76129d284612984565b612969565b9050828152602081018484840111156129f3576129f2612904565b5b6129fe8482856129b5565b509392505050565b600082601f830112612a1b57612a1a6128ff565b5b8135612a2b8482602086016129c4565b91505092915050565b600060208284031215612a4a57612a4961256a565b5b600082013567ffffffffffffffff811115612a6857612a6761256f565b5b612a7484828501612a06565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612abd57612abc612a7d565b5b50565b6000819050612ace82612aac565b919050565b6000612ade82612ac0565b9050919050565b612aee81612ad3565b82525050565b6000602082019050612b096000830184612ae5565b92915050565b612b18816125f9565b8114612b2357600080fd5b50565b600081359050612b3581612b0f565b92915050565b60008060408385031215612b5257612b5161256a565b5b6000612b60858286016127c0565b9250506020612b7185828601612b26565b9150509250929050565b600067ffffffffffffffff821115612b9657612b95612909565b5b612b9f8261267e565b9050602081019050919050565b6000612bbf612bba84612b7b565b612969565b905082815260208101848484011115612bdb57612bda612904565b5b612be68482856129b5565b509392505050565b600082601f830112612c0357612c026128ff565b5b8135612c13848260208601612bac565b91505092915050565b60008060008060808587031215612c3657612c3561256a565b5b6000612c44878288016127c0565b9450506020612c55878288016127c0565b9350506040612c668782880161270b565b925050606085013567ffffffffffffffff811115612c8757612c8661256f565b5b612c9387828801612bee565b91505092959194509250565b60008060408385031215612cb657612cb561256a565b5b6000612cc4858286016127c0565b9250506020612cd5858286016127c0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d2657607f821691505b602082108103612d3957612d38612cdf565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d7560208361263a565b9150612d8082612d3f565b602082019050919050565b60006020820190508181036000830152612da481612d68565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b6000612de160138361263a565b9150612dec82612dab565b602082019050919050565b60006020820190508181036000830152612e1081612dd4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e4d601f8361263a565b9150612e5882612e17565b602082019050919050565b60006020820190508181036000830152612e7c81612e40565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612edf60218361263a565b9150612eea82612e83565b604082019050919050565b60006020820190508181036000830152612f0e81612ed2565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612f4b601c8361263a565b9150612f5682612f15565b602082019050919050565b60006020820190508181036000830152612f7a81612f3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fbb826126ea565b9150612fc6836126ea565b925082821015612fd957612fd8612f81565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b600061301a601e8361263a565b915061302582612fe4565b602082019050919050565b600060208201905081810360008301526130498161300d565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b60006130ac60268361263a565b91506130b782613050565b604082019050919050565b600060208201905081810360008301526130db8161309f565b9050919050565b60006130ed826126ea565b91506130f8836126ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561312d5761312c612f81565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b600061319460278361263a565b915061319f82613138565b604082019050919050565b600060208201905081810360008301526131c381613187565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b600061322660228361263a565b9150613231826131ca565b604082019050919050565b6000602082019050818103600083015261325581613219565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132b8602f8361263a565b91506132c38261325c565b604082019050919050565b600060208201905081810360008301526132e7816132ab565b9050919050565b600081905092915050565b60006133048261262f565b61330e81856132ee565b935061331e81856020860161264b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133606005836132ee565b915061336b8261332a565b600582019050919050565b600061338282856132f9565b915061338e82846132f9565b915061339982613353565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061340160268361263a565b915061340c826133a5565b604082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b600081905092915050565b50565b6000613452600083613437565b915061345d82613442565b600082019050919050565b600061347382613445565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006134b360148361263a565b91506134be8261347d565b602082019050919050565b600060208201905081810360008301526134e2816134a6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613510826134e9565b61351a81856134f4565b935061352a81856020860161264b565b6135338161267e565b840191505092915050565b6000608082019050613553600083018761277f565b613560602083018661277f565b61356d6040830185612815565b818103606083015261357f8184613505565b905095945050505050565b600081519050613599816125a0565b92915050565b6000602082840312156135b5576135b461256a565b5b60006135c38482850161358a565b91505092915050565b60006135d7826126ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361360957613608612f81565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061364e826126ea565b9150613659836126ea565b92508261366957613668613614565b5b828204905092915050565b600061367f826126ea565b915061368a836126ea565b92508261369a57613699613614565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209f6b345cefd1f29e9cfb80b9c7ef8734255688600fa4e43f2ef7aa3696f7e4d564736f6c634300080e0033697066733a2f2f516d56376b67736e394554727a66483161594e6379665061364e73555738554a50587a6a676e375448613638794d2f

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806342842e0e116100ec57806395d89b411161008a578063b88d4fde11610064578063b88d4fde14610585578063c87b56dd146105ae578063e985e9c5146105eb578063f2fde38b14610628576101a7565b806395d89b4114610506578063a22cb46514610531578063b0a1c1c41461055a576101a7565b80636352211e116100c65780636352211e1461044a57806370a0823114610487578063715018a6146104c45780638da5cb5b146104db576101a7565b806342842e0e146103cb5780634520e916146103f4578063603f4d521461041f576101a7565b80631249c58b1161015957806323b872dd1161013357806323b872dd146103255780633023eba61461034e57806339a0c6f91461038b5780633ccfd60b146103b4576101a7565b80631249c58b146102ba57806318160ddd146102d157806318df6403146102fc576101a7565b806301ffc9a7146101ac57806306fdde03146101e957806308003f7814610214578063081812fc1461022b578063084c408814610268578063095ea7b314610291576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101d360048036038101906101ce91906125cc565b610651565b6040516101e09190612614565b60405180910390f35b3480156101f557600080fd5b506101fe6106e3565b60405161020b91906126c8565b60405180910390f35b34801561022057600080fd5b50610229610775565b005b34801561023757600080fd5b50610252600480360381019061024d9190612720565b610801565b60405161025f919061278e565b60405180910390f35b34801561027457600080fd5b5061028f600480360381019061028a9190612720565b61087d565b005b34801561029d57600080fd5b506102b860048036038101906102b391906127d5565b6109a3565b005b3480156102c657600080fd5b506102cf610b49565b005b3480156102dd57600080fd5b506102e6610dcc565b6040516102f39190612824565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e919061283f565b610de3565b005b34801561033157600080fd5b5061034c6004803603810190610347919061287f565b610f2e565b005b34801561035a57600080fd5b50610375600480360381019061037091906128d2565b610f3e565b6040516103829190612824565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190612a34565b610f56565b005b3480156103c057600080fd5b506103c9610fec565b005b3480156103d757600080fd5b506103f260048036038101906103ed919061287f565b6110c4565b005b34801561040057600080fd5b506104096110e4565b6040516104169190612824565b60405180910390f35b34801561042b57600080fd5b50610434611177565b6040516104419190612af4565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190612720565b61118e565b60405161047e919061278e565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906128d2565b6111a0565b6040516104bb9190612824565b60405180910390f35b3480156104d057600080fd5b506104d9611258565b005b3480156104e757600080fd5b506104f06112e0565b6040516104fd919061278e565b60405180910390f35b34801561051257600080fd5b5061051b61130a565b60405161052891906126c8565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612b3b565b61139c565b005b34801561056657600080fd5b5061056f611513565b60405161057c9190612824565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190612c1c565b611597565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190612720565b61160a565b6040516105e291906126c8565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612c9f565b6116a1565b60405161061f9190612614565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906128d2565b611735565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ac57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106dc5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106f290612d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461071e90612d0e565b801561076b5780601f106107405761010080835404028352916020019161076b565b820191906000526020600020905b81548152906001019060200180831161074e57829003601f168201915b5050505050905090565b61077d61182c565b73ffffffffffffffffffffffffffffffffffffffff1661079b6112e0565b73ffffffffffffffffffffffffffffffffffffffff16146107f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e890612d8b565b60405180910390fd5b6107f9610dcc565b600a81905550565b600061080c82611834565b610842576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61088561182c565b73ffffffffffffffffffffffffffffffffffffffff166108a36112e0565b73ffffffffffffffffffffffffffffffffffffffff16146108f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f090612d8b565b60405180910390fd5b6002811061093c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093390612df7565b60405180910390fd5b60008103610974576000600f60006101000a81548160ff0219169083600181111561096a57610969612a7d565b5b02179055506109a0565b6001600f60006101000a81548160ff0219169083600181111561099a57610999612a7d565b5b02179055505b50565b60006109ae82611893565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a15576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a3461195f565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b61195f565b6116a1565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590612e63565b60405180910390fd5b60026009819055503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90612ef5565b60405180910390fd5b600180811115610c1757610c16612a7d565b5b600f60009054906101000a900460ff166001811115610c3957610c38612a7d565b5b14610c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7090612f61565b60405180910390fd5b600c54600d54610c899190612fb0565b600a54610c969190612fb0565b610c9e610dcc565b10610cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd590613030565b60405180910390fd5b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906130c2565b60405180910390fd5b610d6b336001611967565b6001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbb91906130e2565b925050819055506001600981905550565b6000610dd6611985565b6001546000540303905090565b610deb61182c565b73ffffffffffffffffffffffffffffffffffffffff16610e096112e0565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690612d8b565b60405180910390fd5b600d5482600c54610e7091906130e2565b1115610eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea8906131aa565b60405180910390fd5b610ebb8183611967565b81600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f0a91906130e2565b9250508190555081600c6000828254610f2391906130e2565b925050819055505050565b610f3983838361198a565b505050565b600e6020528060005260406000206000915090505481565b610f5e61182c565b73ffffffffffffffffffffffffffffffffffffffff16610f7c6112e0565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990612d8b565b60405180910390fd5b80600b9080519060200190610fe89291906124bd565b5050565b610ff461182c565b73ffffffffffffffffffffffffffffffffffffffff166110126112e0565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90612d8b565b60405180910390fd5b6000611072611513565b9050600081116110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061323c565b60405180910390fd5b6110c13382611d31565b50565b6110df83838360405180602001604052806000815250611597565b505050565b60006110ee61182c565b73ffffffffffffffffffffffffffffffffffffffff1661110c6112e0565b73ffffffffffffffffffffffffffffffffffffffff1614611162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115990612d8b565b60405180910390fd5b600c54600d546111729190612fb0565b905090565b6000600f60009054906101000a900460ff16905090565b600061119982611893565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611207576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61126061182c565b73ffffffffffffffffffffffffffffffffffffffff1661127e6112e0565b73ffffffffffffffffffffffffffffffffffffffff16146112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90612d8b565b60405180910390fd5b6112de6000611de2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461131990612d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461134590612d0e565b80156113925780601f1061136757610100808354040283529160200191611392565b820191906000526020600020905b81548152906001019060200180831161137557829003601f168201915b5050505050905090565b6113a461195f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611408576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061141561195f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114c261195f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115079190612614565b60405180910390a35050565b600061151d61182c565b73ffffffffffffffffffffffffffffffffffffffff1661153b6112e0565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890612d8b565b60405180910390fd5b47905090565b6115a284848461198a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611604576115cd84848484611ea8565b611603576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061161582611834565b611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b906132ce565b60405180910390fd5b60018261166191906130e2565b9150600061166d611ff8565b9050806116798461208a565b60405160200161168a929190613376565b604051602081830303815290604052915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61173d61182c565b73ffffffffffffffffffffffffffffffffffffffff1661175b6112e0565b73ffffffffffffffffffffffffffffffffffffffff16146117b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a890612d8b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611820576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181790613417565b60405180910390fd5b61182981611de2565b50565b600033905090565b60008161183f611985565b1115801561184e575060005482105b801561188c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806118a2611985565b11611928576000548110156119275760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611925575b6000810361191b5760046000836001900393508381526020019081526020016000205490506118f1565b809250505061195a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b6119818282604051806020016040528060008152506121ea565b5050565b600090565b600061199582611893565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119fc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611a1d61195f565b73ffffffffffffffffffffffffffffffffffffffff161480611a4c5750611a4b85611a4661195f565b6116a1565b5b80611a915750611a5a61195f565b73ffffffffffffffffffffffffffffffffffffffff16611a7984610801565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611aca576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611b30576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b3d858585600161249d565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611c3a866124a3565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611cc25760006001840190506000600460008381526020019081526020016000205403611cc0576000548114611cbf578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d2a85858560016124ad565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611d5790613468565b60006040518083038185875af1925050503d8060008114611d94576040519150601f19603f3d011682016040523d82523d6000602084013e611d99565b606091505b5050905080611ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd4906134c9565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ece61195f565b8786866040518563ffffffff1660e01b8152600401611ef0949392919061353e565b6020604051808303816000875af1925050508015611f2c57506040513d601f19601f82011682018060405250810190611f29919061359f565b60015b611fa5573d8060008114611f5c576040519150601f19603f3d011682016040523d82523d6000602084013e611f61565b606091505b506000815103611f9d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461200790612d0e565b80601f016020809104026020016040519081016040528092919081815260200182805461203390612d0e565b80156120805780601f1061205557610100808354040283529160200191612080565b820191906000526020600020905b81548152906001019060200180831161206357829003601f168201915b5050505050905090565b6060600082036120d1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121e5565b600082905060005b600082146121035780806120ec906135cc565b915050600a826120fc9190613643565b91506120d9565b60008167ffffffffffffffff81111561211f5761211e612909565b5b6040519080825280601f01601f1916602001820160405280156121515781602001600182028036833780820191505090505b5090505b600085146121de5760018261216a9190612fb0565b9150600a856121799190613674565b603061218591906130e2565b60f81b81838151811061219b5761219a6136a5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121d79190613643565b9450612155565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612256576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612290576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229d600085838661249d565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612302600185146124b3565b901b60a042901b612312866124a3565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612416575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c66000878480600101955087611ea8565b6123fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061235757826000541461241157600080fd5b612481565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612417575b81600081905550505061249760008583866124ad565b50505050565b50505050565b6000819050919050565b50505050565b6000819050919050565b8280546124c990612d0e565b90600052602060002090601f0160209004810192826124eb5760008555612532565b82601f1061250457805160ff1916838001178555612532565b82800160010185558215612532579182015b82811115612531578251825591602001919060010190612516565b5b50905061253f9190612543565b5090565b5b8082111561255c576000816000905550600101612544565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125a981612574565b81146125b457600080fd5b50565b6000813590506125c6816125a0565b92915050565b6000602082840312156125e2576125e161256a565b5b60006125f0848285016125b7565b91505092915050565b60008115159050919050565b61260e816125f9565b82525050565b60006020820190506126296000830184612605565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561266957808201518184015260208101905061264e565b83811115612678576000848401525b50505050565b6000601f19601f8301169050919050565b600061269a8261262f565b6126a4818561263a565b93506126b481856020860161264b565b6126bd8161267e565b840191505092915050565b600060208201905081810360008301526126e2818461268f565b905092915050565b6000819050919050565b6126fd816126ea565b811461270857600080fd5b50565b60008135905061271a816126f4565b92915050565b6000602082840312156127365761273561256a565b5b60006127448482850161270b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127788261274d565b9050919050565b6127888161276d565b82525050565b60006020820190506127a3600083018461277f565b92915050565b6127b28161276d565b81146127bd57600080fd5b50565b6000813590506127cf816127a9565b92915050565b600080604083850312156127ec576127eb61256a565b5b60006127fa858286016127c0565b925050602061280b8582860161270b565b9150509250929050565b61281e816126ea565b82525050565b60006020820190506128396000830184612815565b92915050565b600080604083850312156128565761285561256a565b5b60006128648582860161270b565b9250506020612875858286016127c0565b9150509250929050565b6000806000606084860312156128985761289761256a565b5b60006128a6868287016127c0565b93505060206128b7868287016127c0565b92505060406128c88682870161270b565b9150509250925092565b6000602082840312156128e8576128e761256a565b5b60006128f6848285016127c0565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129418261267e565b810181811067ffffffffffffffff821117156129605761295f612909565b5b80604052505050565b6000612973612560565b905061297f8282612938565b919050565b600067ffffffffffffffff82111561299f5761299e612909565b5b6129a88261267e565b9050602081019050919050565b82818337600083830152505050565b60006129d76129d284612984565b612969565b9050828152602081018484840111156129f3576129f2612904565b5b6129fe8482856129b5565b509392505050565b600082601f830112612a1b57612a1a6128ff565b5b8135612a2b8482602086016129c4565b91505092915050565b600060208284031215612a4a57612a4961256a565b5b600082013567ffffffffffffffff811115612a6857612a6761256f565b5b612a7484828501612a06565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60028110612abd57612abc612a7d565b5b50565b6000819050612ace82612aac565b919050565b6000612ade82612ac0565b9050919050565b612aee81612ad3565b82525050565b6000602082019050612b096000830184612ae5565b92915050565b612b18816125f9565b8114612b2357600080fd5b50565b600081359050612b3581612b0f565b92915050565b60008060408385031215612b5257612b5161256a565b5b6000612b60858286016127c0565b9250506020612b7185828601612b26565b9150509250929050565b600067ffffffffffffffff821115612b9657612b95612909565b5b612b9f8261267e565b9050602081019050919050565b6000612bbf612bba84612b7b565b612969565b905082815260208101848484011115612bdb57612bda612904565b5b612be68482856129b5565b509392505050565b600082601f830112612c0357612c026128ff565b5b8135612c13848260208601612bac565b91505092915050565b60008060008060808587031215612c3657612c3561256a565b5b6000612c44878288016127c0565b9450506020612c55878288016127c0565b9350506040612c668782880161270b565b925050606085013567ffffffffffffffff811115612c8757612c8661256f565b5b612c9387828801612bee565b91505092959194509250565b60008060408385031215612cb657612cb561256a565b5b6000612cc4858286016127c0565b9250506020612cd5858286016127c0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d2657607f821691505b602082108103612d3957612d38612cdf565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d7560208361263a565b9150612d8082612d3f565b602082019050919050565b60006020820190508181036000830152612da481612d68565b9050919050565b7f496e76616c69642053616c652053746174652100000000000000000000000000600082015250565b6000612de160138361263a565b9150612dec82612dab565b602082019050919050565b60006020820190508181036000830152612e1081612dd4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612e4d601f8361263a565b9150612e5882612e17565b602082019050919050565b60006020820190508181036000830152612e7c81612e40565b9050919050565b7f53656e646572206973206e6f74207468652073616d65206173206f726967696e60008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612edf60218361263a565b9150612eea82612e83565b604082019050919050565b60006020820190508181036000830152612f0e81612ed2565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000612f4b601c8361263a565b9150612f5682612f15565b602082019050919050565b60006020820190508181036000830152612f7a81612f3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fbb826126ea565b9150612fc6836126ea565b925082821015612fd957612fd8612f81565b5b828203905092915050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b600061301a601e8361263a565b915061302582612fe4565b602082019050919050565b600060208201905081810360008301526130498161300d565b9050919050565b7f57616c6c65742068617320616c72656164792068617665206d696e746564206160008201527f6e204e4654210000000000000000000000000000000000000000000000000000602082015250565b60006130ac60268361263a565b91506130b782613050565b604082019050919050565b600060208201905081810360008301526130db8161309f565b9050919050565b60006130ed826126ea565b91506130f8836126ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561312d5761312c612f81565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b600061319460278361263a565b915061319f82613138565b604082019050919050565b600060208201905081810360008301526131c381613187565b9050919050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b600061322660228361263a565b9150613231826131ca565b604082019050919050565b6000602082019050818103600083015261325581613219565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006132b8602f8361263a565b91506132c38261325c565b604082019050919050565b600060208201905081810360008301526132e7816132ab565b9050919050565b600081905092915050565b60006133048261262f565b61330e81856132ee565b935061331e81856020860161264b565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133606005836132ee565b915061336b8261332a565b600582019050919050565b600061338282856132f9565b915061338e82846132f9565b915061339982613353565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061340160268361263a565b915061340c826133a5565b604082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b600081905092915050565b50565b6000613452600083613437565b915061345d82613442565b600082019050919050565b600061347382613445565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006134b360148361263a565b91506134be8261347d565b602082019050919050565b600060208201905081810360008301526134e2816134a6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613510826134e9565b61351a81856134f4565b935061352a81856020860161264b565b6135338161267e565b840191505092915050565b6000608082019050613553600083018761277f565b613560602083018661277f565b61356d6040830185612815565b818103606083015261357f8184613505565b905095945050505050565b600081519050613599816125a0565b92915050565b6000602082840312156135b5576135b461256a565b5b60006135c38482850161358a565b91505092915050565b60006135d7826126ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361360957613608612f81565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061364e826126ea565b9150613659836126ea565b92508261366957613668613614565b5b828204905092915050565b600061367f826126ea565b915061368a836126ea565b92508261369a57613699613614565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209f6b345cefd1f29e9cfb80b9c7ef8734255688600fa4e43f2ef7aa3696f7e4d564736f6c634300080e0033

Deployed Bytecode Sourcemap

46772:4189:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47901:8;;;21416:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26429:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49840:88;;;;;;;;;;;;;:::i;:::-;;28497:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48237:294;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27957:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48590:511;;;;;;;;;;;;;:::i;:::-;;20470:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49496:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29383:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47345:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48120:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50117:212;;;;;;;;;;;;;:::i;:::-;;29624:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50654:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50864:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26218:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22095:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7526:103;;;;;;;;;;;;;:::i;:::-;;6875:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26598:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28773:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49948:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29880:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49113:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29152:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7784:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21416:615;21501:4;21816:10;21801:25;;:11;:25;;;;:102;;;;21893:10;21878:25;;:11;:25;;;;21801:102;:179;;;;21970:10;21955:25;;:11;:25;;;;21801:179;21781:199;;21416:615;;;:::o;26429:100::-;26483:13;26516:5;26509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26429:100;:::o;49840:88::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49907:13:::1;:11;:13::i;:::-;49890:14;:30;;;;49840:88::o:0;28497:204::-;28565:7;28590:16;28598:7;28590;:16::i;:::-;28585:64;;28615:34;;;;;;;;;;;;;;28585:64;28669:15;:24;28685:7;28669:24;;;;;;;;;;;;;;;;;;;;;28662:31;;28497:204;;;:::o;48237:294::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48329:1:::1;48314:12;:16;48306:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48385:1;48369:12;:17:::0;48365:159:::1;;48416:16;48403:10;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;48365:159;;;48487:25;48474:10;;:38;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;48365:159;48237:294:::0;:::o;27957:474::-;28030:13;28062:27;28081:7;28062:18;:27::i;:::-;28030:61;;28112:5;28106:11;;:2;:11;;;28102:48;;28126:24;;;;;;;;;;;;;;28102:48;28190:5;28167:28;;:19;:17;:19::i;:::-;:28;;;28163:175;;28215:44;28232:5;28239:19;:17;:19::i;:::-;28215:16;:44::i;:::-;28210:128;;28287:35;;;;;;;;;;;;;;28210:128;28163:175;28377:2;28350:15;:24;28366:7;28350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28415:7;28411:2;28395:28;;28404:5;28395:28;;;;;;;;;;;;28019:412;27957:474;;:::o;48590:511::-;3973:1;4571:7;;:19;4563:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3973:1;4704:7;:18;;;;48659:9:::1;48645:23;;:10;:23;;;48637:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48739:25;48725:39:::0;::::1;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:39;;;;;;;;:::i;:::-;;;48717:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48869:14;;48850:16;;:33;;;;:::i;:::-;48832:14;;:52;;;;:::i;:::-;48816:13;:11;:13::i;:::-;:68;48808:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;48969:1;48938:15;:27;48954:10;48938:27;;;;;;;;;;;;;;;;:32;48930:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49026:24;49036:10;49048:1;49026:9;:24::i;:::-;49092:1;49061:15;:27;49077:10;49061:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;3929:1:::0;4883:7;:22;;;;48590:511::o;20470:315::-;20523:7;20751:15;:13;:15::i;:::-;20736:12;;20720:13;;:28;:46;20713:53;;20470:315;:::o;49496:319::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49613:16:::1;;49603:6;49586:14;;:23;;;;:::i;:::-;:43;;49578:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;49686:28;49696:9;49707:6;49686:9;:28::i;:::-;49755:6;49725:15;:26;49741:9;49725:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;49790:6;49772:14;;:24;;;;;;;:::i;:::-;;;;;;;;49496:319:::0;;:::o;29383:170::-;29517:28;29527:4;29533:2;29537:7;29517:9;:28::i;:::-;29383:170;;;:::o;47345:50::-;;;;;;;;;;;;;;;;;:::o;48120:109::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48213:8:::1;48195:15;:26;;;;;;;;;;;;:::i;:::-;;48120:109:::0;:::o;50117:212::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50165:15:::1;50183:16;:14;:16::i;:::-;50165:34;;50228:1;50218:7;:11;50210:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50281:39;50299:10;50312:7;50281:9;:39::i;:::-;50154:175;50117:212::o:0;29624:185::-;29762:39;29779:4;29785:2;29789:7;29762:39;;;;;;;;;;;;:16;:39::i;:::-;29624:185;;;:::o;50654:124::-;50713:4;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50756:14:::1;;50737:16;;:33;;;;:::i;:::-;50730:40;;50654:124:::0;:::o;50864:83::-;50905:5;50929:10;;;;;;;;;;;50922:17;;50864:83;:::o;26218:144::-;26282:7;26325:27;26344:7;26325:18;:27::i;:::-;26302:52;;26218:144;;;:::o;22095:224::-;22159:7;22200:1;22183:19;;:5;:19;;;22179:60;;22211:28;;;;;;;;;;;;;;22179:60;17434:13;22257:18;:25;22276:5;22257:25;;;;;;;;;;;;;;;;:54;22250:61;;22095:224;;;:::o;7526:103::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7591:30:::1;7618:1;7591:18;:30::i;:::-;7526:103::o:0;6875:87::-;6921:7;6948:6;;;;;;;;;;;6941:13;;6875:87;:::o;26598:104::-;26654:13;26687:7;26680:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26598:104;:::o;28773:308::-;28884:19;:17;:19::i;:::-;28872:31;;:8;:31;;;28868:61;;28912:17;;;;;;;;;;;;;;28868:61;28994:8;28942:18;:39;28961:19;:17;:19::i;:::-;28942:39;;;;;;;;;;;;;;;:49;28982:8;28942:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29054:8;29018:55;;29033:19;:17;:19::i;:::-;29018:55;;;29064:8;29018:55;;;;;;:::i;:::-;;;;;;;;28773:308;;:::o;49948:109::-;50004:4;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50028:21:::1;50021:28;;49948:109:::0;:::o;29880:396::-;30047:28;30057:4;30063:2;30067:7;30047:9;:28::i;:::-;30108:1;30090:2;:14;;;:19;30086:183;;30129:56;30160:4;30166:2;30170:7;30179:5;30129:30;:56::i;:::-;30124:145;;30213:40;;;;;;;;;;;;;;30124:145;30086:183;29880:396;;;;:::o;49113:338::-;49187:13;49221:17;49229:8;49221:7;:17::i;:::-;49213:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;49315:1;49303:13;;;;;:::i;:::-;;;49327:21;49351:10;:8;:10::i;:::-;49327:34;;49403:7;49412:19;:8;:17;:19::i;:::-;49386:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49372:70;;;49113:338;;;:::o;29152:164::-;29249:4;29273:18;:25;29292:5;29273:25;;;;;;;;;;;;;;;:35;29299:8;29273:35;;;;;;;;;;;;;;;;;;;;;;;;;29266:42;;29152:164;;;;:::o;7784:201::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7893:1:::1;7873:22;;:8;:22;;::::0;7865:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7949:28;7968:8;7949:18;:28::i;:::-;7784:201:::0;:::o;5599:98::-;5652:7;5679:10;5672:17;;5599:98;:::o;30531:273::-;30588:4;30644:7;30625:15;:13;:15::i;:::-;:26;;:66;;;;;30678:13;;30668:7;:23;30625:66;:152;;;;;30776:1;18204:8;30729:17;:26;30747:7;30729:26;;;;;;;;;;;;:43;:48;30625:152;30605:172;;30531:273;;;:::o;23733:1129::-;23800:7;23820:12;23835:7;23820:22;;23903:4;23884:15;:13;:15::i;:::-;:23;23880:915;;23937:13;;23930:4;:20;23926:869;;;23975:14;23992:17;:23;24010:4;23992:23;;;;;;;;;;;;23975:40;;24108:1;18204:8;24081:6;:23;:28;24077:699;;24600:113;24617:1;24607:6;:11;24600:113;;24660:17;:25;24678:6;;;;;;;24660:25;;;;;;;;;;;;24651:34;;24600:113;;;24746:6;24739:13;;;;;;24077:699;23952:843;23926:869;23880:915;24823:31;;;;;;;;;;;;;;23733:1129;;;;:::o;44513:105::-;44573:7;44600:10;44593:17;;44513:105;:::o;30888:104::-;30957:27;30967:2;30971:8;30957:27;;;;;;;;;;;;:9;:27::i;:::-;30888:104;;:::o;19993:92::-;20049:7;19993:92;:::o;35770:2515::-;35885:27;35915;35934:7;35915:18;:27::i;:::-;35885:57;;36000:4;35959:45;;35975:19;35959:45;;;35955:86;;36013:28;;;;;;;;;;;;;;35955:86;36054:22;36103:4;36080:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36124:43;36141:4;36147:19;:17;:19::i;:::-;36124:16;:43::i;:::-;36080:87;:147;;;;36208:19;:17;:19::i;:::-;36184:43;;:20;36196:7;36184:11;:20::i;:::-;:43;;;36080:147;36054:174;;36246:17;36241:66;;36272:35;;;;;;;;;;;;;;36241:66;36336:1;36322:16;;:2;:16;;;36318:52;;36347:23;;;;;;;;;;;;;;36318:52;36383:43;36405:4;36411:2;36415:7;36424:1;36383:21;:43::i;:::-;36499:15;:24;36515:7;36499:24;;;;;;;;;;;;36492:31;;;;;;;;;;;36891:18;:24;36910:4;36891:24;;;;;;;;;;;;;;;;36889:26;;;;;;;;;;;;36960:18;:22;36979:2;36960:22;;;;;;;;;;;;;;;;36958:24;;;;;;;;;;;18486:8;18088:3;37341:15;:41;;37299:21;37317:2;37299:17;:21::i;:::-;:84;:128;37253:17;:26;37271:7;37253:26;;;;;;;;;;;:174;;;;37597:1;18486:8;37547:19;:46;:51;37543:626;;37619:19;37651:1;37641:7;:11;37619:33;;37808:1;37774:17;:30;37792:11;37774:30;;;;;;;;;;;;:35;37770:384;;37912:13;;37897:11;:28;37893:242;;38092:19;38059:17;:30;38077:11;38059:30;;;;;;;;;;;:52;;;;37893:242;37770:384;37600:569;37543:626;38216:7;38212:2;38197:27;;38206:4;38197:27;;;;;;;;;;;;38235:42;38256:4;38262:2;38266:7;38275:1;38235:20;:42::i;:::-;35874:2411;;35770:2515;;;:::o;50404:183::-;50485:9;50500:7;:12;;50520:6;50500:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50484:47;;;50550:4;50542:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;50473:114;50404:183;;:::o;8145:191::-;8219:16;8238:6;;;;;;;;;;;8219:25;;8264:8;8255:6;;:17;;;;;;;;;;;;;;;;;;8319:8;8288:40;;8309:8;8288:40;;;;;;;;;;;;8208:128;8145:191;:::o;41982:716::-;42145:4;42191:2;42166:45;;;42212:19;:17;:19::i;:::-;42233:4;42239:7;42248:5;42166:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42162:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42466:1;42449:6;:13;:18;42445:235;;42495:40;;;;;;;;;;;;;;42445:235;42638:6;42632:13;42623:6;42619:2;42615:15;42608:38;42162:529;42335:54;;;42325:64;;;:6;:64;;;;42318:71;;;41982:716;;;;;;:::o;47954:116::-;48014:13;48047:15;48040:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47954:116;:::o;402:723::-;458:13;688:1;679:5;:10;675:53;;706:10;;;;;;;;;;;;;;;;;;;;;675:53;738:12;753:5;738:20;;769:14;794:78;809:1;801:4;:9;794:78;;827:8;;;;;:::i;:::-;;;;858:2;850:10;;;;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:39;;932:154;948:1;939:5;:10;932:154;;976:1;966:11;;;;;:::i;:::-;;;1043:2;1035:5;:10;;;;:::i;:::-;1022:2;:24;;;;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1072:2;1063:11;;;;;:::i;:::-;;;932:154;;;1110:6;1096:21;;;;;402:723;;;;:::o;31365:2236::-;31488:20;31511:13;;31488:36;;31553:1;31539:16;;:2;:16;;;31535:48;;31564:19;;;;;;;;;;;;;;31535:48;31610:1;31598:8;:13;31594:44;;31620:18;;;;;;;;;;;;;;31594:44;31651:61;31681:1;31685:2;31689:12;31703:8;31651:21;:61::i;:::-;32255:1;17571:2;32226:1;:25;;32225:31;32213:8;:44;32187:18;:22;32206:2;32187:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18351:3;32656:29;32683:1;32671:8;:13;32656:14;:29::i;:::-;:56;;18088:3;32593:15;:41;;32551:21;32569:2;32551:17;:21::i;:::-;:84;:162;32500:17;:31;32518:12;32500:31;;;;;;;;;;;:213;;;;32730:20;32753:12;32730:35;;32780:11;32809:8;32794:12;:23;32780:37;;32856:1;32838:2;:14;;;:19;32834:635;;32878:313;32934:12;32930:2;32909:38;;32926:1;32909:38;;;;;;;;;;;;32975:69;33014:1;33018:2;33022:14;;;;;;33038:5;32975:30;:69::i;:::-;32970:174;;33080:40;;;;;;;;;;;;;;32970:174;33186:3;33171:12;:18;32878:313;;33272:12;33255:13;;:29;33251:43;;33286:8;;;33251:43;32834:635;;;33335:119;33391:14;;;;;;33387:2;33366:40;;33383:1;33366:40;;;;;;;;;;;;33449:3;33434:12;:18;33335:119;;32834:635;33499:12;33483:13;:28;;;;31964:1559;;33533:60;33562:1;33566:2;33570:12;33584:8;33533:20;:60::i;:::-;31477:2124;31365:2236;;;:::o;43346:159::-;;;;;:::o;27518:148::-;27582:14;27643:5;27633:15;;27518:148;;;:::o;44164:158::-;;;;;:::o;27753:142::-;27811:14;27872:5;27862:15;;27753:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:474::-;5358:6;5366;5415:2;5403:9;5394:7;5390:23;5386:32;5383:119;;;5421:79;;:::i;:::-;5383:119;5541:1;5566:53;5611:7;5602:6;5591:9;5587:22;5566:53;:::i;:::-;5556:63;;5512:117;5668:2;5694:53;5739:7;5730:6;5719:9;5715:22;5694:53;:::i;:::-;5684:63;;5639:118;5290:474;;;;;:::o;5770:619::-;5847:6;5855;5863;5912:2;5900:9;5891:7;5887:23;5883:32;5880:119;;;5918:79;;:::i;:::-;5880:119;6038:1;6063:53;6108:7;6099:6;6088:9;6084:22;6063:53;:::i;:::-;6053:63;;6009:117;6165:2;6191:53;6236:7;6227:6;6216:9;6212:22;6191:53;:::i;:::-;6181:63;;6136:118;6293:2;6319:53;6364:7;6355:6;6344:9;6340:22;6319:53;:::i;:::-;6309:63;;6264:118;5770:619;;;;;:::o;6395:329::-;6454:6;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6629:1;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6600:117;6395:329;;;;:::o;6730:117::-;6839:1;6836;6829:12;6853:117;6962:1;6959;6952:12;6976:180;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:281;7245:27;7267:4;7245:27;:::i;:::-;7237:6;7233:40;7375:6;7363:10;7360:22;7339:18;7327:10;7324:34;7321:62;7318:88;;;7386:18;;:::i;:::-;7318:88;7426:10;7422:2;7415:22;7205:238;7162:281;;:::o;7449:129::-;7483:6;7510:20;;:::i;:::-;7500:30;;7539:33;7567:4;7559:6;7539:33;:::i;:::-;7449:129;;;:::o;7584:308::-;7646:4;7736:18;7728:6;7725:30;7722:56;;;7758:18;;:::i;:::-;7722:56;7796:29;7818:6;7796:29;:::i;:::-;7788:37;;7880:4;7874;7870:15;7862:23;;7584:308;;;:::o;7898:154::-;7982:6;7977:3;7972;7959:30;8044:1;8035:6;8030:3;8026:16;8019:27;7898:154;;;:::o;8058:412::-;8136:5;8161:66;8177:49;8219:6;8177:49;:::i;:::-;8161:66;:::i;:::-;8152:75;;8250:6;8243:5;8236:21;8288:4;8281:5;8277:16;8326:3;8317:6;8312:3;8308:16;8305:25;8302:112;;;8333:79;;:::i;:::-;8302:112;8423:41;8457:6;8452:3;8447;8423:41;:::i;:::-;8142:328;8058:412;;;;;:::o;8490:340::-;8546:5;8595:3;8588:4;8580:6;8576:17;8572:27;8562:122;;8603:79;;:::i;:::-;8562:122;8720:6;8707:20;8745:79;8820:3;8812:6;8805:4;8797:6;8793:17;8745:79;:::i;:::-;8736:88;;8552:278;8490:340;;;;:::o;8836:509::-;8905:6;8954:2;8942:9;8933:7;8929:23;8925:32;8922:119;;;8960:79;;:::i;:::-;8922:119;9108:1;9097:9;9093:17;9080:31;9138:18;9130:6;9127:30;9124:117;;;9160:79;;:::i;:::-;9124:117;9265:63;9320:7;9311:6;9300:9;9296:22;9265:63;:::i;:::-;9255:73;;9051:287;8836:509;;;;:::o;9351:180::-;9399:77;9396:1;9389:88;9496:4;9493:1;9486:15;9520:4;9517:1;9510:15;9537:115;9620:1;9613:5;9610:12;9600:46;;9626:18;;:::i;:::-;9600:46;9537:115;:::o;9658:131::-;9705:7;9734:5;9723:16;;9740:43;9777:5;9740:43;:::i;:::-;9658:131;;;:::o;9795:::-;9853:9;9886:34;9914:5;9886:34;:::i;:::-;9873:47;;9795:131;;;:::o;9932:147::-;10027:45;10066:5;10027:45;:::i;:::-;10022:3;10015:58;9932:147;;:::o;10085:238::-;10186:4;10224:2;10213:9;10209:18;10201:26;;10237:79;10313:1;10302:9;10298:17;10289:6;10237:79;:::i;:::-;10085:238;;;;:::o;10329:116::-;10399:21;10414:5;10399:21;:::i;:::-;10392:5;10389:32;10379:60;;10435:1;10432;10425:12;10379:60;10329:116;:::o;10451:133::-;10494:5;10532:6;10519:20;10510:29;;10548:30;10572:5;10548:30;:::i;:::-;10451:133;;;;:::o;10590:468::-;10655:6;10663;10712:2;10700:9;10691:7;10687:23;10683:32;10680:119;;;10718:79;;:::i;:::-;10680:119;10838:1;10863:53;10908:7;10899:6;10888:9;10884:22;10863:53;:::i;:::-;10853:63;;10809:117;10965:2;10991:50;11033:7;11024:6;11013:9;11009:22;10991:50;:::i;:::-;10981:60;;10936:115;10590:468;;;;;:::o;11064:307::-;11125:4;11215:18;11207:6;11204:30;11201:56;;;11237:18;;:::i;:::-;11201:56;11275:29;11297:6;11275:29;:::i;:::-;11267:37;;11359:4;11353;11349:15;11341:23;;11064:307;;;:::o;11377:410::-;11454:5;11479:65;11495:48;11536:6;11495:48;:::i;:::-;11479:65;:::i;:::-;11470:74;;11567:6;11560:5;11553:21;11605:4;11598:5;11594:16;11643:3;11634:6;11629:3;11625:16;11622:25;11619:112;;;11650:79;;:::i;:::-;11619:112;11740:41;11774:6;11769:3;11764;11740:41;:::i;:::-;11460:327;11377:410;;;;;:::o;11806:338::-;11861:5;11910:3;11903:4;11895:6;11891:17;11887:27;11877:122;;11918:79;;:::i;:::-;11877:122;12035:6;12022:20;12060:78;12134:3;12126:6;12119:4;12111:6;12107:17;12060:78;:::i;:::-;12051:87;;11867:277;11806:338;;;;:::o;12150:943::-;12245:6;12253;12261;12269;12318:3;12306:9;12297:7;12293:23;12289:33;12286:120;;;12325:79;;:::i;:::-;12286:120;12445:1;12470:53;12515:7;12506:6;12495:9;12491:22;12470:53;:::i;:::-;12460:63;;12416:117;12572:2;12598:53;12643:7;12634:6;12623:9;12619:22;12598:53;:::i;:::-;12588:63;;12543:118;12700:2;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12671:118;12856:2;12845:9;12841:18;12828:32;12887:18;12879:6;12876:30;12873:117;;;12909:79;;:::i;:::-;12873:117;13014:62;13068:7;13059:6;13048:9;13044:22;13014:62;:::i;:::-;13004:72;;12799:287;12150:943;;;;;;;:::o;13099:474::-;13167:6;13175;13224:2;13212:9;13203:7;13199:23;13195:32;13192:119;;;13230:79;;:::i;:::-;13192:119;13350:1;13375:53;13420:7;13411:6;13400:9;13396:22;13375:53;:::i;:::-;13365:63;;13321:117;13477:2;13503:53;13548:7;13539:6;13528:9;13524:22;13503:53;:::i;:::-;13493:63;;13448:118;13099:474;;;;;:::o;13579:180::-;13627:77;13624:1;13617:88;13724:4;13721:1;13714:15;13748:4;13745:1;13738:15;13765:320;13809:6;13846:1;13840:4;13836:12;13826:22;;13893:1;13887:4;13883:12;13914:18;13904:81;;13970:4;13962:6;13958:17;13948:27;;13904:81;14032:2;14024:6;14021:14;14001:18;13998:38;13995:84;;14051:18;;:::i;:::-;13995:84;13816:269;13765:320;;;:::o;14091:182::-;14231:34;14227:1;14219:6;14215:14;14208:58;14091:182;:::o;14279:366::-;14421:3;14442:67;14506:2;14501:3;14442:67;:::i;:::-;14435:74;;14518:93;14607:3;14518:93;:::i;:::-;14636:2;14631:3;14627:12;14620:19;;14279:366;;;:::o;14651:419::-;14817:4;14855:2;14844:9;14840:18;14832:26;;14904:9;14898:4;14894:20;14890:1;14879:9;14875:17;14868:47;14932:131;15058:4;14932:131;:::i;:::-;14924:139;;14651:419;;;:::o;15076:169::-;15216:21;15212:1;15204:6;15200:14;15193:45;15076:169;:::o;15251:366::-;15393:3;15414:67;15478:2;15473:3;15414:67;:::i;:::-;15407:74;;15490:93;15579:3;15490:93;:::i;:::-;15608:2;15603:3;15599:12;15592:19;;15251:366;;;:::o;15623:419::-;15789:4;15827:2;15816:9;15812:18;15804:26;;15876:9;15870:4;15866:20;15862:1;15851:9;15847:17;15840:47;15904:131;16030:4;15904:131;:::i;:::-;15896:139;;15623:419;;;:::o;16048:181::-;16188:33;16184:1;16176:6;16172:14;16165:57;16048:181;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:220::-;17172:34;17168:1;17160:6;17156:14;17149:58;17241:3;17236:2;17228:6;17224:15;17217:28;17032:220;:::o;17258:366::-;17400:3;17421:67;17485:2;17480:3;17421:67;:::i;:::-;17414:74;;17497:93;17586:3;17497:93;:::i;:::-;17615:2;17610:3;17606:12;17599:19;;17258:366;;;:::o;17630:419::-;17796:4;17834:2;17823:9;17819:18;17811:26;;17883:9;17877:4;17873:20;17869:1;17858:9;17854:17;17847:47;17911:131;18037:4;17911:131;:::i;:::-;17903:139;;17630:419;;;:::o;18055:178::-;18195:30;18191:1;18183:6;18179:14;18172:54;18055:178;:::o;18239:366::-;18381:3;18402:67;18466:2;18461:3;18402:67;:::i;:::-;18395:74;;18478:93;18567:3;18478:93;:::i;:::-;18596:2;18591:3;18587:12;18580:19;;18239:366;;;:::o;18611:419::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o;19036:180::-;19084:77;19081:1;19074:88;19181:4;19178:1;19171:15;19205:4;19202:1;19195:15;19222:191;19262:4;19282:20;19300:1;19282:20;:::i;:::-;19277:25;;19316:20;19334:1;19316:20;:::i;:::-;19311:25;;19355:1;19352;19349:8;19346:34;;;19360:18;;:::i;:::-;19346:34;19405:1;19402;19398:9;19390:17;;19222:191;;;;:::o;19419:180::-;19559:32;19555:1;19547:6;19543:14;19536:56;19419:180;:::o;19605:366::-;19747:3;19768:67;19832:2;19827:3;19768:67;:::i;:::-;19761:74;;19844:93;19933:3;19844:93;:::i;:::-;19962:2;19957:3;19953:12;19946:19;;19605:366;;;:::o;19977:419::-;20143:4;20181:2;20170:9;20166:18;20158:26;;20230:9;20224:4;20220:20;20216:1;20205:9;20201:17;20194:47;20258:131;20384:4;20258:131;:::i;:::-;20250:139;;19977:419;;;:::o;20402:225::-;20542:34;20538:1;20530:6;20526:14;20519:58;20611:8;20606:2;20598:6;20594:15;20587:33;20402:225;:::o;20633:366::-;20775:3;20796:67;20860:2;20855:3;20796:67;:::i;:::-;20789:74;;20872:93;20961:3;20872:93;:::i;:::-;20990:2;20985:3;20981:12;20974:19;;20633:366;;;:::o;21005:419::-;21171:4;21209:2;21198:9;21194:18;21186:26;;21258:9;21252:4;21248:20;21244:1;21233:9;21229:17;21222:47;21286:131;21412:4;21286:131;:::i;:::-;21278:139;;21005:419;;;:::o;21430:305::-;21470:3;21489:20;21507:1;21489:20;:::i;:::-;21484:25;;21523:20;21541:1;21523:20;:::i;:::-;21518:25;;21677:1;21609:66;21605:74;21602:1;21599:81;21596:107;;;21683:18;;:::i;:::-;21596:107;21727:1;21724;21720:9;21713:16;;21430:305;;;;:::o;21741:226::-;21881:34;21877:1;21869:6;21865:14;21858:58;21950:9;21945:2;21937:6;21933:15;21926:34;21741:226;:::o;21973:366::-;22115:3;22136:67;22200:2;22195:3;22136:67;:::i;:::-;22129:74;;22212:93;22301:3;22212:93;:::i;:::-;22330:2;22325:3;22321:12;22314:19;;21973:366;;;:::o;22345:419::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22598:9;22592:4;22588:20;22584:1;22573:9;22569:17;22562:47;22626:131;22752:4;22626:131;:::i;:::-;22618:139;;22345:419;;;:::o;22770:221::-;22910:34;22906:1;22898:6;22894:14;22887:58;22979:4;22974:2;22966:6;22962:15;22955:29;22770:221;:::o;22997:366::-;23139:3;23160:67;23224:2;23219:3;23160:67;:::i;:::-;23153:74;;23236:93;23325:3;23236:93;:::i;:::-;23354:2;23349:3;23345:12;23338:19;;22997:366;;;:::o;23369:419::-;23535:4;23573:2;23562:9;23558:18;23550:26;;23622:9;23616:4;23612:20;23608:1;23597:9;23593:17;23586:47;23650:131;23776:4;23650:131;:::i;:::-;23642:139;;23369:419;;;:::o;23794:234::-;23934:34;23930:1;23922:6;23918:14;23911:58;24003:17;23998:2;23990:6;23986:15;23979:42;23794:234;:::o;24034:366::-;24176:3;24197:67;24261:2;24256:3;24197:67;:::i;:::-;24190:74;;24273:93;24362:3;24273:93;:::i;:::-;24391:2;24386:3;24382:12;24375:19;;24034:366;;;:::o;24406:419::-;24572:4;24610:2;24599:9;24595:18;24587:26;;24659:9;24653:4;24649:20;24645:1;24634:9;24630:17;24623:47;24687:131;24813:4;24687:131;:::i;:::-;24679:139;;24406:419;;;:::o;24831:148::-;24933:11;24970:3;24955:18;;24831:148;;;;:::o;24985:377::-;25091:3;25119:39;25152:5;25119:39;:::i;:::-;25174:89;25256:6;25251:3;25174:89;:::i;:::-;25167:96;;25272:52;25317:6;25312:3;25305:4;25298:5;25294:16;25272:52;:::i;:::-;25349:6;25344:3;25340:16;25333:23;;25095:267;24985:377;;;;:::o;25368:155::-;25508:7;25504:1;25496:6;25492:14;25485:31;25368:155;:::o;25529:400::-;25689:3;25710:84;25792:1;25787:3;25710:84;:::i;:::-;25703:91;;25803:93;25892:3;25803:93;:::i;:::-;25921:1;25916:3;25912:11;25905:18;;25529:400;;;:::o;25935:701::-;26216:3;26238:95;26329:3;26320:6;26238:95;:::i;:::-;26231:102;;26350:95;26441:3;26432:6;26350:95;:::i;:::-;26343:102;;26462:148;26606:3;26462:148;:::i;:::-;26455:155;;26627:3;26620:10;;25935:701;;;;;:::o;26642:225::-;26782:34;26778:1;26770:6;26766:14;26759:58;26851:8;26846:2;26838:6;26834:15;26827:33;26642:225;:::o;26873:366::-;27015:3;27036:67;27100:2;27095:3;27036:67;:::i;:::-;27029:74;;27112:93;27201:3;27112:93;:::i;:::-;27230:2;27225:3;27221:12;27214:19;;26873:366;;;:::o;27245:419::-;27411:4;27449:2;27438:9;27434:18;27426:26;;27498:9;27492:4;27488:20;27484:1;27473:9;27469:17;27462:47;27526:131;27652:4;27526:131;:::i;:::-;27518:139;;27245:419;;;:::o;27670:147::-;27771:11;27808:3;27793:18;;27670:147;;;;:::o;27823:114::-;;:::o;27943:398::-;28102:3;28123:83;28204:1;28199:3;28123:83;:::i;:::-;28116:90;;28215:93;28304:3;28215:93;:::i;:::-;28333:1;28328:3;28324:11;28317:18;;27943:398;;;:::o;28347:379::-;28531:3;28553:147;28696:3;28553:147;:::i;:::-;28546:154;;28717:3;28710:10;;28347:379;;;:::o;28732:170::-;28872:22;28868:1;28860:6;28856:14;28849:46;28732:170;:::o;28908:366::-;29050:3;29071:67;29135:2;29130:3;29071:67;:::i;:::-;29064:74;;29147:93;29236:3;29147:93;:::i;:::-;29265:2;29260:3;29256:12;29249:19;;28908:366;;;:::o;29280:419::-;29446:4;29484:2;29473:9;29469:18;29461:26;;29533:9;29527:4;29523:20;29519:1;29508:9;29504:17;29497:47;29561:131;29687:4;29561:131;:::i;:::-;29553:139;;29280:419;;;:::o;29705:98::-;29756:6;29790:5;29784:12;29774:22;;29705:98;;;:::o;29809:168::-;29892:11;29926:6;29921:3;29914:19;29966:4;29961:3;29957:14;29942:29;;29809:168;;;;:::o;29983:360::-;30069:3;30097:38;30129:5;30097:38;:::i;:::-;30151:70;30214:6;30209:3;30151:70;:::i;:::-;30144:77;;30230:52;30275:6;30270:3;30263:4;30256:5;30252:16;30230:52;:::i;:::-;30307:29;30329:6;30307:29;:::i;:::-;30302:3;30298:39;30291:46;;30073:270;29983:360;;;;:::o;30349:640::-;30544:4;30582:3;30571:9;30567:19;30559:27;;30596:71;30664:1;30653:9;30649:17;30640:6;30596:71;:::i;:::-;30677:72;30745:2;30734:9;30730:18;30721:6;30677:72;:::i;:::-;30759;30827:2;30816:9;30812:18;30803:6;30759:72;:::i;:::-;30878:9;30872:4;30868:20;30863:2;30852:9;30848:18;30841:48;30906:76;30977:4;30968:6;30906:76;:::i;:::-;30898:84;;30349:640;;;;;;;:::o;30995:141::-;31051:5;31082:6;31076:13;31067:22;;31098:32;31124:5;31098:32;:::i;:::-;30995:141;;;;:::o;31142:349::-;31211:6;31260:2;31248:9;31239:7;31235:23;31231:32;31228:119;;;31266:79;;:::i;:::-;31228:119;31386:1;31411:63;31466:7;31457:6;31446:9;31442:22;31411:63;:::i;:::-;31401:73;;31357:127;31142:349;;;;:::o;31497:233::-;31536:3;31559:24;31577:5;31559:24;:::i;:::-;31550:33;;31605:66;31598:5;31595:77;31592:103;;31675:18;;:::i;:::-;31592:103;31722:1;31715:5;31711:13;31704:20;;31497:233;;;:::o;31736:180::-;31784:77;31781:1;31774:88;31881:4;31878:1;31871:15;31905:4;31902:1;31895:15;31922:185;31962:1;31979:20;31997:1;31979:20;:::i;:::-;31974:25;;32013:20;32031:1;32013:20;:::i;:::-;32008:25;;32052:1;32042:35;;32057:18;;:::i;:::-;32042:35;32099:1;32096;32092:9;32087:14;;31922:185;;;;:::o;32113:176::-;32145:1;32162:20;32180:1;32162:20;:::i;:::-;32157:25;;32196:20;32214:1;32196:20;:::i;:::-;32191:25;;32235:1;32225:35;;32240:18;;:::i;:::-;32225:35;32281:1;32278;32274:9;32269:14;;32113:176;;;;:::o;32295:180::-;32343:77;32340:1;32333:88;32440:4;32437:1;32430:15;32464:4;32461:1;32454:15

Swarm Source

ipfs://9f6b345cefd1f29e9cfb80b9c7ef8734255688600fa4e43f2ef7aa3696f7e4d5
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.