ETH Price: $2,940.49 (-6.86%)
Gas: 8 Gwei

Token

Schoblins (SCBLN)
 

Overview

Max Total Supply

8,000 SCBLN

Holders

3,352

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SCBLN
0xe238f1534827a0a4c31c1d95d6375e160e338257
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:
Schoblins

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/4.SCBLN.sol


pragma solidity ^0.8.13;




 /*
    o__ __o          o__ __o     o         o        o__ __o        o__ __o     o           __o__   o          o      o__ __o    
   /v     v\        /v     v\   <|>       <|>      /v     v\      <|     v\   <|>            |    <|\        <|>    /v     v\   
  />       <\      />       <\  < >       < >     />       <\     / \     <\  / \           / \   / \\o      / \   />       <\  
 _\o____         o/              |         |    o/           \o   \o/     o/  \o/           \o/   \o/ v\     \o/  _\o____       
      \_\__o__  <|               o__/_ _\__o   <|             |>   |__  _<|    |             |     |   <\     |        \_\__o__ 
            \    \\              |         |    \\           //    |       \  / \           < >   / \    \o  / \             \  
  \         /      \         /  <o>       <o>     \         /     <o>      /  \o/            |    \o/     v\ \o/   \         /  
   o       o        o       o    |         |       o       o       |      o    |             o     |       <\ |     o       o   
   <\__ __/>        <\__ __/>   / \       / \      <\__ __/>      / \  __/>   / \ _\o__/_  __|>_  / \        < \    <\__ __/>   
                                                                                                                                
*/         


