ETH Price: $3,932.70 (+4.99%)

Token

Meta Force Army (MFA)
 

Overview

Max Total Supply

133 MFA

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MFA
0x2486630bc0a951906d90a90ad385d751c1e6ca66
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:
MetaForceArmy

Compiler Version
v0.8.7+commit.e28d00a7

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-02
*/

// 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: contracts/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: contracts/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 1;
    }

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

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

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

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

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

    /**
     * @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), ".json")) : '';
    }

    /**
     * @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/metaforce.sol


// MetaForceArmy Contract

pragma solidity ^0.8.4;



contract MetaForceArmy is ERC721A, Ownable {
  string public baseURI;
  string public baseExtension = ".json";
  uint256 public wlCost = 0.079 ether;
  uint256 public publicCost = 0.11 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 5;
  bool public isWl = false;
  bool public isPublic = false;

    constructor() ERC721A("Meta Force Army", "MFA") {
    setBaseURI("https://mint.metaforcearmy.com/nfts/");
    _mint(msg.sender, 100);

    }

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

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

            function setWlMint(bool _paused) public {
            require(msg.sender == owner(), "You are not the owner");
            isWl = _paused;
            }

          function setPublicMint(bool _paused) public {
            require(msg.sender == owner(), "You are not the owner");
            isPublic = _paused;
            }


        function withdraw(uint256 withdrawAmount) public onlyOwner {
            require(withdrawAmount <= address(this).balance, "Invalid amount");
            payable(msg.sender).transfer(withdrawAmount);
        }


        function wlMint(uint256 quantity) external payable {
         require(isWl == true, "Whitelist Mint not activated");
         require(quantity > 0, "Cannot mint less than 1");
         require(quantity <= 5, "Cannot mint more than 5");
         require(msg.value >= wlCost * quantity, "Insufficient funds");
         require(_totalMinted() + quantity <= maxSupply, "Cannot mint more than maxSupply");
        _mint(msg.sender, quantity);  
    }

        function publicMint(uint256 quantity) external payable {
         require(isPublic == true, "Public Mint not activated");
         require(quantity > 0, "Cannot mint less than 1");
         require(quantity <= 5, "Cannot mint more than 5");
         require(msg.value >= publicCost * quantity, "Insufficient funds");
         require(_totalMinted() + quantity <= maxSupply, "Cannot mint more than maxSupply");
        _mint(msg.sender, quantity);
    }
}

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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setWlMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"withdrawAmount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000519291906200060f565b50670118aa14d9418000600b55670186cc6acd4b0000600c55610d05600d556005600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000b857600080fd5b506040518060400160405280600f81526020017f4d65746120466f7263652041726d7900000000000000000000000000000000008152506040518060400160405280600381526020017f4d4641000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013d9291906200060f565b508060039080519060200190620001569291906200060f565b5062000167620001d260201b60201c565b60008190555050506200018f62000183620001db60201b60201c565b620001e360201b60201c565b620001b96040518060600160405280602481526020016200374660249139620002a960201b60201c565b620001cc336064620002d560201b60201c565b620007a7565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b9620004d460201b60201c565b8060099080519060200190620002d19291906200060f565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000343576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156200037f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200039460008483856200056560201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000423836200040560008660006200056b60201b60201c565b62000416856200059b60201b60201c565b17620005ab60201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200044757806000819055505050620004cf6000848385620005d660201b60201c565b505050565b620004e4620001db60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200050a620005dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000563576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055a90620006e6565b60405180910390fd5b565b50505050565b60008060e883901c905060e86200058a8686846200060660201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60009392505050565b8280546200061d9062000719565b90600052602060002090601f0160209004810192826200064157600085556200068d565b82601f106200065c57805160ff19168380011785556200068d565b828001600101855582156200068d579182015b828111156200068c5782518255916020019190600101906200066f565b5b5090506200069c9190620006a0565b5090565b5b80821115620006bb576000816000905550600101620006a1565b5090565b6000620006ce60208362000708565b9150620006db826200077e565b602082019050919050565b600060208201905081810360008301526200070181620006bf565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200073257607f821691505b602082108114156200074957620007486200074f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612f8f80620007b76000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063b88d4fde11610095578063d70a28d111610064578063d70a28d11461067c578063dc9a1535146106a7578063e985e9c5146106d2578063f2fde38b1461070f576101d8565b8063b88d4fde146105c0578063c6682862146105e9578063c87b56dd14610614578063d5abeb0114610651576101d8565b80638da5cb5b116100d15780638da5cb5b1461051657806395d89b41146105415780639b7fd84c1461056c578063a22cb46514610597576101d8565b80636c0360eb1461046c57806370a0823114610497578063715018a6146104d45780638693da20146104eb576101d8565b8063239c70ae1161017a57806342842e0e1161014957806342842e0e146103c157806355f804b3146103ea5780636352211e146104135780636aabb94714610450576101d8565b8063239c70ae1461032857806323b872dd146103535780632db115441461037c5780632e1a7d4d14610398576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630af0bfc8146102ab5780630e2d56cf146102d457806318160ddd146102fd576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612480565b610738565b6040516102119190612837565b60405180910390f35b34801561022657600080fd5b5061022f6107ca565b60405161023c9190612852565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612523565b61085c565b60405161027991906127d0565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612413565b6108d8565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612453565b610a19565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190612453565b610aab565b005b34801561030957600080fd5b50610312610b3d565b60405161031f91906129b4565b60405180910390f35b34801561033457600080fd5b5061033d610b54565b60405161034a91906129b4565b60405180910390f35b34801561035f57600080fd5b5061037a600480360381019061037591906122fd565b610b5a565b005b61039660048036038101906103919190612523565b610e7f565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612523565b611010565b005b3480156103cd57600080fd5b506103e860048036038101906103e391906122fd565b6110a5565b005b3480156103f657600080fd5b50610411600480360381019061040c91906124da565b6110c5565b005b34801561041f57600080fd5b5061043a60048036038101906104359190612523565b6110e7565b60405161044791906127d0565b60405180910390f35b61046a60048036038101906104659190612523565b6110f9565b005b34801561047857600080fd5b5061048161128a565b60405161048e9190612852565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612290565b611318565b6040516104cb91906129b4565b60405180910390f35b3480156104e057600080fd5b506104e96113d1565b005b3480156104f757600080fd5b506105006113e5565b60405161050d91906129b4565b60405180910390f35b34801561052257600080fd5b5061052b6113eb565b60405161053891906127d0565b60405180910390f35b34801561054d57600080fd5b50610556611415565b6040516105639190612852565b60405180910390f35b34801561057857600080fd5b506105816114a7565b60405161058e9190612837565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906123d3565b6114ba565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612350565b611632565b005b3480156105f557600080fd5b506105fe6116a5565b60405161060b9190612852565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190612523565b611733565b6040516106489190612852565b60405180910390f35b34801561065d57600080fd5b506106666117d2565b60405161067391906129b4565b60405180910390f35b34801561068857600080fd5b506106916117d8565b60405161069e91906129b4565b60405180910390f35b3480156106b357600080fd5b506106bc6117de565b6040516106c99190612837565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906122bd565b6117f1565b6040516107069190612837565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612290565b611885565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d990612bff565b80601f016020809104026020016040519081016040528092919081815260200182805461080590612bff565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782611909565b61089d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e3826110e7565b90508073ffffffffffffffffffffffffffffffffffffffff16610904611968565b73ffffffffffffffffffffffffffffffffffffffff1614610967576109308161092b611968565b6117f1565b610966576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a216113eb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590612934565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b610ab36113eb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612934565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000610b47611970565b6001546000540303905090565b600e5481565b6000610b6582611979565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bcc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bd884611a47565b91509150610bee8187610be9611968565b611a69565b610c3a57610c0386610bfe611968565b6117f1565b610c39576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cae8686866001611aad565b8015610cb957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8785610d63888887611ab3565b7c020000000000000000000000000000000000000000000000000000000017611adb565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e0f576000600185019050600060046000838152602001908152602001600020541415610e0d576000548114610e0c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e778686866001611b06565b505050505050565b60011515600f60019054906101000a900460ff16151514610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90612994565b60405180910390fd5b60008111610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906128f4565b60405180910390fd5b6005811115610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612914565b60405180910390fd5b80600c54610f6a9190612aef565b341015610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390612954565b60405180910390fd5b600d5481610fb8611b0c565b610fc29190612a99565b1115611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612874565b60405180910390fd5b61100d3382611b1f565b50565b611018611cf3565b4781111561105b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611052906128d4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110a1573d6000803e3d6000fd5b5050565b6110c083838360405180602001604052806000815250611632565b505050565b6110cd611cf3565b80600990805190602001906110e39291906120a4565b5050565b60006110f282611979565b9050919050565b60011515600f60009054906101000a900460ff1615151461114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690612894565b60405180910390fd5b60008111611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906128f4565b60405180910390fd5b60058111156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612914565b60405180910390fd5b80600b546111e49190612aef565b341015611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612954565b60405180910390fd5b600d5481611232611b0c565b61123c9190612a99565b111561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612874565b60405180910390fd5b6112873382611b1f565b50565b6009805461129790612bff565b80601f01602080910402602001604051908101604052809291908181526020018280546112c390612bff565b80156113105780601f106112e557610100808354040283529160200191611310565b820191906000526020600020905b8154815290600101906020018083116112f357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611380576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113d9611cf3565b6113e36000611d71565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461142490612bff565b80601f016020809104026020016040519081016040528092919081815260200182805461145090612bff565b801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1681565b6114c2611968565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611527576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611534611968565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e1611968565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116269190612837565b60405180910390a35050565b61163d848484610b5a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461169f5761166884848484611e37565b61169e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a80546116b290612bff565b80601f01602080910402602001604051908101604052809291908181526020018280546116de90612bff565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b505050505081565b606061173e82611909565b611774576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061177e611f97565b905060008151141561179f57604051806020016040528060008152506117ca565b806117a984612029565b6040516020016117ba9291906127a1565b6040516020818303038152906040525b915050919050565b600d5481565b600b5481565b600f60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188d611cf3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906128b4565b60405180910390fd5b61190681611d71565b50565b600081611914611970565b11158015611923575060005482105b8015611961575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611988611970565b11611a1057600054811015611a0f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a0d575b6000811415611a035760046000836001900393508381526020019081526020016000205490506119d8565b8092505050611a42565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611aca868684612083565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611b16611970565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611bc7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bd46000848385611aad565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611c4b83611c3c6000866000611ab3565b611c458561208c565b17611adb565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611c6f57806000819055505050611cee6000848385611b06565b505050565b611cfb61209c565b73ffffffffffffffffffffffffffffffffffffffff16611d196113eb565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612974565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5d611968565b8786866040518563ffffffff1660e01b8152600401611e7f94939291906127eb565b602060405180830381600087803b158015611e9957600080fd5b505af1925050508015611eca57506040513d601f19601f82011682018060405250810190611ec791906124ad565b60015b611f44573d8060008114611efa576040519150601f19603f3d011682016040523d82523d6000602084013e611eff565b606091505b50600081511415611f3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611fa690612bff565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd290612bff565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561206f57600183039250600a81066030018353600a8104905061204f565b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b8280546120b090612bff565b90600052602060002090601f0160209004810192826120d25760008555612119565b82601f106120eb57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121185782518255916020019190600101906120fd565b5b509050612126919061212a565b5090565b5b8082111561214357600081600090555060010161212b565b5090565b600061215a612155846129f4565b6129cf565b90508281526020810184848401111561217657612175612cf4565b5b612181848285612bbd565b509392505050565b600061219c61219784612a25565b6129cf565b9050828152602081018484840111156121b8576121b7612cf4565b5b6121c3848285612bbd565b509392505050565b6000813590506121da81612efd565b92915050565b6000813590506121ef81612f14565b92915050565b60008135905061220481612f2b565b92915050565b60008151905061221981612f2b565b92915050565b600082601f83011261223457612233612cef565b5b8135612244848260208601612147565b91505092915050565b600082601f83011261226257612261612cef565b5b8135612272848260208601612189565b91505092915050565b60008135905061228a81612f42565b92915050565b6000602082840312156122a6576122a5612cfe565b5b60006122b4848285016121cb565b91505092915050565b600080604083850312156122d4576122d3612cfe565b5b60006122e2858286016121cb565b92505060206122f3858286016121cb565b9150509250929050565b60008060006060848603121561231657612315612cfe565b5b6000612324868287016121cb565b9350506020612335868287016121cb565b92505060406123468682870161227b565b9150509250925092565b6000806000806080858703121561236a57612369612cfe565b5b6000612378878288016121cb565b9450506020612389878288016121cb565b935050604061239a8782880161227b565b925050606085013567ffffffffffffffff8111156123bb576123ba612cf9565b5b6123c78782880161221f565b91505092959194509250565b600080604083850312156123ea576123e9612cfe565b5b60006123f8858286016121cb565b9250506020612409858286016121e0565b9150509250929050565b6000806040838503121561242a57612429612cfe565b5b6000612438858286016121cb565b92505060206124498582860161227b565b9150509250929050565b60006020828403121561246957612468612cfe565b5b6000612477848285016121e0565b91505092915050565b60006020828403121561249657612495612cfe565b5b60006124a4848285016121f5565b91505092915050565b6000602082840312156124c3576124c2612cfe565b5b60006124d18482850161220a565b91505092915050565b6000602082840312156124f0576124ef612cfe565b5b600082013567ffffffffffffffff81111561250e5761250d612cf9565b5b61251a8482850161224d565b91505092915050565b60006020828403121561253957612538612cfe565b5b60006125478482850161227b565b91505092915050565b61255981612b49565b82525050565b61256881612b5b565b82525050565b600061257982612a56565b6125838185612a6c565b9350612593818560208601612bcc565b61259c81612d03565b840191505092915050565b60006125b282612a61565b6125bc8185612a7d565b93506125cc818560208601612bcc565b6125d581612d03565b840191505092915050565b60006125eb82612a61565b6125f58185612a8e565b9350612605818560208601612bcc565b80840191505092915050565b600061261e601f83612a7d565b915061262982612d14565b602082019050919050565b6000612641601c83612a7d565b915061264c82612d3d565b602082019050919050565b6000612664602683612a7d565b915061266f82612d66565b604082019050919050565b6000612687600e83612a7d565b915061269282612db5565b602082019050919050565b60006126aa601783612a7d565b91506126b582612dde565b602082019050919050565b60006126cd601783612a7d565b91506126d882612e07565b602082019050919050565b60006126f0601583612a7d565b91506126fb82612e30565b602082019050919050565b6000612713601283612a7d565b915061271e82612e59565b602082019050919050565b6000612736600583612a8e565b915061274182612e82565b600582019050919050565b6000612759602083612a7d565b915061276482612eab565b602082019050919050565b600061277c601983612a7d565b915061278782612ed4565b602082019050919050565b61279b81612bb3565b82525050565b60006127ad82856125e0565b91506127b982846125e0565b91506127c482612729565b91508190509392505050565b60006020820190506127e56000830184612550565b92915050565b60006080820190506128006000830187612550565b61280d6020830186612550565b61281a6040830185612792565b818103606083015261282c818461256e565b905095945050505050565b600060208201905061284c600083018461255f565b92915050565b6000602082019050818103600083015261286c81846125a7565b905092915050565b6000602082019050818103600083015261288d81612611565b9050919050565b600060208201905081810360008301526128ad81612634565b9050919050565b600060208201905081810360008301526128cd81612657565b9050919050565b600060208201905081810360008301526128ed8161267a565b9050919050565b6000602082019050818103600083015261290d8161269d565b9050919050565b6000602082019050818103600083015261292d816126c0565b9050919050565b6000602082019050818103600083015261294d816126e3565b9050919050565b6000602082019050818103600083015261296d81612706565b9050919050565b6000602082019050818103600083015261298d8161274c565b9050919050565b600060208201905081810360008301526129ad8161276f565b9050919050565b60006020820190506129c96000830184612792565b92915050565b60006129d96129ea565b90506129e58282612c31565b919050565b6000604051905090565b600067ffffffffffffffff821115612a0f57612a0e612cc0565b5b612a1882612d03565b9050602081019050919050565b600067ffffffffffffffff821115612a4057612a3f612cc0565b5b612a4982612d03565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612aa482612bb3565b9150612aaf83612bb3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae457612ae3612c62565b5b828201905092915050565b6000612afa82612bb3565b9150612b0583612bb3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3e57612b3d612c62565b5b828202905092915050565b6000612b5482612b93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612bea578082015181840152602081019050612bcf565b83811115612bf9576000848401525b50505050565b60006002820490506001821680612c1757607f821691505b60208210811415612c2b57612c2a612c91565b5b50919050565b612c3a82612d03565b810181811067ffffffffffffffff82111715612c5957612c58612cc0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178537570706c7900600082015250565b7f57686974656c697374204d696e74206e6f742061637469766174656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206c657373207468616e2031000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2035000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74206e6f742061637469766174656400000000000000600082015250565b612f0681612b49565b8114612f1157600080fd5b50565b612f1d81612b5b565b8114612f2857600080fd5b50565b612f3481612b67565b8114612f3f57600080fd5b50565b612f4b81612bb3565b8114612f5657600080fd5b5056fea2646970667358221220f3ab4f33dfc96c8122a1981bf8115cedef31b095d809dc81d508379d49a879af64736f6c6343000807003368747470733a2f2f6d696e742e6d657461666f72636561726d792e636f6d2f6e6674732f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063b88d4fde11610095578063d70a28d111610064578063d70a28d11461067c578063dc9a1535146106a7578063e985e9c5146106d2578063f2fde38b1461070f576101d8565b8063b88d4fde146105c0578063c6682862146105e9578063c87b56dd14610614578063d5abeb0114610651576101d8565b80638da5cb5b116100d15780638da5cb5b1461051657806395d89b41146105415780639b7fd84c1461056c578063a22cb46514610597576101d8565b80636c0360eb1461046c57806370a0823114610497578063715018a6146104d45780638693da20146104eb576101d8565b8063239c70ae1161017a57806342842e0e1161014957806342842e0e146103c157806355f804b3146103ea5780636352211e146104135780636aabb94714610450576101d8565b8063239c70ae1461032857806323b872dd146103535780632db115441461037c5780632e1a7d4d14610398576101d8565b8063095ea7b3116101b6578063095ea7b3146102825780630af0bfc8146102ab5780630e2d56cf146102d457806318160ddd146102fd576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612480565b610738565b6040516102119190612837565b60405180910390f35b34801561022657600080fd5b5061022f6107ca565b60405161023c9190612852565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612523565b61085c565b60405161027991906127d0565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612413565b6108d8565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612453565b610a19565b005b3480156102e057600080fd5b506102fb60048036038101906102f69190612453565b610aab565b005b34801561030957600080fd5b50610312610b3d565b60405161031f91906129b4565b60405180910390f35b34801561033457600080fd5b5061033d610b54565b60405161034a91906129b4565b60405180910390f35b34801561035f57600080fd5b5061037a600480360381019061037591906122fd565b610b5a565b005b61039660048036038101906103919190612523565b610e7f565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612523565b611010565b005b3480156103cd57600080fd5b506103e860048036038101906103e391906122fd565b6110a5565b005b3480156103f657600080fd5b50610411600480360381019061040c91906124da565b6110c5565b005b34801561041f57600080fd5b5061043a60048036038101906104359190612523565b6110e7565b60405161044791906127d0565b60405180910390f35b61046a60048036038101906104659190612523565b6110f9565b005b34801561047857600080fd5b5061048161128a565b60405161048e9190612852565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b99190612290565b611318565b6040516104cb91906129b4565b60405180910390f35b3480156104e057600080fd5b506104e96113d1565b005b3480156104f757600080fd5b506105006113e5565b60405161050d91906129b4565b60405180910390f35b34801561052257600080fd5b5061052b6113eb565b60405161053891906127d0565b60405180910390f35b34801561054d57600080fd5b50610556611415565b6040516105639190612852565b60405180910390f35b34801561057857600080fd5b506105816114a7565b60405161058e9190612837565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906123d3565b6114ba565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612350565b611632565b005b3480156105f557600080fd5b506105fe6116a5565b60405161060b9190612852565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190612523565b611733565b6040516106489190612852565b60405180910390f35b34801561065d57600080fd5b506106666117d2565b60405161067391906129b4565b60405180910390f35b34801561068857600080fd5b506106916117d8565b60405161069e91906129b4565b60405180910390f35b3480156106b357600080fd5b506106bc6117de565b6040516106c99190612837565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f491906122bd565b6117f1565b6040516107069190612837565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612290565b611885565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061079357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107d990612bff565b80601f016020809104026020016040519081016040528092919081815260200182805461080590612bff565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782611909565b61089d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108e3826110e7565b90508073ffffffffffffffffffffffffffffffffffffffff16610904611968565b73ffffffffffffffffffffffffffffffffffffffff1614610967576109308161092b611968565b6117f1565b610966576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a216113eb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590612934565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b610ab36113eb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612934565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000610b47611970565b6001546000540303905090565b600e5481565b6000610b6582611979565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bcc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bd884611a47565b91509150610bee8187610be9611968565b611a69565b610c3a57610c0386610bfe611968565b6117f1565b610c39576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ca1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cae8686866001611aad565b8015610cb957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8785610d63888887611ab3565b7c020000000000000000000000000000000000000000000000000000000017611adb565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e0f576000600185019050600060046000838152602001908152602001600020541415610e0d576000548114610e0c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e778686866001611b06565b505050505050565b60011515600f60019054906101000a900460ff16151514610ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecc90612994565b60405180910390fd5b60008111610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906128f4565b60405180910390fd5b6005811115610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390612914565b60405180910390fd5b80600c54610f6a9190612aef565b341015610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa390612954565b60405180910390fd5b600d5481610fb8611b0c565b610fc29190612a99565b1115611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612874565b60405180910390fd5b61100d3382611b1f565b50565b611018611cf3565b4781111561105b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611052906128d4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110a1573d6000803e3d6000fd5b5050565b6110c083838360405180602001604052806000815250611632565b505050565b6110cd611cf3565b80600990805190602001906110e39291906120a4565b5050565b60006110f282611979565b9050919050565b60011515600f60009054906101000a900460ff1615151461114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690612894565b60405180910390fd5b60008111611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906128f4565b60405180910390fd5b60058111156111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612914565b60405180910390fd5b80600b546111e49190612aef565b341015611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612954565b60405180910390fd5b600d5481611232611b0c565b61123c9190612a99565b111561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612874565b60405180910390fd5b6112873382611b1f565b50565b6009805461129790612bff565b80601f01602080910402602001604051908101604052809291908181526020018280546112c390612bff565b80156113105780601f106112e557610100808354040283529160200191611310565b820191906000526020600020905b8154815290600101906020018083116112f357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611380576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113d9611cf3565b6113e36000611d71565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461142490612bff565b80601f016020809104026020016040519081016040528092919081815260200182805461145090612bff565b801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b5050505050905090565b600f60009054906101000a900460ff1681565b6114c2611968565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611527576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611534611968565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e1611968565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116269190612837565b60405180910390a35050565b61163d848484610b5a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461169f5761166884848484611e37565b61169e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a80546116b290612bff565b80601f01602080910402602001604051908101604052809291908181526020018280546116de90612bff565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b505050505081565b606061173e82611909565b611774576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061177e611f97565b905060008151141561179f57604051806020016040528060008152506117ca565b806117a984612029565b6040516020016117ba9291906127a1565b6040516020818303038152906040525b915050919050565b600d5481565b600b5481565b600f60019054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188d611cf3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906128b4565b60405180910390fd5b61190681611d71565b50565b600081611914611970565b11158015611923575060005482105b8015611961575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611988611970565b11611a1057600054811015611a0f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a0d575b6000811415611a035760046000836001900393508381526020019081526020016000205490506119d8565b8092505050611a42565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611aca868684612083565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000611b16611970565b60005403905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611bc7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bd46000848385611aad565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611c4b83611c3c6000866000611ab3565b611c458561208c565b17611adb565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611c6f57806000819055505050611cee6000848385611b06565b505050565b611cfb61209c565b73ffffffffffffffffffffffffffffffffffffffff16611d196113eb565b73ffffffffffffffffffffffffffffffffffffffff1614611d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6690612974565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5d611968565b8786866040518563ffffffff1660e01b8152600401611e7f94939291906127eb565b602060405180830381600087803b158015611e9957600080fd5b505af1925050508015611eca57506040513d601f19601f82011682018060405250810190611ec791906124ad565b60015b611f44573d8060008114611efa576040519150601f19603f3d011682016040523d82523d6000602084013e611eff565b606091505b50600081511415611f3c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611fa690612bff565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd290612bff565b801561201f5780601f10611ff45761010080835404028352916020019161201f565b820191906000526020600020905b81548152906001019060200180831161200257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561206f57600183039250600a81066030018353600a8104905061204f565b508181036020830392508083525050919050565b60009392505050565b60006001821460e11b9050919050565b600033905090565b8280546120b090612bff565b90600052602060002090601f0160209004810192826120d25760008555612119565b82601f106120eb57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121185782518255916020019190600101906120fd565b5b509050612126919061212a565b5090565b5b8082111561214357600081600090555060010161212b565b5090565b600061215a612155846129f4565b6129cf565b90508281526020810184848401111561217657612175612cf4565b5b612181848285612bbd565b509392505050565b600061219c61219784612a25565b6129cf565b9050828152602081018484840111156121b8576121b7612cf4565b5b6121c3848285612bbd565b509392505050565b6000813590506121da81612efd565b92915050565b6000813590506121ef81612f14565b92915050565b60008135905061220481612f2b565b92915050565b60008151905061221981612f2b565b92915050565b600082601f83011261223457612233612cef565b5b8135612244848260208601612147565b91505092915050565b600082601f83011261226257612261612cef565b5b8135612272848260208601612189565b91505092915050565b60008135905061228a81612f42565b92915050565b6000602082840312156122a6576122a5612cfe565b5b60006122b4848285016121cb565b91505092915050565b600080604083850312156122d4576122d3612cfe565b5b60006122e2858286016121cb565b92505060206122f3858286016121cb565b9150509250929050565b60008060006060848603121561231657612315612cfe565b5b6000612324868287016121cb565b9350506020612335868287016121cb565b92505060406123468682870161227b565b9150509250925092565b6000806000806080858703121561236a57612369612cfe565b5b6000612378878288016121cb565b9450506020612389878288016121cb565b935050604061239a8782880161227b565b925050606085013567ffffffffffffffff8111156123bb576123ba612cf9565b5b6123c78782880161221f565b91505092959194509250565b600080604083850312156123ea576123e9612cfe565b5b60006123f8858286016121cb565b9250506020612409858286016121e0565b9150509250929050565b6000806040838503121561242a57612429612cfe565b5b6000612438858286016121cb565b92505060206124498582860161227b565b9150509250929050565b60006020828403121561246957612468612cfe565b5b6000612477848285016121e0565b91505092915050565b60006020828403121561249657612495612cfe565b5b60006124a4848285016121f5565b91505092915050565b6000602082840312156124c3576124c2612cfe565b5b60006124d18482850161220a565b91505092915050565b6000602082840312156124f0576124ef612cfe565b5b600082013567ffffffffffffffff81111561250e5761250d612cf9565b5b61251a8482850161224d565b91505092915050565b60006020828403121561253957612538612cfe565b5b60006125478482850161227b565b91505092915050565b61255981612b49565b82525050565b61256881612b5b565b82525050565b600061257982612a56565b6125838185612a6c565b9350612593818560208601612bcc565b61259c81612d03565b840191505092915050565b60006125b282612a61565b6125bc8185612a7d565b93506125cc818560208601612bcc565b6125d581612d03565b840191505092915050565b60006125eb82612a61565b6125f58185612a8e565b9350612605818560208601612bcc565b80840191505092915050565b600061261e601f83612a7d565b915061262982612d14565b602082019050919050565b6000612641601c83612a7d565b915061264c82612d3d565b602082019050919050565b6000612664602683612a7d565b915061266f82612d66565b604082019050919050565b6000612687600e83612a7d565b915061269282612db5565b602082019050919050565b60006126aa601783612a7d565b91506126b582612dde565b602082019050919050565b60006126cd601783612a7d565b91506126d882612e07565b602082019050919050565b60006126f0601583612a7d565b91506126fb82612e30565b602082019050919050565b6000612713601283612a7d565b915061271e82612e59565b602082019050919050565b6000612736600583612a8e565b915061274182612e82565b600582019050919050565b6000612759602083612a7d565b915061276482612eab565b602082019050919050565b600061277c601983612a7d565b915061278782612ed4565b602082019050919050565b61279b81612bb3565b82525050565b60006127ad82856125e0565b91506127b982846125e0565b91506127c482612729565b91508190509392505050565b60006020820190506127e56000830184612550565b92915050565b60006080820190506128006000830187612550565b61280d6020830186612550565b61281a6040830185612792565b818103606083015261282c818461256e565b905095945050505050565b600060208201905061284c600083018461255f565b92915050565b6000602082019050818103600083015261286c81846125a7565b905092915050565b6000602082019050818103600083015261288d81612611565b9050919050565b600060208201905081810360008301526128ad81612634565b9050919050565b600060208201905081810360008301526128cd81612657565b9050919050565b600060208201905081810360008301526128ed8161267a565b9050919050565b6000602082019050818103600083015261290d8161269d565b9050919050565b6000602082019050818103600083015261292d816126c0565b9050919050565b6000602082019050818103600083015261294d816126e3565b9050919050565b6000602082019050818103600083015261296d81612706565b9050919050565b6000602082019050818103600083015261298d8161274c565b9050919050565b600060208201905081810360008301526129ad8161276f565b9050919050565b60006020820190506129c96000830184612792565b92915050565b60006129d96129ea565b90506129e58282612c31565b919050565b6000604051905090565b600067ffffffffffffffff821115612a0f57612a0e612cc0565b5b612a1882612d03565b9050602081019050919050565b600067ffffffffffffffff821115612a4057612a3f612cc0565b5b612a4982612d03565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612aa482612bb3565b9150612aaf83612bb3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae457612ae3612c62565b5b828201905092915050565b6000612afa82612bb3565b9150612b0583612bb3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3e57612b3d612c62565b5b828202905092915050565b6000612b5482612b93565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612bea578082015181840152602081019050612bcf565b83811115612bf9576000848401525b50505050565b60006002820490506001821680612c1757607f821691505b60208210811415612c2b57612c2a612c91565b5b50919050565b612c3a82612d03565b810181811067ffffffffffffffff82111715612c5957612c58612cc0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e206d6178537570706c7900600082015250565b7f57686974656c697374204d696e74206e6f742061637469766174656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206c657373207468616e2031000000000000000000600082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e2035000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5075626c6963204d696e74206e6f742061637469766174656400000000000000600082015250565b612f0681612b49565b8114612f1157600080fd5b50565b612f1d81612b5b565b8114612f2857600080fd5b50565b612f3481612b67565b8114612f3f57600080fd5b50565b612f4b81612bb3565b8114612f5657600080fd5b5056fea2646970667358221220f3ab4f33dfc96c8122a1981bf8115cedef31b095d809dc81d508379d49a879af64736f6c63430008070033

Deployed Bytecode Sourcemap

48424:2279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18187:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25789:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25337:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49206:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49375:163;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17241:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48659:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35054:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50241:459;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49552:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26679:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48926:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23623:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49777:452;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48472:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18866:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;48580:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24003:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48696:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26065:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26935:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48498:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24178:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48623:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48540:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48725:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26444:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18187:615;18272:4;18587:10;18572:25;;:11;:25;;;;:102;;;;18664:10;18649:25;;:11;:25;;;;18572:102;:179;;;;18741:10;18726:25;;:11;:25;;;;18572:179;18552:199;;18187:615;;;:::o;23834:100::-;23888:13;23921:5;23914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23834:100;:::o;25789:204::-;25857:7;25882:16;25890:7;25882;:16::i;:::-;25877:64;;25907:34;;;;;;;;;;;;;;25877:64;25961:15;:24;25977:7;25961:24;;;;;;;;;;;;;;;;;;;;;25954:31;;25789:204;;;:::o;25337:386::-;25410:13;25426:16;25434:7;25426;:16::i;:::-;25410:32;;25482:5;25459:28;;:19;:17;:19::i;:::-;:28;;;25455:175;;25507:44;25524:5;25531:19;:17;:19::i;:::-;25507:16;:44::i;:::-;25502:128;;25579:35;;;;;;;;;;;;;;25502:128;25455:175;25669:2;25642:15;:24;25658:7;25642:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25707:7;25703:2;25687:28;;25696:5;25687:28;;;;;;;;;;;;25399:324;25337:386;;:::o;49206:155::-;49283:7;:5;:7::i;:::-;49269:21;;:10;:21;;;49261:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49338:7;49331:4;;:14;;;;;;;;;;;;;;;;;;49206:155;:::o;49375:163::-;49456:7;:5;:7::i;:::-;49442:21;;:10;:21;;;49434:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49515:7;49504:8;;:18;;;;;;;;;;;;;;;;;;49375:163;:::o;17241:315::-;17294:7;17522:15;:13;:15::i;:::-;17507:12;;17491:13;;:28;:46;17484:53;;17241:315;:::o;48659:32::-;;;;:::o;35054:2800::-;35188:27;35218;35237:7;35218:18;:27::i;:::-;35188:57;;35303:4;35262:45;;35278:19;35262:45;;;35258:86;;35316:28;;;;;;;;;;;;;;35258:86;35358:27;35387:23;35414:28;35434:7;35414:19;:28::i;:::-;35357:85;;;;35542:62;35561:15;35578:4;35584:19;:17;:19::i;:::-;35542:18;:62::i;:::-;35537:174;;35624:43;35641:4;35647:19;:17;:19::i;:::-;35624:16;:43::i;:::-;35619:92;;35676:35;;;;;;;;;;;;;;35619:92;35537:174;35742:1;35728:16;;:2;:16;;;35724:52;;;35753:23;;;;;;;;;;;;;;35724:52;35789:43;35811:4;35817:2;35821:7;35830:1;35789:21;:43::i;:::-;35925:15;35922:160;;;36065:1;36044:19;36037:30;35922:160;36460:18;:24;36479:4;36460:24;;;;;;;;;;;;;;;;36458:26;;;;;;;;;;;;36529:18;:22;36548:2;36529:22;;;;;;;;;;;;;;;;36527:24;;;;;;;;;;;36851:145;36888:2;36936:45;36951:4;36957:2;36961:19;36936:14;:45::i;:::-;14469:8;36909:72;36851:18;:145::i;:::-;36822:17;:26;36840:7;36822:26;;;;;;;;;;;:174;;;;37166:1;14469:8;37116:19;:46;:51;37112:626;;;37188:19;37220:1;37210:7;:11;37188:33;;37377:1;37343:17;:30;37361:11;37343:30;;;;;;;;;;;;:35;37339:384;;;37481:13;;37466:11;:28;37462:242;;37661:19;37628:17;:30;37646:11;37628:30;;;;;;;;;;;:52;;;;37462:242;37339:384;37169:569;37112:626;37785:7;37781:2;37766:27;;37775:4;37766:27;;;;;;;;;;;;37804:42;37825:4;37831:2;37835:7;37844:1;37804:20;:42::i;:::-;35177:2677;;;35054:2800;;;:::o;50241:459::-;50328:4;50316:16;;:8;;;;;;;;;;;:16;;;50308:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50393:1;50382:8;:12;50374:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;50454:1;50442:8;:13;;50434:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50529:8;50516:10;;:21;;;;:::i;:::-;50503:9;:34;;50495:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50609:9;;50597:8;50580:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;50572:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;50665:27;50671:10;50683:8;50665:5;:27::i;:::-;50241:459;:::o;49552:211::-;2014:13;:11;:13::i;:::-;49652:21:::1;49634:14;:39;;49626:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49715:10;49707:28;;:44;49736:14;49707:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49552:211:::0;:::o;26679:185::-;26817:39;26834:4;26840:2;26844:7;26817:39;;;;;;;;;;;;:16;:39::i;:::-;26679:185;;;:::o;48926:120::-;2014:13;:11;:13::i;:::-;49019:11:::1;49009:7;:21;;;;;;;;;;;;:::i;:::-;;48926:120:::0;:::o;23623:144::-;23687:7;23730:27;23749:7;23730:18;:27::i;:::-;23707:52;;23623:144;;;:::o;49777:452::-;49856:4;49848:12;;:4;;;;;;;;;;;:12;;;49840:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49924:1;49913:8;:12;49905:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49985:1;49973:8;:13;;49965:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50056:8;50047:6;;:17;;;;:::i;:::-;50034:9;:30;;50026:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50136:9;;50124:8;50107:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:38;;50099:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;50192:27;50198:10;50210:8;50192:5;:27::i;:::-;49777:452;:::o;48472:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18866:224::-;18930:7;18971:1;18954:19;;:5;:19;;;18950:60;;;18982:28;;;;;;;;;;;;;;18950:60;13421:13;19028:18;:25;19047:5;19028:25;;;;;;;;;;;;;;;;:54;19021:61;;18866:224;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;48580:38::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;24003:104::-;24059:13;24092:7;24085:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24003:104;:::o;48696:24::-;;;;;;;;;;;;;:::o;26065:308::-;26176:19;:17;:19::i;:::-;26164:31;;:8;:31;;;26160:61;;;26204:17;;;;;;;;;;;;;;26160:61;26286:8;26234:18;:39;26253:19;:17;:19::i;:::-;26234:39;;;;;;;;;;;;;;;:49;26274:8;26234:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26346:8;26310:55;;26325:19;:17;:19::i;:::-;26310:55;;;26356:8;26310:55;;;;;;:::i;:::-;;;;;;;;26065:308;;:::o;26935:399::-;27102:31;27115:4;27121:2;27125:7;27102:12;:31::i;:::-;27166:1;27148:2;:14;;;:19;27144:183;;27187:56;27218:4;27224:2;27228:7;27237:5;27187:30;:56::i;:::-;27182:145;;27271:40;;;;;;;;;;;;;;27182:145;27144:183;26935:399;;;;:::o;48498:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24178:327::-;24251:13;24282:16;24290:7;24282;:16::i;:::-;24277:59;;24307:29;;;;;;;;;;;;;;24277:59;24349:21;24373:10;:8;:10::i;:::-;24349:34;;24426:1;24407:7;24401:21;:26;;:96;;;;;;;;;;;;;;;;;24454:7;24463:18;24473:7;24463:9;:18::i;:::-;24437:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24401:96;24394:103;;;24178:327;;;:::o;48623:31::-;;;;:::o;48540:35::-;;;;:::o;48725:28::-;;;;;;;;;;;;;:::o;26444:164::-;26541:4;26565:18;:25;26584:5;26565:25;;;;;;;;;;;;;;;:35;26591:8;26565:35;;;;;;;;;;;;;;;;;;;;;;;;;26558:42;;26444:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;27589:273::-;27646:4;27702:7;27683:15;:13;:15::i;:::-;:26;;:66;;;;;27736:13;;27726:7;:23;27683:66;:152;;;;;27834:1;14191:8;27787:17;:26;27805:7;27787:26;;;;;;;;;;;;:43;:48;27683:152;27663:172;;27589:273;;;:::o;46150:105::-;46210:7;46237:10;46230:17;;46150:105;:::o;16765:92::-;16821:7;16848:1;16841:8;;16765:92;:::o;20540:1129::-;20607:7;20627:12;20642:7;20627:22;;20710:4;20691:15;:13;:15::i;:::-;:23;20687:915;;20744:13;;20737:4;:20;20733:869;;;20782:14;20799:17;:23;20817:4;20799:23;;;;;;;;;;;;20782:40;;20915:1;14191:8;20888:6;:23;:28;20884:699;;;21407:113;21424:1;21414:6;:11;21407:113;;;21467:17;:25;21485:6;;;;;;;21467:25;;;;;;;;;;;;21458:34;;21407:113;;;21553:6;21546:13;;;;;;20884:699;20759:843;20733:869;20687:915;21630:31;;;;;;;;;;;;;;20540:1129;;;;:::o;33390:652::-;33485:27;33514:23;33555:53;33611:15;33555:71;;33797:7;33791:4;33784:21;33832:22;33826:4;33819:36;33908:4;33902;33892:21;33869:44;;34004:19;33998:26;33979:45;;33735:300;33390:652;;;:::o;34155:645::-;34297:11;34459:15;34453:4;34449:26;34441:34;;34618:15;34607:9;34603:31;34590:44;;34765:15;34754:9;34751:30;34744:4;34733:9;34730:19;34727:55;34717:65;;34155:645;;;;;:::o;44983:159::-;;;;;:::o;43295:309::-;43430:7;43450:16;14592:3;43476:19;:40;;43450:67;;14592:3;43543:31;43554:4;43560:2;43564:9;43543:10;:31::i;:::-;43535:40;;:61;;43528:68;;;43295:309;;;;;:::o;23114:447::-;23194:14;23362:15;23355:5;23351:27;23342:36;;23536:5;23522:11;23498:22;23494:40;23491:51;23484:5;23481:62;23471:72;;23114:447;;;;:::o;45801:158::-;;;;;:::o;17654:285::-;17701:7;17905:15;:13;:15::i;:::-;17889:13;;:31;17882:38;;17654:285;:::o;29420:1529::-;29485:20;29508:13;;29485:36;;29550:1;29536:16;;:2;:16;;;29532:48;;;29561:19;;;;;;;;;;;;;;29532:48;29607:1;29595:8;:13;29591:44;;;29617:18;;;;;;;;;;;;;;29591:44;29648:61;29678:1;29682:2;29686:12;29700:8;29648:21;:61::i;:::-;30191:1;13558:2;30162:1;:25;;30161:31;30149:8;:44;30123:18;:22;30142:2;30123:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30470:139;30507:2;30561:33;30584:1;30588:2;30592:1;30561:14;:33::i;:::-;30528:30;30549:8;30528:20;:30::i;:::-;:66;30470:18;:139::i;:::-;30436:17;:31;30454:12;30436:31;;;;;;;;;;;:173;;;;30626:15;30644:12;30626:30;;30671:11;30700:8;30685:12;:23;30671:37;;30723:101;30775:9;;;;;;30771:2;30750:35;;30767:1;30750:35;;;;;;;;;;;;30819:3;30809:7;:13;30723:101;;30856:3;30840:13;:19;;;;29897:974;;30881:60;30910:1;30914:2;30918:12;30932:8;30881:20;:60::i;:::-;29474:1475;29420:1529;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;41805:716::-;41968:4;42014:2;41989:45;;;42035:19;:17;:19::i;:::-;42056:4;42062:7;42071:5;41989:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41985:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42289:1;42272:6;:13;:18;42268:235;;;42318:40;;;;;;;;;;;;;;42268:235;42461:6;42455:13;42446:6;42442:2;42438:15;42431:38;41985:529;42158:54;;;42148:64;;;:6;:64;;;;42141:71;;;41805:716;;;;;;:::o;49066:124::-;49126:13;49167:7;49160:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49066:124;:::o;46361:1960::-;46418:17;46837:3;46830:4;46824:11;46820:21;46813:28;;46928:3;46922:4;46915:17;47034:3;47490:5;47620:1;47615:3;47611:11;47604:18;;47757:2;47751:4;47747:13;47743:2;47739:22;47734:3;47726:36;47798:2;47792:4;47788:13;47780:21;;47382:697;47817:4;47382:697;;;48008:1;48003:3;47999:11;47992:18;;48059:2;48053:4;48049:13;48045:2;48041:22;48036:3;48028:36;47912:2;47906:4;47902:13;47894:21;;47382:697;;;47386:430;48118:3;48113;48109:13;48233:2;48228:3;48224:12;48217:19;;48296:6;48291:3;48284:19;46457:1857;;46361:1960;;;:::o;44180:147::-;44317:6;44180:147;;;;;:::o;24953:322::-;25023:14;25254:1;25244:8;25241:15;25216:23;25212:45;25202:55;;24953:322;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:400::-;11981:3;12002:84;12084:1;12079:3;12002:84;:::i;:::-;11995:91;;12095:93;12184:3;12095:93;:::i;:::-;12213:1;12208:3;12204:11;12197:18;;11821:400;;;:::o;12227:366::-;12369:3;12390:67;12454:2;12449:3;12390:67;:::i;:::-;12383:74;;12466:93;12555:3;12466:93;:::i;:::-;12584:2;12579:3;12575:12;12568:19;;12227:366;;;:::o;12599:::-;12741:3;12762:67;12826:2;12821:3;12762:67;:::i;:::-;12755:74;;12838:93;12927:3;12838:93;:::i;:::-;12956:2;12951:3;12947:12;12940:19;;12599:366;;;:::o;12971:118::-;13058:24;13076:5;13058:24;:::i;:::-;13053:3;13046:37;12971:118;;:::o;13095:701::-;13376:3;13398:95;13489:3;13480:6;13398:95;:::i;:::-;13391:102;;13510:95;13601:3;13592:6;13510:95;:::i;:::-;13503:102;;13622:148;13766:3;13622:148;:::i;:::-;13615:155;;13787:3;13780:10;;13095:701;;;;;:::o;13802:222::-;13895:4;13933:2;13922:9;13918:18;13910:26;;13946:71;14014:1;14003:9;13999:17;13990:6;13946:71;:::i;:::-;13802:222;;;;:::o;14030:640::-;14225:4;14263:3;14252:9;14248:19;14240:27;;14277:71;14345:1;14334:9;14330:17;14321:6;14277:71;:::i;:::-;14358:72;14426:2;14415:9;14411:18;14402:6;14358:72;:::i;:::-;14440;14508:2;14497:9;14493:18;14484:6;14440:72;:::i;:::-;14559:9;14553:4;14549:20;14544:2;14533:9;14529:18;14522:48;14587:76;14658:4;14649:6;14587:76;:::i;:::-;14579:84;;14030:640;;;;;;;:::o;14676:210::-;14763:4;14801:2;14790:9;14786:18;14778:26;;14814:65;14876:1;14865:9;14861:17;14852:6;14814:65;:::i;:::-;14676:210;;;;:::o;14892:313::-;15005:4;15043:2;15032:9;15028:18;15020:26;;15092:9;15086:4;15082:20;15078:1;15067:9;15063:17;15056:47;15120:78;15193:4;15184:6;15120:78;:::i;:::-;15112:86;;14892:313;;;;:::o;15211:419::-;15377:4;15415:2;15404:9;15400:18;15392:26;;15464:9;15458:4;15454:20;15450:1;15439:9;15435:17;15428:47;15492:131;15618:4;15492:131;:::i;:::-;15484:139;;15211:419;;;:::o;15636:::-;15802:4;15840:2;15829:9;15825:18;15817:26;;15889:9;15883:4;15879:20;15875:1;15864:9;15860:17;15853:47;15917:131;16043:4;15917:131;:::i;:::-;15909:139;;15636:419;;;:::o;16061:::-;16227:4;16265:2;16254:9;16250:18;16242:26;;16314:9;16308:4;16304:20;16300:1;16289:9;16285:17;16278:47;16342:131;16468:4;16342:131;:::i;:::-;16334:139;;16061:419;;;:::o;16486:::-;16652:4;16690:2;16679:9;16675:18;16667:26;;16739:9;16733:4;16729:20;16725:1;16714:9;16710:17;16703:47;16767:131;16893:4;16767:131;:::i;:::-;16759:139;;16486:419;;;:::o;16911:::-;17077:4;17115:2;17104:9;17100:18;17092:26;;17164:9;17158:4;17154:20;17150:1;17139:9;17135:17;17128:47;17192:131;17318:4;17192:131;:::i;:::-;17184:139;;16911:419;;;:::o;17336:::-;17502:4;17540:2;17529:9;17525:18;17517:26;;17589:9;17583:4;17579:20;17575:1;17564:9;17560:17;17553:47;17617:131;17743:4;17617:131;:::i;:::-;17609:139;;17336:419;;;:::o;17761:::-;17927:4;17965:2;17954:9;17950:18;17942:26;;18014:9;18008:4;18004:20;18000:1;17989:9;17985:17;17978:47;18042:131;18168:4;18042:131;:::i;:::-;18034:139;;17761:419;;;:::o;18186:::-;18352:4;18390:2;18379:9;18375:18;18367:26;;18439:9;18433:4;18429:20;18425:1;18414:9;18410:17;18403:47;18467:131;18593:4;18467:131;:::i;:::-;18459:139;;18186:419;;;:::o;18611:::-;18777:4;18815:2;18804:9;18800:18;18792:26;;18864:9;18858:4;18854:20;18850:1;18839:9;18835:17;18828:47;18892:131;19018:4;18892:131;:::i;:::-;18884:139;;18611:419;;;:::o;19036:::-;19202:4;19240:2;19229:9;19225:18;19217:26;;19289:9;19283:4;19279:20;19275:1;19264:9;19260:17;19253:47;19317:131;19443:4;19317:131;:::i;:::-;19309:139;;19036:419;;;:::o;19461:222::-;19554:4;19592:2;19581:9;19577:18;19569:26;;19605:71;19673:1;19662:9;19658:17;19649:6;19605:71;:::i;:::-;19461:222;;;;:::o;19689:129::-;19723:6;19750:20;;:::i;:::-;19740:30;;19779:33;19807:4;19799:6;19779:33;:::i;:::-;19689:129;;;:::o;19824:75::-;19857:6;19890:2;19884:9;19874:19;;19824:75;:::o;19905:307::-;19966:4;20056:18;20048:6;20045:30;20042:56;;;20078:18;;:::i;:::-;20042:56;20116:29;20138:6;20116:29;:::i;:::-;20108:37;;20200:4;20194;20190:15;20182:23;;19905:307;;;:::o;20218:308::-;20280:4;20370:18;20362:6;20359:30;20356:56;;;20392:18;;:::i;:::-;20356:56;20430:29;20452:6;20430:29;:::i;:::-;20422:37;;20514:4;20508;20504:15;20496:23;;20218:308;;;:::o;20532:98::-;20583:6;20617:5;20611:12;20601:22;;20532:98;;;:::o;20636:99::-;20688:6;20722:5;20716:12;20706:22;;20636:99;;;:::o;20741:168::-;20824:11;20858:6;20853:3;20846:19;20898:4;20893:3;20889:14;20874:29;;20741:168;;;;:::o;20915:169::-;20999:11;21033:6;21028:3;21021:19;21073:4;21068:3;21064:14;21049:29;;20915:169;;;;:::o;21090:148::-;21192:11;21229:3;21214:18;;21090:148;;;;:::o;21244:305::-;21284:3;21303:20;21321:1;21303:20;:::i;:::-;21298:25;;21337:20;21355:1;21337:20;:::i;:::-;21332:25;;21491:1;21423:66;21419:74;21416:1;21413:81;21410:107;;;21497:18;;:::i;:::-;21410:107;21541:1;21538;21534:9;21527:16;;21244:305;;;;:::o;21555:348::-;21595:7;21618:20;21636:1;21618:20;:::i;:::-;21613:25;;21652:20;21670:1;21652:20;:::i;:::-;21647:25;;21840:1;21772:66;21768:74;21765:1;21762:81;21757:1;21750:9;21743:17;21739:105;21736:131;;;21847:18;;:::i;:::-;21736:131;21895:1;21892;21888:9;21877:20;;21555:348;;;;:::o;21909:96::-;21946:7;21975:24;21993:5;21975:24;:::i;:::-;21964:35;;21909:96;;;:::o;22011:90::-;22045:7;22088:5;22081:13;22074:21;22063:32;;22011:90;;;:::o;22107:149::-;22143:7;22183:66;22176:5;22172:78;22161:89;;22107:149;;;:::o;22262:126::-;22299:7;22339:42;22332:5;22328:54;22317:65;;22262:126;;;:::o;22394:77::-;22431:7;22460:5;22449:16;;22394:77;;;:::o;22477:154::-;22561:6;22556:3;22551;22538:30;22623:1;22614:6;22609:3;22605:16;22598:27;22477:154;;;:::o;22637:307::-;22705:1;22715:113;22729:6;22726:1;22723:13;22715:113;;;22814:1;22809:3;22805:11;22799:18;22795:1;22790:3;22786:11;22779:39;22751:2;22748:1;22744:10;22739:15;;22715:113;;;22846:6;22843:1;22840:13;22837:101;;;22926:1;22917:6;22912:3;22908:16;22901:27;22837:101;22686:258;22637:307;;;:::o;22950:320::-;22994:6;23031:1;23025:4;23021:12;23011:22;;23078:1;23072:4;23068:12;23099:18;23089:81;;23155:4;23147:6;23143:17;23133:27;;23089:81;23217:2;23209:6;23206:14;23186:18;23183:38;23180:84;;;23236:18;;:::i;:::-;23180:84;23001:269;22950:320;;;:::o;23276:281::-;23359:27;23381:4;23359:27;:::i;:::-;23351:6;23347:40;23489:6;23477:10;23474:22;23453:18;23441:10;23438:34;23435:62;23432:88;;;23500:18;;:::i;:::-;23432:88;23540:10;23536:2;23529:22;23319:238;23276:281;;:::o;23563:180::-;23611:77;23608:1;23601:88;23708:4;23705:1;23698:15;23732:4;23729:1;23722:15;23749:180;23797:77;23794:1;23787:88;23894:4;23891:1;23884:15;23918:4;23915:1;23908:15;23935:180;23983:77;23980:1;23973:88;24080:4;24077:1;24070:15;24104:4;24101:1;24094:15;24121:117;24230:1;24227;24220:12;24244:117;24353:1;24350;24343:12;24367:117;24476:1;24473;24466:12;24490:117;24599:1;24596;24589:12;24613:102;24654:6;24705:2;24701:7;24696:2;24689:5;24685:14;24681:28;24671:38;;24613:102;;;:::o;24721:181::-;24861:33;24857:1;24849:6;24845:14;24838:57;24721:181;:::o;24908:178::-;25048:30;25044:1;25036:6;25032:14;25025:54;24908:178;:::o;25092:225::-;25232:34;25228:1;25220:6;25216:14;25209:58;25301:8;25296:2;25288:6;25284:15;25277:33;25092:225;:::o;25323:164::-;25463:16;25459:1;25451:6;25447:14;25440:40;25323:164;:::o;25493:173::-;25633:25;25629:1;25621:6;25617:14;25610:49;25493:173;:::o;25672:::-;25812:25;25808:1;25800:6;25796:14;25789:49;25672:173;:::o;25851:171::-;25991:23;25987:1;25979:6;25975:14;25968:47;25851:171;:::o;26028:168::-;26168:20;26164:1;26156:6;26152:14;26145:44;26028:168;:::o;26202:155::-;26342:7;26338:1;26330:6;26326:14;26319:31;26202:155;:::o;26363:182::-;26503:34;26499:1;26491:6;26487:14;26480:58;26363:182;:::o;26551:175::-;26691:27;26687:1;26679:6;26675:14;26668:51;26551:175;:::o;26732:122::-;26805:24;26823:5;26805:24;:::i;:::-;26798:5;26795:35;26785:63;;26844:1;26841;26834:12;26785:63;26732:122;:::o;26860:116::-;26930:21;26945:5;26930:21;:::i;:::-;26923:5;26920:32;26910:60;;26966:1;26963;26956:12;26910:60;26860:116;:::o;26982:120::-;27054:23;27071:5;27054:23;:::i;:::-;27047:5;27044:34;27034:62;;27092:1;27089;27082:12;27034:62;26982:120;:::o;27108:122::-;27181:24;27199:5;27181:24;:::i;:::-;27174:5;27171:35;27161:63;;27220:1;27217;27210:12;27161:63;27108:122;:::o

Swarm Source

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