contract Schoblins is Ownable, ERC721A {
    uint256 public maxSupply                    = 8000;
    uint256 public maxFreeSupply                = 8000;
    uint256 public freeMintedCount;
    uint256 public currentCount =totalSupply();
    uint256 public teamQuantity                 = 800;

    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 10;
    uint256 public maxFreePerAddress            = 2;
    
    uint256 public price                        = 0.005 ether;
    bool    public saleIsActive                 = false;



    address constant internal TEAM_ADDRESS = 0x41159f983d2826914864E11ADde2346238c8A602;

    string private _baseTokenURI;

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Schoblins", "SCBLN") {
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }


 
//Email: [email protected] for partnership.
    
    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            maxSupply - teamQuantity >= totalSupply() + _quantity,
            "Max out of Schoblins Population."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "Too many Scholins in your family."
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        if (freeMintedCount >= maxFreeSupply) {
            require(msg.value>= _quantity*price, 'Need More ETH');
            _safeMint(msg.sender, _quantity);
        }else if (freeMintedAmount[msg.sender] < maxFreePerAddress){
        uint256 _mintableFreeQuantity = maxFreePerAddress - freeMintedAmount[msg.sender];

            if (_quantity <= _mintableFreeQuantity) {
                freeMintedCount += _quantity;
                freeMintedAmount[msg.sender] +=_quantity;
            } else {
                freeMintedCount += _mintableFreeQuantity;
                freeMintedAmount[msg.sender] = maxFreePerAddress;
                require(msg.value >= (_quantity-_mintableFreeQuantity)*price, 'Need more ETH');
                }
                _safeMint(msg.sender, _quantity);

        }else{
            require(msg.value >= _quantity*price, 'Need more ETH');
            _safeMint(msg.sender, _quantity);
             }
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
    }


    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }


    function setMaxForDrops(uint256 _amount) public onlyOwner {

        maxSupply += _amount;
    }    

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "Team transfer failed.");
    }
      function teamMint(uint _amount) external onlyOwner {
        
        _safeMint(msg.sender, _amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"currentCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"maxFreePerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxForDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611f40600955611f40600a55620000206200014860201b60201c565b600c55610320600d55600a600e55600a600f5560026010556611c37937e080006011556000601260006101000a81548160ff0219169083151502179055503480156200006b57600080fd5b506040518060400160405280600981526020017f5363686f626c696e7300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5343424c4e000000000000000000000000000000000000000000000000000000815250620000f8620000ec6200016760201b60201c565b6200016f60201b60201c565b8160039080519060200190620001109291906200023d565b508060049080519060200190620001299291906200023d565b506200013a6200023360201b60201c565b600181905550505062000351565b60006200015a6200023360201b60201c565b6002546001540303905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000610140905090565b8280546200024b906200031c565b90600052602060002090601f0160209004810192826200026f5760008555620002bb565b82601f106200028a57805160ff1916838001178555620002bb565b82800160010185558215620002bb579182015b82811115620002ba5782518255916020019190600101906200029d565b5b509050620002ca9190620002ce565b5090565b5b80821115620002e9576000816000905550600101620002cf565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033557607f821691505b6020821081036200034b576200034a620002ed565b5b50919050565b61335c80620003616000396000f3fe6080604052600436106102305760003560e01c80638bc35c2f1161012e578063c732d201116100ab578063e985e9c51161006f578063e985e9c5146107e7578063eb8d244414610824578063f2fde38b1461084f578063f4464cf114610878578063fbbf8cc3146108a357610230565b8063c732d201146106fe578063c87b56dd14610729578063cf6db22614610766578063d3464cbd14610791578063d5abeb01146107bc57610230565b8063a035b1fe116100f2578063a035b1fe1461063c578063a0712d6814610667578063a22cb46514610683578063b88d4fde146106ac578063c6f6f216146106d557610230565b80638bc35c2f146105555780638da5cb5b1461058057806391b7f5ed146105ab57806395d89b41146105d457806396b10201146105ff57610230565b80632fbba115116101bc5780636352211e116101805780636352211e1461048457806370a08231146104c1578063715018a6146104fe5780637ba5e621146105155780637bddd65b1461052c57610230565b80632fbba115146103d457806342842e0e146103fd578063475133341461042657806355f804b3146104515780635fd8c7101461047a57610230565b80631141df20116102035780631141df20146103035780631222b8e21461032c57806318160ddd1461035557806323b872dd1461038057806327a81bef146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612510565b6108e0565b6040516102699190612558565b60405180910390f35b34801561027e57600080fd5b50610287610972565b604051610294919061260c565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612664565b610a04565b6040516102d191906126d2565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612719565b610a80565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612664565b610bc1565b005b34801561033857600080fd5b50610353600480360381019061034e9190612664565b610c3c565b005b34801561036157600080fd5b5061036a610c60565b6040516103779190612768565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612783565b610c77565b005b3480156103b557600080fd5b506103be610f99565b6040516103cb9190612768565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612664565b610f9f565b005b34801561040957600080fd5b50610424600480360381019061041f9190612783565b610fb4565b005b34801561043257600080fd5b5061043b610fd4565b6040516104489190612768565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061283b565b610fda565b005b610482610ff8565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612664565b6110c3565b6040516104b891906126d2565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612888565b6110d5565b6040516104f59190612768565b60405180910390f35b34801561050a57600080fd5b5061051361118d565b005b34801561052157600080fd5b5061052a6111a1565b005b34801561053857600080fd5b50610553600480360381019061054e9190612664565b6111d5565b005b34801561056157600080fd5b5061056a6111e7565b6040516105779190612768565b60405180910390f35b34801561058c57600080fd5b506105956111ed565b6040516105a291906126d2565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612664565b611216565b005b3480156105e057600080fd5b506105e9611228565b6040516105f6919061260c565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612888565b6112ba565b6040516106339190612768565b60405180910390f35b34801561064857600080fd5b506106516112d2565b60405161065e9190612768565b60405180910390f35b610681600480360381019061067c9190612664565b6112d8565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906128e1565b6117d7565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612a51565b61194e565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612664565b6119c1565b005b34801561070a57600080fd5b506107136119d3565b6040516107209190612768565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612664565b6119d9565b60405161075d919061260c565b60405180910390f35b34801561077257600080fd5b5061077b611a77565b6040516107889190612768565b60405180910390f35b34801561079d57600080fd5b506107a6611a7d565b6040516107b39190612768565b60405180910390f35b3480156107c857600080fd5b506107d1611a83565b6040516107de9190612768565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612ad4565b611a89565b60405161081b9190612558565b60405180910390f35b34801561083057600080fd5b50610839611b1d565b6040516108469190612558565b60405180910390f35b34801561085b57600080fd5b5061087660048036038101906108719190612888565b611b30565b005b34801561088457600080fd5b5061088d611bb3565b60405161089a9190612768565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190612888565b611bb9565b6040516108d79190612768565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461098190612b43565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad90612b43565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a0f82611bd1565b610a45576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8b826110c3565b90508073ffffffffffffffffffffffffffffffffffffffff16610aac611c30565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f57610ad881610ad3611c30565b611a89565b610b0e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610bc9611c38565b610bd1610c60565b81600954610bdf9190612ba3565b1015610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790612c49565b60405180910390fd5b8060096000828254610c329190612ba3565b9250508190555050565b610c44611c38565b8060096000828254610c569190612c69565b9250508190555050565b6000610c6a611cb6565b6002546001540303905090565b6000610c8282611cc0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ce9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cf584611d8c565b91509150610d0b8187610d06611c30565b611dae565b610d5757610d2086610d1b611c30565b611a89565b610d56576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dbd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dca8686866001611df2565b8015610dd557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ea385610e7f888887611df8565b7c020000000000000000000000000000000000000000000000000000000017611e20565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f295760006001850190506000600560008381526020019081526020016000205403610f27576001548114610f26578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f918686866001611e4b565b505050505050565b600d5481565b610fa7611c38565b610fb13382611e51565b50565b610fcf8383836040518060200160405280600081525061194e565b505050565b600a5481565b610fe2611c38565b818160139190610ff3929190612401565b505050565b611000611c38565b60007341159f983d2826914864e11adde2346238c8a60273ffffffffffffffffffffffffffffffffffffffff164760405161103a90612cf0565b60006040518083038185875af1925050503d8060008114611077576040519150601f19603f3d011682016040523d82523d6000602084013e61107c565b606091505b50509050806110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612d51565b60405180910390fd5b50565b60006110ce82611cc0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611195611c38565b61119f6000611e6f565b565b6111a9611c38565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6111dd611c38565b80600f8190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121e611c38565b8060118190555050565b60606004805461123790612b43565b80601f016020809104026020016040519081016040528092919081815260200182805461126390612b43565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b60146020528060005260406000206000915090505481565b60115481565b601260009054906101000a900460ff16611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90612dbd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90612e29565b60405180910390fd5b8061139e610c60565b6113a89190612c69565b600d546009546113b89190612ba3565b10156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612e95565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54828261144c9190612c69565b111561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490612f27565b60405180910390fd5b60008211801561149f5750600e548211155b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590612f93565b60405180910390fd5b600a54600b541061154857601154826114f79190612fb3565b341015611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613059565b60405180910390fd5b6115433383611e51565b611784565b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611728576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546115e09190612ba3565b905080831161165d5782600b60008282546115fb9190612c69565b9250508190555082601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116519190612c69565b92505081905550611718565b80600b600082825461166f9190612c69565b92505081905550601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060115481846116cb9190612ba3565b6116d59190612fb3565b341015611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e906130c5565b60405180910390fd5b5b6117223384611e51565b50611783565b601154826117369190612fb3565b341015611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906130c5565b60405180910390fd5b6117823383611e51565b5b5b81816117909190612c69565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6117df611c30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611843576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611850611c30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118fd611c30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119429190612558565b60405180910390a35050565b611959848484610c77565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119bb5761198484848484611f33565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9611c38565b80600e8190555050565b600c5481565b60606119e482611bd1565b611a1a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a24612083565b90506000815103611a445760405180602001604052806000815250611a6f565b80611a4e84612115565b604051602001611a5f929190613121565b6040516020818303038152906040525b915050919050565b600b5481565b600e5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611b38611c38565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906131b7565b60405180910390fd5b611bb081611e6f565b50565b60105481565b60156020528060005260406000206000915090505481565b600081611bdc611cb6565b11158015611beb575060015482105b8015611c29575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611c4061216f565b73ffffffffffffffffffffffffffffffffffffffff16611c5e6111ed565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613223565b60405180910390fd5b565b6000610140905090565b60008082905080611ccf611cb6565b11611d5557600154811015611d545760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d52575b60008103611d48576005600083600190039350838152602001908152602001600020549050611d1e565b8092505050611d87565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e0f868684612177565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e6b828260405180602001604052806000815250612180565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f59611c30565b8786866040518563ffffffff1660e01b8152600401611f7b9493929190613298565b6020604051808303816000875af1925050508015611fb757506040513d601f19601f82011682018060405250810190611fb491906132f9565b60015b612030573d8060008114611fe7576040519150601f19603f3d011682016040523d82523d6000602084013e611fec565b606091505b506000815103612028576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606013805461209290612b43565b80601f01602080910402602001604051908101604052809291908181526020018280546120be90612b43565b801561210b5780601f106120e05761010080835404028352916020019161210b565b820191906000526020600020905b8154815290600101906020018083116120ee57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561215b57600183039250600a81066030018353600a8104905061213b565b508181036020830392508083525050919050565b600033905090565b60009392505050565b61218a838361221e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122195760006001549050600083820390505b6121cb6000868380600101945086611f33565b612201576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121b857816001541461221657600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361228b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036122c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122d26000848385611df2565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123498361233a6000866000611df8565b612343856123f1565b17611e20565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061236d578060018190555050506123ec6000848385611e4b565b505050565b60006001821460e11b9050919050565b82805461240d90612b43565b90600052602060002090601f01602090048101928261242f5760008555612476565b82601f1061244857803560ff1916838001178555612476565b82800160010185558215612476579182015b8281111561247557823582559160200191906001019061245a565b5b5090506124839190612487565b5090565b5b808211156124a0576000816000905550600101612488565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ed816124b8565b81146124f857600080fd5b50565b60008135905061250a816124e4565b92915050565b600060208284031215612526576125256124ae565b5b6000612534848285016124fb565b91505092915050565b60008115159050919050565b6125528161253d565b82525050565b600060208201905061256d6000830184612549565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125ad578082015181840152602081019050612592565b838111156125bc576000848401525b50505050565b6000601f19601f8301169050919050565b60006125de82612573565b6125e8818561257e565b93506125f881856020860161258f565b612601816125c2565b840191505092915050565b6000602082019050818103600083015261262681846125d3565b905092915050565b6000819050919050565b6126418161262e565b811461264c57600080fd5b50565b60008135905061265e81612638565b92915050565b60006020828403121561267a576126796124ae565b5b60006126888482850161264f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126bc82612691565b9050919050565b6126cc816126b1565b82525050565b60006020820190506126e760008301846126c3565b92915050565b6126f6816126b1565b811461270157600080fd5b50565b600081359050612713816126ed565b92915050565b600080604083850312156127305761272f6124ae565b5b600061273e85828601612704565b925050602061274f8582860161264f565b9150509250929050565b6127628161262e565b82525050565b600060208201905061277d6000830184612759565b92915050565b60008060006060848603121561279c5761279b6124ae565b5b60006127aa86828701612704565b93505060206127bb86828701612704565b92505060406127cc8682870161264f565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126127fb576127fa6127d6565b5b8235905067ffffffffffffffff811115612818576128176127db565b5b602083019150836001820283011115612834576128336127e0565b5b9250929050565b60008060208385031215612852576128516124ae565b5b600083013567ffffffffffffffff8111156128705761286f6124b3565b5b61287c858286016127e5565b92509250509250929050565b60006020828403121561289e5761289d6124ae565b5b60006128ac84828501612704565b91505092915050565b6128be8161253d565b81146128c957600080fd5b50565b6000813590506128db816128b5565b92915050565b600080604083850312156128f8576128f76124ae565b5b600061290685828601612704565b9250506020612917858286016128cc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61295e826125c2565b810181811067ffffffffffffffff8211171561297d5761297c612926565b5b80604052505050565b60006129906124a4565b905061299c8282612955565b919050565b600067ffffffffffffffff8211156129bc576129bb612926565b5b6129c5826125c2565b9050602081019050919050565b82818337600083830152505050565b60006129f46129ef846129a1565b612986565b905082815260208101848484011115612a1057612a0f612921565b5b612a1b8482856129d2565b509392505050565b600082601f830112612a3857612a376127d6565b5b8135612a488482602086016129e1565b91505092915050565b60008060008060808587031215612a6b57612a6a6124ae565b5b6000612a7987828801612704565b9450506020612a8a87828801612704565b9350506040612a9b8782880161264f565b925050606085013567ffffffffffffffff811115612abc57612abb6124b3565b5b612ac887828801612a23565b91505092959194509250565b60008060408385031215612aeb57612aea6124ae565b5b6000612af985828601612704565b9250506020612b0a85828601612704565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5b57607f821691505b602082108103612b6e57612b6d612b14565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bae8261262e565b9150612bb98361262e565b925082821015612bcc57612bcb612b74565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612c3360278361257e565b9150612c3e82612bd7565b604082019050919050565b60006020820190508181036000830152612c6281612c26565b9050919050565b6000612c748261262e565b9150612c7f8361262e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cb457612cb3612b74565b5b828201905092915050565b600081905092915050565b50565b6000612cda600083612cbf565b9150612ce582612cca565b600082019050919050565b6000612cfb82612ccd565b9150819050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b6000612d3b60158361257e565b9150612d4682612d05565b602082019050919050565b60006020820190508181036000830152612d6a81612d2e565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b6000612da760178361257e565b9150612db282612d71565b602082019050919050565b60006020820190508181036000830152612dd681612d9a565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000612e13601c8361257e565b9150612e1e82612ddd565b602082019050919050565b60006020820190508181036000830152612e4281612e06565b9050919050565b7f4d6178206f7574206f66205363686f626c696e7320506f70756c6174696f6e2e600082015250565b6000612e7f60208361257e565b9150612e8a82612e49565b602082019050919050565b60006020820190508181036000830152612eae81612e72565b9050919050565b7f546f6f206d616e79205363686f6c696e7320696e20796f75722066616d696c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f1160218361257e565b9150612f1c82612eb5565b604082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b6000612f7d60148361257e565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b6000612fbe8261262e565b9150612fc98361262e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561300257613001612b74565b5b828202905092915050565b7f4e656564204d6f72652045544800000000000000000000000000000000000000600082015250565b6000613043600d8361257e565b915061304e8261300d565b602082019050919050565b6000602082019050818103600083015261307281613036565b9050919050565b7f4e656564206d6f72652045544800000000000000000000000000000000000000600082015250565b60006130af600d8361257e565b91506130ba82613079565b602082019050919050565b600060208201905081810360008301526130de816130a2565b9050919050565b600081905092915050565b60006130fb82612573565b61310581856130e5565b935061311581856020860161258f565b80840191505092915050565b600061312d82856130f0565b915061313982846130f0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131a160268361257e565b91506131ac82613145565b604082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061320d60208361257e565b9150613218826131d7565b602082019050919050565b6000602082019050818103600083015261323c81613200565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061326a82613243565b613274818561324e565b935061328481856020860161258f565b61328d816125c2565b840191505092915050565b60006080820190506132ad60008301876126c3565b6132ba60208301866126c3565b6132c76040830185612759565b81810360608301526132d9818461325f565b905095945050505050565b6000815190506132f3816124e4565b92915050565b60006020828403121561330f5761330e6124ae565b5b600061331d848285016132e4565b9150509291505056fea26469706673582212208fd4a8f6392b55a51f4ffe36e39af153f2f7f689311133e6e195a9a0aadbb44a64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80638bc35c2f1161012e578063c732d201116100ab578063e985e9c51161006f578063e985e9c5146107e7578063eb8d244414610824578063f2fde38b1461084f578063f4464cf114610878578063fbbf8cc3146108a357610230565b8063c732d201146106fe578063c87b56dd14610729578063cf6db22614610766578063d3464cbd14610791578063d5abeb01146107bc57610230565b8063a035b1fe116100f2578063a035b1fe1461063c578063a0712d6814610667578063a22cb46514610683578063b88d4fde146106ac578063c6f6f216146106d557610230565b80638bc35c2f146105555780638da5cb5b1461058057806391b7f5ed146105ab57806395d89b41146105d457806396b10201146105ff57610230565b80632fbba115116101bc5780636352211e116101805780636352211e1461048457806370a08231146104c1578063715018a6146104fe5780637ba5e621146105155780637bddd65b1461052c57610230565b80632fbba115146103d457806342842e0e146103fd578063475133341461042657806355f804b3146104515780635fd8c7101461047a57610230565b80631141df20116102035780631141df20146103035780631222b8e21461032c57806318160ddd1461035557806323b872dd1461038057806327a81bef146103a957610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190612510565b6108e0565b6040516102699190612558565b60405180910390f35b34801561027e57600080fd5b50610287610972565b604051610294919061260c565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190612664565b610a04565b6040516102d191906126d2565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612719565b610a80565b005b34801561030f57600080fd5b5061032a60048036038101906103259190612664565b610bc1565b005b34801561033857600080fd5b50610353600480360381019061034e9190612664565b610c3c565b005b34801561036157600080fd5b5061036a610c60565b6040516103779190612768565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612783565b610c77565b005b3480156103b557600080fd5b506103be610f99565b6040516103cb9190612768565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190612664565b610f9f565b005b34801561040957600080fd5b50610424600480360381019061041f9190612783565b610fb4565b005b34801561043257600080fd5b5061043b610fd4565b6040516104489190612768565b60405180910390f35b34801561045d57600080fd5b506104786004803603810190610473919061283b565b610fda565b005b610482610ff8565b005b34801561049057600080fd5b506104ab60048036038101906104a69190612664565b6110c3565b6040516104b891906126d2565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612888565b6110d5565b6040516104f59190612768565b60405180910390f35b34801561050a57600080fd5b5061051361118d565b005b34801561052157600080fd5b5061052a6111a1565b005b34801561053857600080fd5b50610553600480360381019061054e9190612664565b6111d5565b005b34801561056157600080fd5b5061056a6111e7565b6040516105779190612768565b60405180910390f35b34801561058c57600080fd5b506105956111ed565b6040516105a291906126d2565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612664565b611216565b005b3480156105e057600080fd5b506105e9611228565b6040516105f6919061260c565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612888565b6112ba565b6040516106339190612768565b60405180910390f35b34801561064857600080fd5b506106516112d2565b60405161065e9190612768565b60405180910390f35b610681600480360381019061067c9190612664565b6112d8565b005b34801561068f57600080fd5b506106aa60048036038101906106a591906128e1565b6117d7565b005b3480156106b857600080fd5b506106d360048036038101906106ce9190612a51565b61194e565b005b3480156106e157600080fd5b506106fc60048036038101906106f79190612664565b6119c1565b005b34801561070a57600080fd5b506107136119d3565b6040516107209190612768565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612664565b6119d9565b60405161075d919061260c565b60405180910390f35b34801561077257600080fd5b5061077b611a77565b6040516107889190612768565b60405180910390f35b34801561079d57600080fd5b506107a6611a7d565b6040516107b39190612768565b60405180910390f35b3480156107c857600080fd5b506107d1611a83565b6040516107de9190612768565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612ad4565b611a89565b60405161081b9190612558565b60405180910390f35b34801561083057600080fd5b50610839611b1d565b6040516108469190612558565b60405180910390f35b34801561085b57600080fd5b5061087660048036038101906108719190612888565b611b30565b005b34801561088457600080fd5b5061088d611bb3565b60405161089a9190612768565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190612888565b611bb9565b6040516108d79190612768565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461098190612b43565b80601f01602080910402602001604051908101604052809291908181526020018280546109ad90612b43565b80156109fa5780601f106109cf576101008083540402835291602001916109fa565b820191906000526020600020905b8154815290600101906020018083116109dd57829003601f168201915b5050505050905090565b6000610a0f82611bd1565b610a45576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8b826110c3565b90508073ffffffffffffffffffffffffffffffffffffffff16610aac611c30565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f57610ad881610ad3611c30565b611a89565b610b0e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610bc9611c38565b610bd1610c60565b81600954610bdf9190612ba3565b1015610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790612c49565b60405180910390fd5b8060096000828254610c329190612ba3565b9250508190555050565b610c44611c38565b8060096000828254610c569190612c69565b9250508190555050565b6000610c6a611cb6565b6002546001540303905090565b6000610c8282611cc0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ce9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cf584611d8c565b91509150610d0b8187610d06611c30565b611dae565b610d5757610d2086610d1b611c30565b611a89565b610d56576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dbd576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dca8686866001611df2565b8015610dd557600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ea385610e7f888887611df8565b7c020000000000000000000000000000000000000000000000000000000017611e20565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f295760006001850190506000600560008381526020019081526020016000205403610f27576001548114610f26578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f918686866001611e4b565b505050505050565b600d5481565b610fa7611c38565b610fb13382611e51565b50565b610fcf8383836040518060200160405280600081525061194e565b505050565b600a5481565b610fe2611c38565b818160139190610ff3929190612401565b505050565b611000611c38565b60007341159f983d2826914864e11adde2346238c8a60273ffffffffffffffffffffffffffffffffffffffff164760405161103a90612cf0565b60006040518083038185875af1925050503d8060008114611077576040519150601f19603f3d011682016040523d82523d6000602084013e61107c565b606091505b50509050806110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612d51565b60405180910390fd5b50565b60006110ce82611cc0565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361113c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611195611c38565b61119f6000611e6f565b565b6111a9611c38565b601260009054906101000a900460ff1615601260006101000a81548160ff021916908315150217905550565b6111dd611c38565b80600f8190555050565b600f5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121e611c38565b8060118190555050565b60606004805461123790612b43565b80601f016020809104026020016040519081016040528092919081815260200182805461126390612b43565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b60146020528060005260406000206000915090505481565b60115481565b601260009054906101000a900460ff16611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e90612dbd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90612e29565b60405180910390fd5b8061139e610c60565b6113a89190612c69565b600d546009546113b89190612ba3565b10156113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090612e95565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54828261144c9190612c69565b111561148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490612f27565b60405180910390fd5b60008211801561149f5750600e548211155b6114de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d590612f93565b60405180910390fd5b600a54600b541061154857601154826114f79190612fb3565b341015611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613059565b60405180910390fd5b6115433383611e51565b611784565b601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611728576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546010546115e09190612ba3565b905080831161165d5782600b60008282546115fb9190612c69565b9250508190555082601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116519190612c69565b92505081905550611718565b80600b600082825461166f9190612c69565b92505081905550601054601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060115481846116cb9190612ba3565b6116d59190612fb3565b341015611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e906130c5565b60405180910390fd5b5b6117223384611e51565b50611783565b601154826117369190612fb3565b341015611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906130c5565b60405180910390fd5b6117823383611e51565b5b5b81816117909190612c69565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6117df611c30565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611843576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611850611c30565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118fd611c30565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119429190612558565b60405180910390a35050565b611959848484610c77565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119bb5761198484848484611f33565b6119ba576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119c9611c38565b80600e8190555050565b600c5481565b60606119e482611bd1565b611a1a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a24612083565b90506000815103611a445760405180602001604052806000815250611a6f565b80611a4e84612115565b604051602001611a5f929190613121565b6040516020818303038152906040525b915050919050565b600b5481565b600e5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601260009054906101000a900460ff1681565b611b38611c38565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e906131b7565b60405180910390fd5b611bb081611e6f565b50565b60105481565b60156020528060005260406000206000915090505481565b600081611bdc611cb6565b11158015611beb575060015482105b8015611c29575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611c4061216f565b73ffffffffffffffffffffffffffffffffffffffff16611c5e6111ed565b73ffffffffffffffffffffffffffffffffffffffff1614611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613223565b60405180910390fd5b565b6000610140905090565b60008082905080611ccf611cb6565b11611d5557600154811015611d545760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d52575b60008103611d48576005600083600190039350838152602001908152602001600020549050611d1e565b8092505050611d87565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e0f868684612177565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611e6b828260405180602001604052806000815250612180565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f59611c30565b8786866040518563ffffffff1660e01b8152600401611f7b9493929190613298565b6020604051808303816000875af1925050508015611fb757506040513d601f19601f82011682018060405250810190611fb491906132f9565b60015b612030573d8060008114611fe7576040519150601f19603f3d011682016040523d82523d6000602084013e611fec565b606091505b506000815103612028576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606013805461209290612b43565b80601f01602080910402602001604051908101604052809291908181526020018280546120be90612b43565b801561210b5780601f106120e05761010080835404028352916020019161210b565b820191906000526020600020905b8154815290600101906020018083116120ee57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561215b57600183039250600a81066030018353600a8104905061213b565b508181036020830392508083525050919050565b600033905090565b60009392505050565b61218a838361221e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122195760006001549050600083820390505b6121cb6000868380600101945086611f33565b612201576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121b857816001541461221657600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361228b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036122c5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122d26000848385611df2565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123498361233a6000866000611df8565b612343856123f1565b17611e20565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061236d578060018190555050506123ec6000848385611e4b565b505050565b60006001821460e11b9050919050565b82805461240d90612b43565b90600052602060002090601f01602090048101928261242f5760008555612476565b82601f1061244857803560ff1916838001178555612476565b82800160010185558215612476579182015b8281111561247557823582559160200191906001019061245a565b5b5090506124839190612487565b5090565b5b808211156124a0576000816000905550600101612488565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124ed816124b8565b81146124f857600080fd5b50565b60008135905061250a816124e4565b92915050565b600060208284031215612526576125256124ae565b5b6000612534848285016124fb565b91505092915050565b60008115159050919050565b6125528161253d565b82525050565b600060208201905061256d6000830184612549565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125ad578082015181840152602081019050612592565b838111156125bc576000848401525b50505050565b6000601f19601f8301169050919050565b60006125de82612573565b6125e8818561257e565b93506125f881856020860161258f565b612601816125c2565b840191505092915050565b6000602082019050818103600083015261262681846125d3565b905092915050565b6000819050919050565b6126418161262e565b811461264c57600080fd5b50565b60008135905061265e81612638565b92915050565b60006020828403121561267a576126796124ae565b5b60006126888482850161264f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126bc82612691565b9050919050565b6126cc816126b1565b82525050565b60006020820190506126e760008301846126c3565b92915050565b6126f6816126b1565b811461270157600080fd5b50565b600081359050612713816126ed565b92915050565b600080604083850312156127305761272f6124ae565b5b600061273e85828601612704565b925050602061274f8582860161264f565b9150509250929050565b6127628161262e565b82525050565b600060208201905061277d6000830184612759565b92915050565b60008060006060848603121561279c5761279b6124ae565b5b60006127aa86828701612704565b93505060206127bb86828701612704565b92505060406127cc8682870161264f565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126127fb576127fa6127d6565b5b8235905067ffffffffffffffff811115612818576128176127db565b5b602083019150836001820283011115612834576128336127e0565b5b9250929050565b60008060208385031215612852576128516124ae565b5b600083013567ffffffffffffffff8111156128705761286f6124b3565b5b61287c858286016127e5565b92509250509250929050565b60006020828403121561289e5761289d6124ae565b5b60006128ac84828501612704565b91505092915050565b6128be8161253d565b81146128c957600080fd5b50565b6000813590506128db816128b5565b92915050565b600080604083850312156128f8576128f76124ae565b5b600061290685828601612704565b9250506020612917858286016128cc565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61295e826125c2565b810181811067ffffffffffffffff8211171561297d5761297c612926565b5b80604052505050565b60006129906124a4565b905061299c8282612955565b919050565b600067ffffffffffffffff8211156129bc576129bb612926565b5b6129c5826125c2565b9050602081019050919050565b82818337600083830152505050565b60006129f46129ef846129a1565b612986565b905082815260208101848484011115612a1057612a0f612921565b5b612a1b8482856129d2565b509392505050565b600082601f830112612a3857612a376127d6565b5b8135612a488482602086016129e1565b91505092915050565b60008060008060808587031215612a6b57612a6a6124ae565b5b6000612a7987828801612704565b9450506020612a8a87828801612704565b9350506040612a9b8782880161264f565b925050606085013567ffffffffffffffff811115612abc57612abb6124b3565b5b612ac887828801612a23565b91505092959194509250565b60008060408385031215612aeb57612aea6124ae565b5b6000612af985828601612704565b9250506020612b0a85828601612704565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b5b57607f821691505b602082108103612b6e57612b6d612b14565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bae8261262e565b9150612bb98361262e565b925082821015612bcc57612bcb612b74565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612c3360278361257e565b9150612c3e82612bd7565b604082019050919050565b60006020820190508181036000830152612c6281612c26565b9050919050565b6000612c748261262e565b9150612c7f8361262e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cb457612cb3612b74565b5b828201905092915050565b600081905092915050565b50565b6000612cda600083612cbf565b9150612ce582612cca565b600082019050919050565b6000612cfb82612ccd565b9150819050919050565b7f5465616d207472616e73666572206661696c65642e0000000000000000000000600082015250565b6000612d3b60158361257e565b9150612d4682612d05565b602082019050919050565b60006020820190508181036000830152612d6a81612d2e565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b6000612da760178361257e565b9150612db282612d71565b602082019050919050565b60006020820190508181036000830152612dd681612d9a565b9050919050565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b6000612e13601c8361257e565b9150612e1e82612ddd565b602082019050919050565b60006020820190508181036000830152612e4281612e06565b9050919050565b7f4d6178206f7574206f66205363686f626c696e7320506f70756c6174696f6e2e600082015250565b6000612e7f60208361257e565b9150612e8a82612e49565b602082019050919050565b60006020820190508181036000830152612eae81612e72565b9050919050565b7f546f6f206d616e79205363686f6c696e7320696e20796f75722066616d696c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f1160218361257e565b9150612f1c82612eb5565b604082019050919050565b60006020820190508181036000830152612f4081612f04565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b6000612f7d60148361257e565b9150612f8882612f47565b602082019050919050565b60006020820190508181036000830152612fac81612f70565b9050919050565b6000612fbe8261262e565b9150612fc98361262e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561300257613001612b74565b5b828202905092915050565b7f4e656564204d6f72652045544800000000000000000000000000000000000000600082015250565b6000613043600d8361257e565b915061304e8261300d565b602082019050919050565b6000602082019050818103600083015261307281613036565b9050919050565b7f4e656564206d6f72652045544800000000000000000000000000000000000000600082015250565b60006130af600d8361257e565b91506130ba82613079565b602082019050919050565b600060208201905081810360008301526130de816130a2565b9050919050565b600081905092915050565b60006130fb82612573565b61310581856130e5565b935061311581856020860161258f565b80840191505092915050565b600061312d82856130f0565b915061313982846130f0565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131a160268361257e565b91506131ac82613145565b604082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061320d60208361257e565b9150613218826131d7565b602082019050919050565b6000602082019050818103600083015261323c81613200565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061326a82613243565b613274818561324e565b935061328481856020860161258f565b61328d816125c2565b840191505092915050565b60006080820190506132ad60008301876126c3565b6132ba60208301866126c3565b6132c76040830185612759565b81810360608301526132d9818461325f565b905095945050505050565b6000815190506132f3816124e4565b92915050565b60006020828403121561330f5761330e6124ae565b5b600061331d848285016132e4565b9150509291505056fea26469706673582212208fd4a8f6392b55a51f4ffe36e39af153f2f7f689311133e6e195a9a0aadbb44a64736f6c634300080d0033

Deployed Bytecode Sourcemap

52208:4094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20684:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26331:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28277:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27825:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55360:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55716:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19738:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37542:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52454:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56187:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29167:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52311:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55600:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55949:230;;;:::i;:::-;;26120:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21363:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;55268:84;;;;;;;;;;;;;:::i;:::-;;55146:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52567:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54940:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26500:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52939:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52682:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53359:1571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28553:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29423:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55034:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52405:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26675:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52368:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52512:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52254:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28932:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52746:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52622:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52997;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20684:615;20769:4;21084:10;21069:25;;:11;:25;;;;:102;;;;21161:10;21146:25;;:11;:25;;;;21069:102;:179;;;;21238:10;21223:25;;:11;:25;;;;21069:179;21049:199;;20684:615;;;:::o;26331:100::-;26385:13;26418:5;26411:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26331:100;:::o;28277:204::-;28345:7;28370:16;28378:7;28370;:16::i;:::-;28365:64;;28395:34;;;;;;;;;;;;;;28365:64;28449:15;:24;28465:7;28449:24;;;;;;;;;;;;;;;;;;;;;28442:31;;28277:204;;;:::o;27825:386::-;27898:13;27914:16;27922:7;27914;:16::i;:::-;27898:32;;27970:5;27947:28;;:19;:17;:19::i;:::-;:28;;;27943:175;;27995:44;28012:5;28019:19;:17;:19::i;:::-;27995:16;:44::i;:::-;27990:128;;28067:35;;;;;;;;;;;;;;27990:128;27943:175;28157:2;28130:15;:24;28146:7;28130:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28195:7;28191:2;28175:28;;28184:5;28175:28;;;;;;;;;;;;27887:324;27825:386;;:::o;55360:232::-;4511:13;:11;:13::i;:::-;55472::::1;:11;:13::i;:::-;55461:7;55449:9;;:19;;;;:::i;:::-;:36;;55427:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;55577:7;55564:9;;:20;;;;;;;:::i;:::-;;;;;;;;55360:232:::0;:::o;55716:99::-;4511:13;:11;:13::i;:::-;55800:7:::1;55787:9;;:20;;;;;;;:::i;:::-;;;;;;;;55716:99:::0;:::o;19738:315::-;19791:7;20019:15;:13;:15::i;:::-;20004:12;;19988:13;;:28;:46;19981:53;;19738:315;:::o;37542:2800::-;37676:27;37706;37725:7;37706:18;:27::i;:::-;37676:57;;37791:4;37750:45;;37766:19;37750:45;;;37746:86;;37804:28;;;;;;;;;;;;;;37746:86;37846:27;37875:23;37902:28;37922:7;37902:19;:28::i;:::-;37845:85;;;;38030:62;38049:15;38066:4;38072:19;:17;:19::i;:::-;38030:18;:62::i;:::-;38025:174;;38112:43;38129:4;38135:19;:17;:19::i;:::-;38112:16;:43::i;:::-;38107:92;;38164:35;;;;;;;;;;;;;;38107:92;38025:174;38230:1;38216:16;;:2;:16;;;38212:52;;38241:23;;;;;;;;;;;;;;38212:52;38277:43;38299:4;38305:2;38309:7;38318:1;38277:21;:43::i;:::-;38413:15;38410:160;;;38553:1;38532:19;38525:30;38410:160;38948:18;:24;38967:4;38948:24;;;;;;;;;;;;;;;;38946:26;;;;;;;;;;;;39017:18;:22;39036:2;39017:22;;;;;;;;;;;;;;;;39015:24;;;;;;;;;;;39339:145;39376:2;39424:45;39439:4;39445:2;39449:19;39424:14;:45::i;:::-;16964:8;39397:72;39339:18;:145::i;:::-;39310:17;:26;39328:7;39310:26;;;;;;;;;;;:174;;;;39654:1;16964:8;39604:19;:46;:51;39600:626;;39676:19;39708:1;39698:7;:11;39676:33;;39865:1;39831:17;:30;39849:11;39831:30;;;;;;;;;;;;:35;39827:384;;39969:13;;39954:11;:28;39950:242;;40149:19;40116:17;:30;40134:11;40116:30;;;;;;;;;;;:52;;;;39950:242;39827:384;39657:569;39600:626;40273:7;40269:2;40254:27;;40263:4;40254:27;;;;;;;;;;;;40292:42;40313:4;40319:2;40323:7;40332:1;40292:20;:42::i;:::-;37665:2677;;;37542:2800;;;:::o;52454:49::-;;;;:::o;56187:110::-;4511:13;:11;:13::i;:::-;56259:30:::1;56269:10;56281:7;56259:9;:30::i;:::-;56187:110:::0;:::o;29167:185::-;29305:39;29322:4;29328:2;29332:7;29305:39;;;;;;;;;;;;:16;:39::i;:::-;29167:185;;;:::o;52311:50::-;;;;:::o;55600:106::-;4511:13;:11;:13::i;:::-;55691:7:::1;;55675:13;:23;;;;;;;:::i;:::-;;55600:106:::0;;:::o;55949:230::-;4511:13;:11;:13::i;:::-;56017:12:::1;52851:42;56035:26;;56083:21;56035:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56016:103;;;56138:7;56130:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;56003:176;55949:230::o:0;26120:144::-;26184:7;26227:27;26246:7;26227:18;:27::i;:::-;26204:52;;26120:144;;;:::o;21363:224::-;21427:7;21468:1;21451:19;;:5;:19;;;21447:60;;21479:28;;;;;;;;;;;;;;21447:60;15916:13;21525:18;:25;21544:5;21525:25;;;;;;;;;;;;;;;;:54;21518:61;;21363:224;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;55268:84::-;4511:13;:11;:13::i;:::-;55332:12:::1;;;;;;;;;;;55331:13;55316:12;;:28;;;;;;;;;;;;;;;;;;55268:84::o:0;55146:114::-;4511:13;:11;:13::i;:::-;55245:7:::1;55219:23;:33;;;;55146:114:::0;:::o;52567:48::-;;;;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;54940:86::-;4511:13;:11;:13::i;:::-;55012:6:::1;55004:5;:14;;;;54940:86:::0;:::o;26500:104::-;26556:13;26589:7;26582:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26500:104;:::o;52939:51::-;;;;;;;;;;;;;;;;;:::o;52682:57::-;;;;:::o;53359:1571::-;53158:12;;;;;;;;;;;53150:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;53230:10;53217:23;;:9;:23;;;53209:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;53503:9:::1;53487:13;:11;:13::i;:::-;:25;;;;:::i;:::-;53471:12;;53459:9;;:24;;;;:::i;:::-;:53;;53437:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;53583:21;53607:12;:24;53620:10;53607:24;;;;;;;;;;;;;;;;53583:48;;53693:23;;53680:9;53664:13;:25;;;;:::i;:::-;:52;;53642:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;53822:1;53810:9;:13;:48;;;;;53840:18;;53827:9;:31;;53810:48;53788:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;53940:13;;53921:15;;:32;53917:943;;54000:5;;53990:9;:15;;;;:::i;:::-;53978:9;:27;;53970:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54038:32;54048:10;54060:9;54038;:32::i;:::-;53917:943;;;54122:17;;54091:16;:28;54108:10;54091:28;;;;;;;;;;;;;;;;:48;54087:773;;;54151:29;54203:16;:28;54220:10;54203:28;;;;;;;;;;;;;;;;54183:17;;:48;;;;:::i;:::-;54151:80;;54265:21;54252:9;:34;54248:411;;54326:9;54307:15;;:28;;;;;;;:::i;:::-;;;;;;;;54385:9;54354:16;:28;54371:10;54354:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;54248:411;;;54454:21;54435:15;;:40;;;;;;;:::i;:::-;;;;;;;;54525:17;;54494:16;:28;54511:10;54494:28;;;;;;;;;;;;;;;:48;;;;54616:5;;54593:21;54583:9;:31;;;;:::i;:::-;54582:39;;;;:::i;:::-;54569:9;:52;;54561:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;54248:411;54677:32;54687:10;54699:9;54677;:32::i;:::-;54140:583;54087:773;;;54773:5;;54763:9;:15;;;;:::i;:::-;54750:9;:28;;54742:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;54811:32;54821:10;54833:9;54811;:32::i;:::-;54087:773;53917:943;54913:9;54897:13;:25;;;;:::i;:::-;54870:12;:24;54883:10;54870:24;;;;;;;;;;;;;;;:52;;;;53426:1504;53359:1571:::0;:::o;28553:308::-;28664:19;:17;:19::i;:::-;28652:31;;:8;:31;;;28648:61;;28692:17;;;;;;;;;;;;;;28648:61;28774:8;28722:18;:39;28741:19;:17;:19::i;:::-;28722:39;;;;;;;;;;;;;;;:49;28762:8;28722:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28834:8;28798:55;;28813:19;:17;:19::i;:::-;28798:55;;;28844:8;28798:55;;;;;;:::i;:::-;;;;;;;;28553:308;;:::o;29423:399::-;29590:31;29603:4;29609:2;29613:7;29590:12;:31::i;:::-;29654:1;29636:2;:14;;;:19;29632:183;;29675:56;29706:4;29712:2;29716:7;29725:5;29675:30;:56::i;:::-;29670:145;;29759:40;;;;;;;;;;;;;;29670:145;29632:183;29423:399;;;;:::o;55034:104::-;4511:13;:11;:13::i;:::-;55123:7:::1;55102:18;:28;;;;55034:104:::0;:::o;52405:42::-;;;;:::o;26675:318::-;26748:13;26779:16;26787:7;26779;:16::i;:::-;26774:59;;26804:29;;;;;;;;;;;;;;26774:59;26846:21;26870:10;:8;:10::i;:::-;26846:34;;26923:1;26904:7;26898:21;:26;:87;;;;;;;;;;;;;;;;;26951:7;26960:18;26970:7;26960:9;:18::i;:::-;26934:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26898:87;26891:94;;;26675:318;;;:::o;52368:30::-;;;;:::o;52512:48::-;;;;:::o;52254:50::-;;;;:::o;28932:164::-;29029:4;29053:18;:25;29072:5;29053:25;;;;;;;;;;;;;;;:35;29079:8;29053:35;;;;;;;;;;;;;;;;;;;;;;;;;29046:42;;28932:164;;;;:::o;52746:51::-;;;;;;;;;;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;::::0;5612:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;52622:47::-;;;;:::o;52997:::-;;;;;;;;;;;;;;;;;:::o;30077:273::-;30134:4;30190:7;30171:15;:13;:15::i;:::-;:26;;:66;;;;;30224:13;;30214:7;:23;30171:66;:152;;;;;30322:1;16686:8;30275:17;:26;30293:7;30275:26;;;;;;;;;;;;:43;:48;30171:152;30151:172;;30077:273;;;:::o;48638:105::-;48698:7;48725:10;48718:17;;48638:105;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;19260:94::-;19316:7;19343:3;19336:10;;19260:94;:::o;23037:1129::-;23104:7;23124:12;23139:7;23124:22;;23207:4;23188:15;:13;:15::i;:::-;:23;23184:915;;23241:13;;23234:4;:20;23230:869;;;23279:14;23296:17;:23;23314:4;23296:23;;;;;;;;;;;;23279:40;;23412:1;16686:8;23385:6;:23;:28;23381:699;;23904:113;23921:1;23911:6;:11;23904:113;;23964:17;:25;23982:6;;;;;;;23964:25;;;;;;;;;;;;23955:34;;23904:113;;;24050:6;24043:13;;;;;;23381:699;23256:843;23230:869;23184:915;24127:31;;;;;;;;;;;;;;23037:1129;;;;:::o;35878:652::-;35973:27;36002:23;36043:53;36099:15;36043:71;;36285:7;36279:4;36272:21;36320:22;36314:4;36307:36;36396:4;36390;36380:21;36357:44;;36492:19;36486:26;36467:45;;36223:300;35878:652;;;:::o;36643:645::-;36785:11;36947:15;36941:4;36937:26;36929:34;;37106:15;37095:9;37091:31;37078:44;;37253:15;37242:9;37239:30;37232:4;37221:9;37218:19;37215:55;37205:65;;36643:645;;;;;:::o;47471:159::-;;;;;:::o;45783:309::-;45918:7;45938:16;17087:3;45964:19;:40;;45938:67;;17087:3;46031:31;46042:4;46048:2;46052:9;46031:10;:31::i;:::-;46023:40;;:61;;46016:68;;;45783:309;;;;;:::o;25611:447::-;25691:14;25859:15;25852:5;25848:27;25839:36;;26033:5;26019:11;25995:22;25991:40;25988:51;25981:5;25978:62;25968:72;;25611:447;;;;:::o;48289:158::-;;;;;:::o;30434:104::-;30503:27;30513:2;30517:8;30503:27;;;;;;;;;;;;:9;:27::i;:::-;30434:104;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;44293:716::-;44456:4;44502:2;44477:45;;;44523:19;:17;:19::i;:::-;44544:4;44550:7;44559:5;44477:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44473:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44777:1;44760:6;:13;:18;44756:235;;44806:40;;;;;;;;;;;;;;44756:235;44949:6;44943:13;44934:6;44930:2;44926:15;44919:38;44473:529;44646:54;;;44636:64;;;:6;:64;;;;44629:71;;;44293:716;;;;;;:::o;55827:114::-;55887:13;55920;55913:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55827:114;:::o;48849:1960::-;48906:17;49325:3;49318:4;49312:11;49308:21;49301:28;;49416:3;49410:4;49403:17;49522:3;49978:5;50108:1;50103:3;50099:11;50092:18;;50245:2;50239:4;50235:13;50231:2;50227:22;50222:3;50214:36;50286:2;50280:4;50276:13;50268:21;;49870:697;50305:4;49870:697;;;50496:1;50491:3;50487:11;50480:18;;50547:2;50541:4;50537:13;50533:2;50529:22;50524:3;50516:36;50400:2;50394:4;50390:13;50382:21;;49870:697;;;49874:430;50606:3;50601;50597:13;50721:2;50716:3;50712:12;50705:19;;50784:6;50779:3;50772:19;48945:1857;;48849:1960;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;46668:147::-;46805:6;46668:147;;;;;:::o;30954:681::-;31077:19;31083:2;31087:8;31077:5;:19::i;:::-;31156:1;31138:2;:14;;;:19;31134:483;;31178:11;31192:13;;31178:27;;31224:13;31246:8;31240:3;:14;31224:30;;31273:233;31304:62;31343:1;31347:2;31351:7;;;;;;31360:5;31304:30;:62::i;:::-;31299:167;;31402:40;;;;;;;;;;;;;;31299:167;31501:3;31493:5;:11;31273:233;;31588:3;31571:13;;:20;31567:34;;31593:8;;;31567:34;31159:458;;31134:483;30954:681;;;:::o;31908:1529::-;31973:20;31996:13;;31973:36;;32038:1;32024:16;;:2;:16;;;32020:48;;32049:19;;;;;;;;;;;;;;32020:48;32095:1;32083:8;:13;32079:44;;32105:18;;;;;;;;;;;;;;32079:44;32136:61;32166:1;32170:2;32174:12;32188:8;32136:21;:61::i;:::-;32679:1;16053:2;32650:1;:25;;32649:31;32637:8;:44;32611:18;:22;32630:2;32611:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;32958:139;32995:2;33049:33;33072:1;33076:2;33080:1;33049:14;:33::i;:::-;33016:30;33037:8;33016:20;:30::i;:::-;:66;32958:18;:139::i;:::-;32924:17;:31;32942:12;32924:31;;;;;;;;;;;:173;;;;33114:15;33132:12;33114:30;;33159:11;33188:8;33173:12;:23;33159:37;;33211:101;33263:9;;;;;;33259:2;33238:35;;33255:1;33238:35;;;;;;;;;;;;33307:3;33297:7;:13;33211:101;;33344:3;33328:13;:19;;;;32385:974;;33369:60;33398:1;33402:2;33406:12;33420:8;33369:20;:60::i;:::-;31962:1475;31908:1529;;:::o;27441:322::-;27511:14;27742:1;27732:8;27729:15;27704:23;27700:45;27690:55;;27441:322;;;:::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:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:180::-;12428:77;12425:1;12418:88;12525:4;12522:1;12515:15;12549:4;12546:1;12539:15;12566:191;12606:4;12626:20;12644:1;12626:20;:::i;:::-;12621:25;;12660:20;12678:1;12660:20;:::i;:::-;12655:25;;12699:1;12696;12693:8;12690:34;;;12704:18;;:::i;:::-;12690:34;12749:1;12746;12742:9;12734:17;;12566:191;;;;:::o;12763:226::-;12903:34;12899:1;12891:6;12887:14;12880:58;12972:9;12967:2;12959:6;12955:15;12948:34;12763:226;:::o;12995:366::-;13137:3;13158:67;13222:2;13217:3;13158:67;:::i;:::-;13151:74;;13234:93;13323:3;13234:93;:::i;:::-;13352:2;13347:3;13343:12;13336:19;;12995:366;;;:::o;13367:419::-;13533:4;13571:2;13560:9;13556:18;13548:26;;13620:9;13614:4;13610:20;13606:1;13595:9;13591:17;13584:47;13648:131;13774:4;13648:131;:::i;:::-;13640:139;;13367:419;;;:::o;13792:305::-;13832:3;13851:20;13869:1;13851:20;:::i;:::-;13846:25;;13885:20;13903:1;13885:20;:::i;:::-;13880:25;;14039:1;13971:66;13967:74;13964:1;13961:81;13958:107;;;14045:18;;:::i;:::-;13958:107;14089:1;14086;14082:9;14075:16;;13792:305;;;;:::o;14103:147::-;14204:11;14241:3;14226:18;;14103:147;;;;:::o;14256:114::-;;:::o;14376:398::-;14535:3;14556:83;14637:1;14632:3;14556:83;:::i;:::-;14549:90;;14648:93;14737:3;14648:93;:::i;:::-;14766:1;14761:3;14757:11;14750:18;;14376:398;;;:::o;14780:379::-;14964:3;14986:147;15129:3;14986:147;:::i;:::-;14979:154;;15150:3;15143:10;;14780:379;;;:::o;15165:171::-;15305:23;15301:1;15293:6;15289:14;15282:47;15165:171;:::o;15342:366::-;15484:3;15505:67;15569:2;15564:3;15505:67;:::i;:::-;15498:74;;15581:93;15670:3;15581:93;:::i;:::-;15699:2;15694:3;15690:12;15683:19;;15342:366;;;:::o;15714:419::-;15880:4;15918:2;15907:9;15903:18;15895:26;;15967:9;15961:4;15957:20;15953:1;15942:9;15938:17;15931:47;15995:131;16121:4;15995:131;:::i;:::-;15987:139;;15714:419;;;:::o;16139:173::-;16279:25;16275:1;16267:6;16263:14;16256:49;16139:173;:::o;16318:366::-;16460:3;16481:67;16545:2;16540:3;16481:67;:::i;:::-;16474:74;;16557:93;16646:3;16557:93;:::i;:::-;16675:2;16670:3;16666:12;16659:19;;16318:366;;;:::o;16690:419::-;16856:4;16894:2;16883:9;16879:18;16871:26;;16943:9;16937:4;16933:20;16929:1;16918:9;16914:17;16907:47;16971:131;17097:4;16971:131;:::i;:::-;16963:139;;16690:419;;;:::o;17115:178::-;17255:30;17251:1;17243:6;17239:14;17232:54;17115:178;:::o;17299:366::-;17441:3;17462:67;17526:2;17521:3;17462:67;:::i;:::-;17455:74;;17538:93;17627:3;17538:93;:::i;:::-;17656:2;17651:3;17647:12;17640:19;;17299:366;;;:::o;17671:419::-;17837:4;17875:2;17864:9;17860:18;17852:26;;17924:9;17918:4;17914:20;17910:1;17899:9;17895:17;17888:47;17952:131;18078:4;17952:131;:::i;:::-;17944:139;;17671:419;;;:::o;18096:182::-;18236:34;18232:1;18224:6;18220:14;18213:58;18096:182;:::o;18284:366::-;18426:3;18447:67;18511:2;18506:3;18447:67;:::i;:::-;18440:74;;18523:93;18612:3;18523:93;:::i;:::-;18641:2;18636:3;18632:12;18625:19;;18284:366;;;:::o;18656:419::-;18822:4;18860:2;18849:9;18845:18;18837:26;;18909:9;18903:4;18899:20;18895:1;18884:9;18880:17;18873:47;18937:131;19063:4;18937:131;:::i;:::-;18929:139;;18656:419;;;:::o;19081:220::-;19221:34;19217:1;19209:6;19205:14;19198:58;19290:3;19285:2;19277:6;19273:15;19266:28;19081:220;:::o;19307:366::-;19449:3;19470:67;19534:2;19529:3;19470:67;:::i;:::-;19463:74;;19546:93;19635:3;19546:93;:::i;:::-;19664:2;19659:3;19655:12;19648:19;;19307:366;;;:::o;19679:419::-;19845:4;19883:2;19872:9;19868:18;19860:26;;19932:9;19926:4;19922:20;19918:1;19907:9;19903:17;19896:47;19960:131;20086:4;19960:131;:::i;:::-;19952:139;;19679:419;;;:::o;20104:170::-;20244:22;20240:1;20232:6;20228:14;20221:46;20104:170;:::o;20280:366::-;20422:3;20443:67;20507:2;20502:3;20443:67;:::i;:::-;20436:74;;20519:93;20608:3;20519:93;:::i;:::-;20637:2;20632:3;20628:12;20621:19;;20280:366;;;:::o;20652:419::-;20818:4;20856:2;20845:9;20841:18;20833:26;;20905:9;20899:4;20895:20;20891:1;20880:9;20876:17;20869:47;20933:131;21059:4;20933:131;:::i;:::-;20925:139;;20652:419;;;:::o;21077:348::-;21117:7;21140:20;21158:1;21140:20;:::i;:::-;21135:25;;21174:20;21192:1;21174:20;:::i;:::-;21169:25;;21362:1;21294:66;21290:74;21287:1;21284:81;21279:1;21272:9;21265:17;21261:105;21258:131;;;21369:18;;:::i;:::-;21258:131;21417:1;21414;21410:9;21399:20;;21077:348;;;;:::o;21431:163::-;21571:15;21567:1;21559:6;21555:14;21548:39;21431:163;:::o;21600:366::-;21742:3;21763:67;21827:2;21822:3;21763:67;:::i;:::-;21756:74;;21839:93;21928:3;21839:93;:::i;:::-;21957:2;21952:3;21948:12;21941:19;;21600:366;;;:::o;21972:419::-;22138:4;22176:2;22165:9;22161:18;22153:26;;22225:9;22219:4;22215:20;22211:1;22200:9;22196:17;22189:47;22253:131;22379:4;22253:131;:::i;:::-;22245:139;;21972:419;;;:::o;22397:163::-;22537:15;22533:1;22525:6;22521:14;22514:39;22397:163;:::o;22566:366::-;22708:3;22729:67;22793:2;22788:3;22729:67;:::i;:::-;22722:74;;22805:93;22894:3;22805:93;:::i;:::-;22923:2;22918:3;22914:12;22907:19;;22566:366;;;:::o;22938:419::-;23104:4;23142:2;23131:9;23127:18;23119:26;;23191:9;23185:4;23181:20;23177:1;23166:9;23162:17;23155:47;23219:131;23345:4;23219:131;:::i;:::-;23211:139;;22938:419;;;:::o;23363:148::-;23465:11;23502:3;23487:18;;23363:148;;;;:::o;23517:377::-;23623:3;23651:39;23684:5;23651:39;:::i;:::-;23706:89;23788:6;23783:3;23706:89;:::i;:::-;23699:96;;23804:52;23849:6;23844:3;23837:4;23830:5;23826:16;23804:52;:::i;:::-;23881:6;23876:3;23872:16;23865:23;;23627:267;23517:377;;;;:::o;23900:435::-;24080:3;24102:95;24193:3;24184:6;24102:95;:::i;:::-;24095:102;;24214:95;24305:3;24296:6;24214:95;:::i;:::-;24207:102;;24326:3;24319:10;;23900:435;;;;;:::o;24341:225::-;24481:34;24477:1;24469:6;24465:14;24458:58;24550:8;24545:2;24537:6;24533:15;24526:33;24341:225;:::o;24572:366::-;24714:3;24735:67;24799:2;24794:3;24735:67;:::i;:::-;24728:74;;24811:93;24900:3;24811:93;:::i;:::-;24929:2;24924:3;24920:12;24913:19;;24572:366;;;:::o;24944:419::-;25110:4;25148:2;25137:9;25133:18;25125:26;;25197:9;25191:4;25187:20;25183:1;25172:9;25168:17;25161:47;25225:131;25351:4;25225:131;:::i;:::-;25217:139;;24944:419;;;:::o;25369:182::-;25509:34;25505:1;25497:6;25493:14;25486:58;25369:182;:::o;25557:366::-;25699:3;25720:67;25784:2;25779:3;25720:67;:::i;:::-;25713:74;;25796:93;25885:3;25796:93;:::i;:::-;25914:2;25909:3;25905:12;25898:19;;25557:366;;;:::o;25929:419::-;26095:4;26133:2;26122:9;26118:18;26110:26;;26182:9;26176:4;26172:20;26168:1;26157:9;26153:17;26146:47;26210:131;26336:4;26210:131;:::i;:::-;26202:139;;25929:419;;;:::o;26354:98::-;26405:6;26439:5;26433:12;26423:22;;26354:98;;;:::o;26458:168::-;26541:11;26575:6;26570:3;26563:19;26615:4;26610:3;26606:14;26591:29;;26458:168;;;;:::o;26632:360::-;26718:3;26746:38;26778:5;26746:38;:::i;:::-;26800:70;26863:6;26858:3;26800:70;:::i;:::-;26793:77;;26879:52;26924:6;26919:3;26912:4;26905:5;26901:16;26879:52;:::i;:::-;26956:29;26978:6;26956:29;:::i;:::-;26951:3;26947:39;26940:46;;26722:270;26632:360;;;;:::o;26998:640::-;27193:4;27231:3;27220:9;27216:19;27208:27;;27245:71;27313:1;27302:9;27298:17;27289:6;27245:71;:::i;:::-;27326:72;27394:2;27383:9;27379:18;27370:6;27326:72;:::i;:::-;27408;27476:2;27465:9;27461:18;27452:6;27408:72;:::i;:::-;27527:9;27521:4;27517:20;27512:2;27501:9;27497:18;27490:48;27555:76;27626:4;27617:6;27555:76;:::i;:::-;27547:84;;26998:640;;;;;;;:::o;27644:141::-;27700:5;27731:6;27725:13;27716:22;;27747:32;27773:5;27747:32;:::i;:::-;27644:141;;;;:::o;27791:349::-;27860:6;27909:2;27897:9;27888:7;27884:23;27880:32;27877:119;;;27915:79;;:::i;:::-;27877:119;28035:1;28060:63;28115:7;28106:6;28095:9;28091:22;28060:63;:::i;:::-;28050:73;;28006:127;27791:349;;;;:::o

Swarm Source

ipfs://8fd4a8f6392b55a51f4ffe36e39af153f2f7f689311133e6e195a9a0aadbb44a
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.