ETH Price: $3,058.31 (-7.42%)
Gas: 17 Gwei

Token

Moonshadowz (MOONS)
 

Overview

Max Total Supply

1,480 MOONS

Holders

1,001

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOONS
0xCC64FFAe0a6F3683f5E3421020FE69fE939b940C
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:
Moonshadowz

Compiler Version
v0.8.15+commit.e14f2714

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

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

/**
 *Submitted for verification at Etherscan.io on 2022-06-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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: nft.sol


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;



contract Moonshadowz is Ownable, ERC721A {
    uint256 public maxSupply                    = 6969;
    uint256 public maxFreeSupply                = 969;
    
    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 11;
    uint256 public maxPerAddressDuringFreeMint  = 1;
    
    uint256 public price                        = 0.005 ether;
    bool    public saleIsActive                 = false;

    address constant internal TEAM_ADDRESS = 0xF7b4027E7141A158f871b9B47223417Bf2E9874A;

    string private _baseTokenURI;

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

    constructor() ERC721A("Moonshadowz", "MOONS") {
        _safeMint(msg.sender, 1);
    }

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

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

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

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

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

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

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

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

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

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611b396009556103c9600a55600a600b55600b600c556001600d556611c37937e08000600e556000600f60006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600b81526020017f4d6f6f6e736861646f777a0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f4f4e53000000000000000000000000000000000000000000000000000000815250620000df620000d36200013460201b60201c565b6200013c60201b60201c565b8160039081620000f0919062000912565b50806004908162000102919062000912565b50620001136200020060201b60201c565b60018190555050506200012e3360016200020560201b60201c565b62000bdb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002278282604051806020016040528060008152506200022b60201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000299576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620002d4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002e960008583866200050f60201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000356600185146200051560201b60201c565b901b60a042901b6200036e866200051f60201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200047f575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200042b60008784806001019550876200052960201b60201c565b62000462576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003b45782600154146200047957600080fd5b620004eb565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000480575b8160018190555050506200050960008583866200068a60201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005576200069060201b60201c565b8786866040518563ffffffff1660e01b81526004016200057b949392919062000af3565b6020604051808303816000875af1925050508015620005ba57506040513d601f19601f82011682018060405250810190620005b7919062000ba9565b60015b62000637573d8060008114620005ed576040519150601f19603f3d011682016040523d82523d6000602084013e620005f2565b606091505b5060008151036200062f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071a57607f821691505b60208210810362000730576200072f620006d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200079a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200075b565b620007a686836200075b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007f3620007ed620007e784620007be565b620007c8565b620007be565b9050919050565b6000819050919050565b6200080f83620007d2565b620008276200081e82620007fa565b84845462000768565b825550505050565b600090565b6200083e6200082f565b6200084b81848462000804565b505050565b5b8181101562000873576200086760008262000834565b60018101905062000851565b5050565b601f821115620008c2576200088c8162000736565b62000897846200074b565b81016020851015620008a7578190505b620008bf620008b6856200074b565b83018262000850565b50505b505050565b600082821c905092915050565b6000620008e760001984600802620008c7565b1980831691505092915050565b6000620009028383620008d4565b9150826002028217905092915050565b6200091d8262000698565b67ffffffffffffffff811115620009395762000938620006a3565b5b62000945825462000701565b6200095282828562000877565b600060209050601f8311600181146200098a576000841562000975578287015190505b620009818582620008f4565b865550620009f1565b601f1984166200099a8662000736565b60005b82811015620009c4578489015182556001820191506020850194506020810190506200099d565b86831015620009e45784890151620009e0601f891682620008d4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2682620009f9565b9050919050565b62000a388162000a19565b82525050565b62000a4981620007be565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000a8b57808201518184015260208101905062000a6e565b8381111562000a9b576000848401525b50505050565b6000601f19601f8301169050919050565b600062000abf8262000a4f565b62000acb818562000a5a565b935062000add81856020860162000a6b565b62000ae88162000aa1565b840191505092915050565b600060808201905062000b0a600083018762000a2d565b62000b19602083018662000a2d565b62000b28604083018562000a3e565b818103606083015262000b3c818462000ab2565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000b838162000b4c565b811462000b8f57600080fd5b50565b60008151905062000ba38162000b78565b92915050565b60006020828403121562000bc25762000bc162000b47565b5b600062000bd28482850162000b92565b91505092915050565b6138bb8062000beb6000396000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906127c2565b61083e565b604051610248919061280a565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b60405161027391906128be565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612916565b610962565b6040516102b09190612984565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906129cb565b6109de565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612916565b610b84565b005b34801561031757600080fd5b50610320610c73565b60405161032d9190612a1a565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612a35565b610c8a565b005b34801561036b57600080fd5b50610374610c9a565b6040516103819190612a1a565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612a35565b610ca0565b005b3480156103bf57600080fd5b506103c8610cc0565b6040516103d59190612a1a565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612aed565b610cc6565b005b61040f610d58565b005b34801561041d57600080fd5b5061043860048036038101906104339190612916565b610e97565b6040516104459190612984565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612b3a565b610ea9565b6040516104829190612a1a565b60405180910390f35b34801561049757600080fd5b506104a0610f61565b005b3480156104ae57600080fd5b506104b7610fe9565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612916565b611091565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612916565b611117565b005b34801561051757600080fd5b5061052061131c565b60405161052d9190612a1a565b60405180910390f35b34801561054257600080fd5b5061054b611322565b6040516105589190612984565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612916565b61134b565b005b34801561059657600080fd5b5061059f6113d1565b6040516105ac91906128be565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612b3a565b611463565b6040516105e99190612a1a565b60405180910390f35b3480156105fe57600080fd5b5061060761147b565b6040516106149190612a1a565b60405180910390f35b61063760048036038101906106329190612916565b611481565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b93565b611727565b005b34801561066e57600080fd5b5061068960048036038101906106849190612d03565b61189e565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612916565b611911565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612916565b611997565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612916565b611a1d565b60405161071191906128be565b60405180910390f35b34801561072657600080fd5b5061072f611abb565b60405161073c9190612a1a565b60405180910390f35b34801561075157600080fd5b5061075a611ac1565b6040516107679190612a1a565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612d86565b611ac7565b6040516107a4919061280a565b60405180910390f35b3480156107b957600080fd5b506107c2611b5b565b6040516107cf919061280a565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b3a565b611b6e565b005b34801561080d57600080fd5b5061082860048036038101906108239190612b3a565b611c65565b6040516108359190612a1a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90612df5565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612df5565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c7d565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611da8565b73ffffffffffffffffffffffffffffffffffffffff1614610ad257610a9b81610a96611da8565b611ac7565b610ad1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8c611db0565b73ffffffffffffffffffffffffffffffffffffffff16610baa611322565b73ffffffffffffffffffffffffffffffffffffffff1614610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612e72565b60405180910390fd5b610c08610c73565b81600954610c169190612ec1565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90612f67565b60405180910390fd5b8060096000828254610c699190612ec1565b9250508190555050565b6000610c7d611db8565b6002546001540303905090565b610c95838383611dbd565b505050565b600d5481565b610cbb8383836040518060200160405280600081525061189e565b505050565b600a5481565b610cce611db0565b73ffffffffffffffffffffffffffffffffffffffff16610cec611322565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612e72565b60405180910390fd5b818160109182610d5392919061313e565b505050565b610d60611db0565b73ffffffffffffffffffffffffffffffffffffffff16610d7e611322565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612e72565b60405180910390fd5b600073f7b4027e7141a158f871b9b47223417bf2e9874a73ffffffffffffffffffffffffffffffffffffffff1647604051610e0e9061323f565b60006040518083038185875af1925050503d8060008114610e4b576040519150601f19603f3d011682016040523d82523d6000602084013e610e50565b606091505b5050905080610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b906132a0565b60405180910390fd5b50565b6000610ea282611cdc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f69611db0565b73ffffffffffffffffffffffffffffffffffffffff16610f87611322565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490612e72565b60405180910390fd5b610fe76000612164565b565b610ff1611db0565b73ffffffffffffffffffffffffffffffffffffffff1661100f611322565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90612e72565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611099611db0565b73ffffffffffffffffffffffffffffffffffffffff166110b7611322565b73ffffffffffffffffffffffffffffffffffffffff161461110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612e72565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d9061330c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613378565b60405180910390fd5b806111dd610c73565b6111e79190613398565b600a54101561122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061343a565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261127e9190613398565b11156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906134cc565b60405180910390fd5b81816112cb9190613398565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113183383612228565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611353611db0565b73ffffffffffffffffffffffffffffffffffffffff16611371611322565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90612e72565b60405180910390fd5b80600e8190555050565b6060600480546113e090612df5565b80601f016020809104026020016040519081016040528092919081815260200182805461140c90612df5565b80156114595780601f1061142e57610100808354040283529160200191611459565b820191906000526020600020905b81548152906001019060200180831161143c57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c79061330c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613378565b60405180910390fd5b80600e5461154c91906134ec565b34101561158e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158590613592565b60405180910390fd5b80611597610c73565b6115a19190613398565b60095410156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061343a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826116389190613398565b1115611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090613624565b60405180910390fd5b60008211801561168b5750600b548211155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613690565b60405180910390fd5b81816116d69190613398565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117233383612228565b5050565b61172f611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611793576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a0611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184d611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611892919061280a565b60405180910390a35050565b6118a9848484611dbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190b576118d484848484612246565b61190a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611919611db0565b73ffffffffffffffffffffffffffffffffffffffff16611937611322565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612e72565b60405180910390fd5b80600d8190555050565b61199f611db0565b73ffffffffffffffffffffffffffffffffffffffff166119bd611322565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612e72565b60405180910390fd5b80600b8190555050565b6060611a2882611c7d565b611a5e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a68612396565b90506000815103611a885760405180602001604052806000815250611ab3565b80611a9284612428565b604051602001611aa39291906136ec565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b76611db0565b73ffffffffffffffffffffffffffffffffffffffff16611b94611322565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190612e72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090613782565b60405180910390fd5b611c6281612164565b50565b60126020528060005260406000206000915090505481565b600081611c88611db8565b11158015611c97575060015482105b8015611cd5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611ceb611db8565b11611d7157600154811015611d705760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6e575b60008103611d64576005600083600190039350838152602001908152602001600020549050611d3a565b8092505050611da3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dc882611cdc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e50611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611e7f5750611e7e85611e79611da8565b611ac7565b5b80611ec45750611e8d611da8565b73ffffffffffffffffffffffffffffffffffffffff16611eac84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f63576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f708585856001612482565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61206d86612488565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036120f557600060018401905060006005600083815260200190815260200160002054036120f35760015481146120f2578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215d8585856001612492565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612242828260405180602001604052806000815250612498565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226c611da8565b8786866040518563ffffffff1660e01b815260040161228e94939291906137f7565b6020604051808303816000875af19250505080156122ca57506040513d601f19601f820116820180604052508101906122c79190613858565b60015b612343573d80600081146122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50600081510361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123a590612df5565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190612df5565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561246e57600183039250600a81066030018353600a8104905061244e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612505576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361253f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254c6000858386612482565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125b16001851461274c565b901b60a042901b6125c186612488565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126756000878480600101955087612246565b6126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126065782600154146126c057600080fd5b612730565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126c6575b8160018190555050506127466000858386612492565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61279f8161276a565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b6000602082840312156127d8576127d7612760565b5b60006127e6848285016127ad565b91505092915050565b60008115159050919050565b612804816127ef565b82525050565b600060208201905061281f60008301846127fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561285f578082015181840152602081019050612844565b8381111561286e576000848401525b50505050565b6000601f19601f8301169050919050565b600061289082612825565b61289a8185612830565b93506128aa818560208601612841565b6128b381612874565b840191505092915050565b600060208201905081810360008301526128d88184612885565b905092915050565b6000819050919050565b6128f3816128e0565b81146128fe57600080fd5b50565b600081359050612910816128ea565b92915050565b60006020828403121561292c5761292b612760565b5b600061293a84828501612901565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061296e82612943565b9050919050565b61297e81612963565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a881612963565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b600080604083850312156129e2576129e1612760565b5b60006129f0858286016129b6565b9250506020612a0185828601612901565b9150509250929050565b612a14816128e0565b82525050565b6000602082019050612a2f6000830184612a0b565b92915050565b600080600060608486031215612a4e57612a4d612760565b5b6000612a5c868287016129b6565b9350506020612a6d868287016129b6565b9250506040612a7e86828701612901565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612aad57612aac612a88565b5b8235905067ffffffffffffffff811115612aca57612ac9612a8d565b5b602083019150836001820283011115612ae657612ae5612a92565b5b9250929050565b60008060208385031215612b0457612b03612760565b5b600083013567ffffffffffffffff811115612b2257612b21612765565b5b612b2e85828601612a97565b92509250509250929050565b600060208284031215612b5057612b4f612760565b5b6000612b5e848285016129b6565b91505092915050565b612b70816127ef565b8114612b7b57600080fd5b50565b600081359050612b8d81612b67565b92915050565b60008060408385031215612baa57612ba9612760565b5b6000612bb8858286016129b6565b9250506020612bc985828601612b7e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c1082612874565b810181811067ffffffffffffffff82111715612c2f57612c2e612bd8565b5b80604052505050565b6000612c42612756565b9050612c4e8282612c07565b919050565b600067ffffffffffffffff821115612c6e57612c6d612bd8565b5b612c7782612874565b9050602081019050919050565b82818337600083830152505050565b6000612ca6612ca184612c53565b612c38565b905082815260208101848484011115612cc257612cc1612bd3565b5b612ccd848285612c84565b509392505050565b600082601f830112612cea57612ce9612a88565b5b8135612cfa848260208601612c93565b91505092915050565b60008060008060808587031215612d1d57612d1c612760565b5b6000612d2b878288016129b6565b9450506020612d3c878288016129b6565b9350506040612d4d87828801612901565b925050606085013567ffffffffffffffff811115612d6e57612d6d612765565b5b612d7a87828801612cd5565b91505092959194509250565b60008060408385031215612d9d57612d9c612760565b5b6000612dab858286016129b6565b9250506020612dbc858286016129b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0d57607f821691505b602082108103612e2057612e1f612dc6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e5c602083612830565b9150612e6782612e26565b602082019050919050565b60006020820190508181036000830152612e8b81612e4f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ecc826128e0565b9150612ed7836128e0565b925082821015612eea57612ee9612e92565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612f51602783612830565b9150612f5c82612ef5565b604082019050919050565b60006020820190508181036000830152612f8081612f44565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ff47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fb7565b612ffe8683612fb7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061303b613036613031846128e0565b613016565b6128e0565b9050919050565b6000819050919050565b61305583613020565b61306961306182613042565b848454612fc4565b825550505050565b600090565b61307e613071565b61308981848461304c565b505050565b5b818110156130ad576130a2600082613076565b60018101905061308f565b5050565b601f8211156130f2576130c381612f92565b6130cc84612fa7565b810160208510156130db578190505b6130ef6130e785612fa7565b83018261308e565b50505b505050565b600082821c905092915050565b6000613115600019846008026130f7565b1980831691505092915050565b600061312e8383613104565b9150826002028217905092915050565b6131488383612f87565b67ffffffffffffffff81111561316157613160612bd8565b5b61316b8254612df5565b6131768282856130b1565b6000601f8311600181146131a55760008415613193578287013590505b61319d8582613122565b865550613205565b601f1984166131b386612f92565b60005b828110156131db578489013582556001820191506020850194506020810190506131b6565b868310156131f857848901356131f4601f891682613104565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b50565b600061322960008361320e565b915061323482613219565b600082019050919050565b600061324a8261321c565b9150819050919050565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061328a601083612830565b915061329582613254565b602082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006132f6601783612830565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f57726f6e672043616c6c65720000000000000000000000000000000000000000600082015250565b6000613362600c83612830565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b60006133a3826128e0565b91506133ae836128e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133e3576133e2612e92565b5b828201905092915050565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b6000613424601883612830565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b60006134b6602883612830565b91506134c18261345a565b604082019050919050565b600060208201905081810360008301526134e5816134a9565b9050919050565b60006134f7826128e0565b9150613502836128e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561353b5761353a612e92565b5b828202905092915050565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b600061357c601783612830565b915061358782613546565b602082019050919050565b600060208201905081810360008301526135ab8161356f565b9050919050565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b600061360e602383612830565b9150613619826135b2565b604082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061367a601483612830565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b600081905092915050565b60006136c682612825565b6136d081856136b0565b93506136e0818560208601612841565b80840191505092915050565b60006136f882856136bb565b915061370482846136bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061376c602683612830565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137c9826137a2565b6137d381856137ad565b93506137e3818560208601612841565b6137ec81612874565b840191505092915050565b600060808201905061380c6000830187612975565b6138196020830186612975565b6138266040830185612a0b565b818103606083015261383881846137be565b905095945050505050565b60008151905061385281612796565b92915050565b60006020828403121561386e5761386d612760565b5b600061387c84828501613843565b9150509291505056fea264697066735822122076dce4465f8d2f97a090005d85cb156634315b681175d44aaa7a6f3fd3a6774d64736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906127c2565b61083e565b604051610248919061280a565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b60405161027391906128be565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612916565b610962565b6040516102b09190612984565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db91906129cb565b6109de565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612916565b610b84565b005b34801561031757600080fd5b50610320610c73565b60405161032d9190612a1a565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612a35565b610c8a565b005b34801561036b57600080fd5b50610374610c9a565b6040516103819190612a1a565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612a35565b610ca0565b005b3480156103bf57600080fd5b506103c8610cc0565b6040516103d59190612a1a565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612aed565b610cc6565b005b61040f610d58565b005b34801561041d57600080fd5b5061043860048036038101906104339190612916565b610e97565b6040516104459190612984565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612b3a565b610ea9565b6040516104829190612a1a565b60405180910390f35b34801561049757600080fd5b506104a0610f61565b005b3480156104ae57600080fd5b506104b7610fe9565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612916565b611091565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612916565b611117565b005b34801561051757600080fd5b5061052061131c565b60405161052d9190612a1a565b60405180910390f35b34801561054257600080fd5b5061054b611322565b6040516105589190612984565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612916565b61134b565b005b34801561059657600080fd5b5061059f6113d1565b6040516105ac91906128be565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612b3a565b611463565b6040516105e99190612a1a565b60405180910390f35b3480156105fe57600080fd5b5061060761147b565b6040516106149190612a1a565b60405180910390f35b61063760048036038101906106329190612916565b611481565b005b34801561064557600080fd5b50610660600480360381019061065b9190612b93565b611727565b005b34801561066e57600080fd5b5061068960048036038101906106849190612d03565b61189e565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612916565b611911565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612916565b611997565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612916565b611a1d565b60405161071191906128be565b60405180910390f35b34801561072657600080fd5b5061072f611abb565b60405161073c9190612a1a565b60405180910390f35b34801561075157600080fd5b5061075a611ac1565b6040516107679190612a1a565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612d86565b611ac7565b6040516107a4919061280a565b60405180910390f35b3480156107b957600080fd5b506107c2611b5b565b6040516107cf919061280a565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b3a565b611b6e565b005b34801561080d57600080fd5b5061082860048036038101906108239190612b3a565b611c65565b6040516108359190612a1a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90612df5565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90612df5565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c7d565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611cdc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a50576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a6f611da8565b73ffffffffffffffffffffffffffffffffffffffff1614610ad257610a9b81610a96611da8565b611ac7565b610ad1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8c611db0565b73ffffffffffffffffffffffffffffffffffffffff16610baa611322565b73ffffffffffffffffffffffffffffffffffffffff1614610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790612e72565b60405180910390fd5b610c08610c73565b81600954610c169190612ec1565b1015610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90612f67565b60405180910390fd5b8060096000828254610c699190612ec1565b9250508190555050565b6000610c7d611db8565b6002546001540303905090565b610c95838383611dbd565b505050565b600d5481565b610cbb8383836040518060200160405280600081525061189e565b505050565b600a5481565b610cce611db0565b73ffffffffffffffffffffffffffffffffffffffff16610cec611322565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990612e72565b60405180910390fd5b818160109182610d5392919061313e565b505050565b610d60611db0565b73ffffffffffffffffffffffffffffffffffffffff16610d7e611322565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90612e72565b60405180910390fd5b600073f7b4027e7141a158f871b9b47223417bf2e9874a73ffffffffffffffffffffffffffffffffffffffff1647604051610e0e9061323f565b60006040518083038185875af1925050503d8060008114610e4b576040519150601f19603f3d011682016040523d82523d6000602084013e610e50565b606091505b5050905080610e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8b906132a0565b60405180910390fd5b50565b6000610ea282611cdc565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f10576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f69611db0565b73ffffffffffffffffffffffffffffffffffffffff16610f87611322565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490612e72565b60405180910390fd5b610fe76000612164565b565b610ff1611db0565b73ffffffffffffffffffffffffffffffffffffffff1661100f611322565b73ffffffffffffffffffffffffffffffffffffffff1614611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90612e72565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611099611db0565b73ffffffffffffffffffffffffffffffffffffffff166110b7611322565b73ffffffffffffffffffffffffffffffffffffffff161461110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612e72565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d9061330c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90613378565b60405180910390fd5b806111dd610c73565b6111e79190613398565b600a54101561122b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112229061343a565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d54828261127e9190613398565b11156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906134cc565b60405180910390fd5b81816112cb9190613398565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113183383612228565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611353611db0565b73ffffffffffffffffffffffffffffffffffffffff16611371611322565b73ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90612e72565b60405180910390fd5b80600e8190555050565b6060600480546113e090612df5565b80601f016020809104026020016040519081016040528092919081815260200182805461140c90612df5565b80156114595780601f1061142e57610100808354040283529160200191611459565b820191906000526020600020905b81548152906001019060200180831161143c57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c79061330c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461153e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153590613378565b60405180910390fd5b80600e5461154c91906134ec565b34101561158e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158590613592565b60405180910390fd5b80611597610c73565b6115a19190613398565b60095410156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc9061343a565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c5482826116389190613398565b1115611679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167090613624565b60405180910390fd5b60008211801561168b5750600b548211155b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c190613690565b60405180910390fd5b81816116d69190613398565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117233383612228565b5050565b61172f611da8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611793576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a0611da8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661184d611da8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611892919061280a565b60405180910390a35050565b6118a9848484611dbd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190b576118d484848484612246565b61190a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611919611db0565b73ffffffffffffffffffffffffffffffffffffffff16611937611322565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612e72565b60405180910390fd5b80600d8190555050565b61199f611db0565b73ffffffffffffffffffffffffffffffffffffffff166119bd611322565b73ffffffffffffffffffffffffffffffffffffffff1614611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90612e72565b60405180910390fd5b80600b8190555050565b6060611a2882611c7d565b611a5e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a68612396565b90506000815103611a885760405180602001604052806000815250611ab3565b80611a9284612428565b604051602001611aa39291906136ec565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b76611db0565b73ffffffffffffffffffffffffffffffffffffffff16611b94611322565b73ffffffffffffffffffffffffffffffffffffffff1614611bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be190612e72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090613782565b60405180910390fd5b611c6281612164565b50565b60126020528060005260406000206000915090505481565b600081611c88611db8565b11158015611c97575060015482105b8015611cd5575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611ceb611db8565b11611d7157600154811015611d705760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d6e575b60008103611d64576005600083600190039350838152602001908152602001600020549050611d3a565b8092505050611da3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dc882611cdc565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e50611da8565b73ffffffffffffffffffffffffffffffffffffffff161480611e7f5750611e7e85611e79611da8565b611ac7565b5b80611ec45750611e8d611da8565b73ffffffffffffffffffffffffffffffffffffffff16611eac84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611efd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f63576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f708585856001612482565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61206d86612488565b1717600560008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036120f557600060018401905060006005600083815260200190815260200160002054036120f35760015481146120f2578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461215d8585856001612492565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612242828260405180602001604052806000815250612498565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261226c611da8565b8786866040518563ffffffff1660e01b815260040161228e94939291906137f7565b6020604051808303816000875af19250505080156122ca57506040513d601f19601f820116820180604052508101906122c79190613858565b60015b612343573d80600081146122fa576040519150601f19603f3d011682016040523d82523d6000602084013e6122ff565b606091505b50600081510361233b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123a590612df5565b80601f01602080910402602001604051908101604052809291908181526020018280546123d190612df5565b801561241e5780601f106123f35761010080835404028352916020019161241e565b820191906000526020600020905b81548152906001019060200180831161240157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561246e57600183039250600a81066030018353600a8104905061244e565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612505576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361253f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61254c6000858386612482565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125b16001851461274c565b901b60a042901b6125c186612488565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126756000878480600101955087612246565b6126ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126065782600154146126c057600080fd5b612730565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126c6575b8160018190555050506127466000858386612492565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61279f8161276a565b81146127aa57600080fd5b50565b6000813590506127bc81612796565b92915050565b6000602082840312156127d8576127d7612760565b5b60006127e6848285016127ad565b91505092915050565b60008115159050919050565b612804816127ef565b82525050565b600060208201905061281f60008301846127fb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561285f578082015181840152602081019050612844565b8381111561286e576000848401525b50505050565b6000601f19601f8301169050919050565b600061289082612825565b61289a8185612830565b93506128aa818560208601612841565b6128b381612874565b840191505092915050565b600060208201905081810360008301526128d88184612885565b905092915050565b6000819050919050565b6128f3816128e0565b81146128fe57600080fd5b50565b600081359050612910816128ea565b92915050565b60006020828403121561292c5761292b612760565b5b600061293a84828501612901565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061296e82612943565b9050919050565b61297e81612963565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a881612963565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b600080604083850312156129e2576129e1612760565b5b60006129f0858286016129b6565b9250506020612a0185828601612901565b9150509250929050565b612a14816128e0565b82525050565b6000602082019050612a2f6000830184612a0b565b92915050565b600080600060608486031215612a4e57612a4d612760565b5b6000612a5c868287016129b6565b9350506020612a6d868287016129b6565b9250506040612a7e86828701612901565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612aad57612aac612a88565b5b8235905067ffffffffffffffff811115612aca57612ac9612a8d565b5b602083019150836001820283011115612ae657612ae5612a92565b5b9250929050565b60008060208385031215612b0457612b03612760565b5b600083013567ffffffffffffffff811115612b2257612b21612765565b5b612b2e85828601612a97565b92509250509250929050565b600060208284031215612b5057612b4f612760565b5b6000612b5e848285016129b6565b91505092915050565b612b70816127ef565b8114612b7b57600080fd5b50565b600081359050612b8d81612b67565b92915050565b60008060408385031215612baa57612ba9612760565b5b6000612bb8858286016129b6565b9250506020612bc985828601612b7e565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c1082612874565b810181811067ffffffffffffffff82111715612c2f57612c2e612bd8565b5b80604052505050565b6000612c42612756565b9050612c4e8282612c07565b919050565b600067ffffffffffffffff821115612c6e57612c6d612bd8565b5b612c7782612874565b9050602081019050919050565b82818337600083830152505050565b6000612ca6612ca184612c53565b612c38565b905082815260208101848484011115612cc257612cc1612bd3565b5b612ccd848285612c84565b509392505050565b600082601f830112612cea57612ce9612a88565b5b8135612cfa848260208601612c93565b91505092915050565b60008060008060808587031215612d1d57612d1c612760565b5b6000612d2b878288016129b6565b9450506020612d3c878288016129b6565b9350506040612d4d87828801612901565b925050606085013567ffffffffffffffff811115612d6e57612d6d612765565b5b612d7a87828801612cd5565b91505092959194509250565b60008060408385031215612d9d57612d9c612760565b5b6000612dab858286016129b6565b9250506020612dbc858286016129b6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0d57607f821691505b602082108103612e2057612e1f612dc6565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e5c602083612830565b9150612e6782612e26565b602082019050919050565b60006020820190508181036000830152612e8b81612e4f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ecc826128e0565b9150612ed7836128e0565b925082821015612eea57612ee9612e92565b5b828203905092915050565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b6000612f51602783612830565b9150612f5c82612ef5565b604082019050919050565b60006020820190508181036000830152612f8081612f44565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612ff47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612fb7565b612ffe8683612fb7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061303b613036613031846128e0565b613016565b6128e0565b9050919050565b6000819050919050565b61305583613020565b61306961306182613042565b848454612fc4565b825550505050565b600090565b61307e613071565b61308981848461304c565b505050565b5b818110156130ad576130a2600082613076565b60018101905061308f565b5050565b601f8211156130f2576130c381612f92565b6130cc84612fa7565b810160208510156130db578190505b6130ef6130e785612fa7565b83018261308e565b50505b505050565b600082821c905092915050565b6000613115600019846008026130f7565b1980831691505092915050565b600061312e8383613104565b9150826002028217905092915050565b6131488383612f87565b67ffffffffffffffff81111561316157613160612bd8565b5b61316b8254612df5565b6131768282856130b1565b6000601f8311600181146131a55760008415613193578287013590505b61319d8582613122565b865550613205565b601f1984166131b386612f92565b60005b828110156131db578489013582556001820191506020850194506020810190506131b6565b868310156131f857848901356131f4601f891682613104565b8355505b6001600288020188555050505b50505050505050565b600081905092915050565b50565b600061322960008361320e565b915061323482613219565b600082019050919050565b600061324a8261321c565b9150819050919050565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b600061328a601083612830565b915061329582613254565b602082019050919050565b600060208201905081810360008301526132b98161327d565b9050919050565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b60006132f6601783612830565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f57726f6e672043616c6c65720000000000000000000000000000000000000000600082015250565b6000613362600c83612830565b915061336d8261332c565b602082019050919050565b6000602082019050818103600083015261339181613355565b9050919050565b60006133a3826128e0565b91506133ae836128e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133e3576133e2612e92565b5b828201905092915050565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b6000613424601883612830565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b60006134b6602883612830565b91506134c18261345a565b604082019050919050565b600060208201905081810360008301526134e5816134a9565b9050919050565b60006134f7826128e0565b9150613502836128e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561353b5761353a612e92565b5b828202905092915050565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b600061357c601783612830565b915061358782613546565b602082019050919050565b600060208201905081810360008301526135ab8161356f565b9050919050565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b600061360e602383612830565b9150613619826135b2565b604082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b600061367a601483612830565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b600081905092915050565b60006136c682612825565b6136d081856136b0565b93506136e0818560208601612841565b80840191505092915050565b60006136f882856136bb565b915061370482846136bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061376c602683612830565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006137c9826137a2565b6137d381856137ad565b93506137e3818560208601612841565b6137ec81612874565b840191505092915050565b600060808201905061380c6000830187612975565b6138196020830186612975565b6138266040830185612a0b565b818103606083015261383881846137be565b905095945050505050565b60008151905061385281612796565b92915050565b60006020828403121561386e5761386d612760565b5b600061387c84828501613843565b9150509291505056fea264697066735822122076dce4465f8d2f97a090005d85cb156634315b681175d44aaa7a6f3fd3a6774d64736f6c634300080f0033

Deployed Bytecode Sourcemap

41999:3537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16638:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23719:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23179:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44832:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15692:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24605:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42276:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24846:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42104:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45072:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45308:225;;;:::i;:::-;;21440:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17317:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2748:103;;;;;;;;;;;;;:::i;:::-;;44740:84;;;;;;;;;;;;;:::i;:::-;;44488:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43734:540;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42221:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2097:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44282:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21820:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42589:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42336:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42972:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23995:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25102:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44610:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44376:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21995:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42166:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42047:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24374:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42400:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3006:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42647:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16638:615;16723:4;17038:10;17023:25;;:11;:25;;;;:102;;;;17115:10;17100:25;;:11;:25;;;;17023:102;:179;;;;17192:10;17177:25;;:11;:25;;;;17023:179;17003:199;;16638:615;;;:::o;21651:100::-;21705:13;21738:5;21731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21651:100;:::o;23719:204::-;23787:7;23812:16;23820:7;23812;:16::i;:::-;23807:64;;23837:34;;;;;;;;;;;;;;23807:64;23891:15;:24;23907:7;23891:24;;;;;;;;;;;;;;;;;;;;;23884:31;;23719:204;;;:::o;23179:474::-;23252:13;23284:27;23303:7;23284:18;:27::i;:::-;23252:61;;23334:5;23328:11;;:2;:11;;;23324:48;;23348:24;;;;;;;;;;;;;;23324:48;23412:5;23389:28;;:19;:17;:19::i;:::-;:28;;;23385:175;;23437:44;23454:5;23461:19;:17;:19::i;:::-;23437:16;:44::i;:::-;23432:128;;23509:35;;;;;;;;;;;;;;23432:128;23385:175;23599:2;23572:15;:24;23588:7;23572:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23637:7;23633:2;23617:28;;23626:5;23617:28;;;;;;;;;;;;23241:412;23179:474;;:::o;44832:232::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44944:13:::1;:11;:13::i;:::-;44933:7;44921:9;;:19;;;;:::i;:::-;:36;;44899:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;45049:7;45036:9;;:20;;;;;;;:::i;:::-;;;;;;;;44832:232:::0;:::o;15692:315::-;15745:7;15973:15;:13;:15::i;:::-;15958:12;;15942:13;;:28;:46;15935:53;;15692:315;:::o;24605:170::-;24739:28;24749:4;24755:2;24759:7;24739:9;:28::i;:::-;24605:170;;;:::o;42276:47::-;;;;:::o;24846:185::-;24984:39;25001:4;25007:2;25011:7;24984:39;;;;;;;;;;;;:16;:39::i;:::-;24846:185;;;:::o;42104:49::-;;;;:::o;45072:106::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45163:7:::1;;45147:13;:23;;;;;;;:::i;:::-;;45072:106:::0;;:::o;45308:225::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45376:12:::1;42501:42;45394:26;;45442:21;45394:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45375:103;;;45497:7;45489:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45362:171;45308:225::o:0;21440:144::-;21504:7;21547:27;21566:7;21547:18;:27::i;:::-;21524:52;;21440:144;;;:::o;17317:224::-;17381:7;17422:1;17405:19;;:5;:19;;;17401:60;;17433:28;;;;;;;;;;;;;;17401:60;12656:13;17479:18;:25;17498:5;17479:25;;;;;;;;;;;;;;;;:54;17472:61;;17317:224;;;:::o;2748:103::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2813:30:::1;2840:1;2813:18;:30::i;:::-;2748:103::o:0;44740:84::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44804:12:::1;;;;;;;;;;;44803:13;44788:12;;:28;;;;;;;;;;;;;;;;;;44740:84::o:0;44488:114::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44587:7:::1;44561:23;:33;;;;44488:114:::0;:::o;43734:540::-;42845:12;;;;;;;;;;;42837:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42917:10;42904:23;;:9;:23;;;42896:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43863:9:::1;43847:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43830:13;;:42;;43808:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;43935:25;43963:16;:28;43980:10;43963:28;;;;;;;;;;;;;;;;43935:56;;44057:27;;44044:9;44024:17;:29;;;;:::i;:::-;:60;;44002:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;44214:9;44194:17;:29;;;;:::i;:::-;44163:16;:28;44180:10;44163:28;;;;;;;;;;;;;;;:60;;;;44234:32;44244:10;44256:9;44234;:32::i;:::-;43797:477;43734:540:::0;:::o;42221:48::-;;;;:::o;2097:87::-;2143:7;2170:6;;;;;;;;;;;2163:13;;2097:87;:::o;44282:86::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44354:6:::1;44346:5;:14;;;;44282:86:::0;:::o;21820:104::-;21876:13;21909:7;21902:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21820:104;:::o;42589:51::-;;;;;;;;;;;;;;;;;:::o;42336:57::-;;;;:::o;42972:754::-;42845:12;;;;;;;;;;;42837:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;42917:10;42904:23;;:9;:23;;;42896:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;43093:9:::1;43085:5;;:17;;;;:::i;:::-;43072:9;:30;;43050:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;43215:9;43199:13;:11;:13::i;:::-;:25;;;;:::i;:::-;43186:9;;:38;;43164:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;43287:21;43311:12;:24;43324:10;43311:24;;;;;;;;;;;;;;;;43287:48;;43397:23;;43384:9;43368:13;:25;;;;:::i;:::-;:52;;43346:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;43528:1;43516:9;:13;:48;;;;;43546:18;;43533:9;:31;;43516:48;43494:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43666:9;43650:13;:25;;;;:::i;:::-;43623:12;:24;43636:10;43623:24;;;;;;;;;;;;;;;:52;;;;43686:32;43696:10;43708:9;43686;:32::i;:::-;43039:687;42972:754:::0;:::o;23995:308::-;24106:19;:17;:19::i;:::-;24094:31;;:8;:31;;;24090:61;;24134:17;;;;;;;;;;;;;;24090:61;24216:8;24164:18;:39;24183:19;:17;:19::i;:::-;24164:39;;;;;;;;;;;;;;;:49;24204:8;24164:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24276:8;24240:55;;24255:19;:17;:19::i;:::-;24240:55;;;24286:8;24240:55;;;;;;:::i;:::-;;;;;;;;23995:308;;:::o;25102:396::-;25269:28;25279:4;25285:2;25289:7;25269:9;:28::i;:::-;25330:1;25312:2;:14;;;:19;25308:183;;25351:56;25382:4;25388:2;25392:7;25401:5;25351:30;:56::i;:::-;25346:145;;25435:40;;;;;;;;;;;;;;25346:145;25308:183;25102:396;;;;:::o;44610:122::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44717:7:::1;44687:27;:37;;;;44610:122:::0;:::o;44376:104::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44465:7:::1;44444:18;:28;;;;44376:104:::0;:::o;21995:318::-;22068:13;22099:16;22107:7;22099;:16::i;:::-;22094:59;;22124:29;;;;;;;;;;;;;;22094:59;22166:21;22190:10;:8;:10::i;:::-;22166:34;;22243:1;22224:7;22218:21;:26;:87;;;;;;;;;;;;;;;;;22271:7;22280:18;22290:7;22280:9;:18::i;:::-;22254:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22218:87;22211:94;;;21995:318;;;:::o;42166:48::-;;;;:::o;42047:50::-;;;;:::o;24374:164::-;24471:4;24495:18;:25;24514:5;24495:25;;;;;;;;;;;;;;;:35;24521:8;24495:35;;;;;;;;;;;;;;;;;;;;;;;;;24488:42;;24374:164;;;;:::o;42400:51::-;;;;;;;;;;;;;:::o;3006:201::-;2328:12;:10;:12::i;:::-;2317:23;;:7;:5;:7::i;:::-;:23;;;2309:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3115:1:::1;3095:22;;:8;:22;;::::0;3087:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3171:28;3190:8;3171:18;:28::i;:::-;3006:201:::0;:::o;42647:47::-;;;;;;;;;;;;;;;;;:::o;25753:273::-;25810:4;25866:7;25847:15;:13;:15::i;:::-;:26;;:66;;;;;25900:13;;25890:7;:23;25847:66;:152;;;;;25998:1;13426:8;25951:17;:26;25969:7;25951:26;;;;;;;;;;;;:43;:48;25847:152;25827:172;;25753:273;;;:::o;18955:1129::-;19022:7;19042:12;19057:7;19042:22;;19125:4;19106:15;:13;:15::i;:::-;:23;19102:915;;19159:13;;19152:4;:20;19148:869;;;19197:14;19214:17;:23;19232:4;19214:23;;;;;;;;;;;;19197:40;;19330:1;13426:8;19303:6;:23;:28;19299:699;;19822:113;19839:1;19829:6;:11;19822:113;;19882:17;:25;19900:6;;;;;;;19882:25;;;;;;;;;;;;19873:34;;19822:113;;;19968:6;19961:13;;;;;;19299:699;19174:843;19148:869;19102:915;20045:31;;;;;;;;;;;;;;18955:1129;;;;:::o;39735:105::-;39795:7;39822:10;39815:17;;39735:105;:::o;821:98::-;874:7;901:10;894:17;;821:98;:::o;15215:92::-;15271:7;15215:92;:::o;30992:2515::-;31107:27;31137;31156:7;31137:18;:27::i;:::-;31107:57;;31222:4;31181:45;;31197:19;31181:45;;;31177:86;;31235:28;;;;;;;;;;;;;;31177:86;31276:22;31325:4;31302:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31346:43;31363:4;31369:19;:17;:19::i;:::-;31346:16;:43::i;:::-;31302:87;:147;;;;31430:19;:17;:19::i;:::-;31406:43;;:20;31418:7;31406:11;:20::i;:::-;:43;;;31302:147;31276:174;;31468:17;31463:66;;31494:35;;;;;;;;;;;;;;31463:66;31558:1;31544:16;;:2;:16;;;31540:52;;31569:23;;;;;;;;;;;;;;31540:52;31605:43;31627:4;31633:2;31637:7;31646:1;31605:21;:43::i;:::-;31721:15;:24;31737:7;31721:24;;;;;;;;;;;;31714:31;;;;;;;;;;;32113:18;:24;32132:4;32113:24;;;;;;;;;;;;;;;;32111:26;;;;;;;;;;;;32182:18;:22;32201:2;32182:22;;;;;;;;;;;;;;;;32180:24;;;;;;;;;;;13708:8;13310:3;32563:15;:41;;32521:21;32539:2;32521:17;:21::i;:::-;:84;:128;32475:17;:26;32493:7;32475:26;;;;;;;;;;;:174;;;;32819:1;13708:8;32769:19;:46;:51;32765:626;;32841:19;32873:1;32863:7;:11;32841:33;;33030:1;32996:17;:30;33014:11;32996:30;;;;;;;;;;;;:35;32992:384;;33134:13;;33119:11;:28;33115:242;;33314:19;33281:17;:30;33299:11;33281:30;;;;;;;;;;;:52;;;;33115:242;32992:384;32822:569;32765:626;33438:7;33434:2;33419:27;;33428:4;33419:27;;;;;;;;;;;;33457:42;33478:4;33484:2;33488:7;33497:1;33457:20;:42::i;:::-;31096:2411;;30992:2515;;;:::o;3367:191::-;3441:16;3460:6;;;;;;;;;;;3441:25;;3486:8;3477:6;;:17;;;;;;;;;;;;;;;;;;3541:8;3510:40;;3531:8;3510:40;;;;;;;;;;;;3430:128;3367:191;:::o;26110:104::-;26179:27;26189:2;26193:8;26179:27;;;;;;;;;;;;:9;:27::i;:::-;26110:104;;:::o;37204:716::-;37367:4;37413:2;37388:45;;;37434:19;:17;:19::i;:::-;37455:4;37461:7;37470:5;37388:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37688:1;37671:6;:13;:18;37667:235;;37717:40;;;;;;;;;;;;;;37667:235;37860:6;37854:13;37845:6;37841:2;37837:15;37830:38;37384:529;37557:54;;;37547:64;;;:6;:64;;;;37540:71;;;37204:716;;;;;;:::o;45186:114::-;45246:13;45279;45272:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45186:114;:::o;39946:1959::-;40003:17;40424:3;40417:4;40411:11;40407:21;40400:28;;40515:3;40509:4;40502:17;40621:3;41078:5;41208:1;41203:3;41199:11;41192:18;;41345:2;41339:4;41335:13;41331:2;41327:22;41322:3;41314:36;41386:2;41380:4;41376:13;41368:21;;40969:682;41405:4;40969:682;;;41580:1;41575:3;41571:11;41564:18;;41631:2;41625:4;41621:13;41617:2;41613:22;41608:3;41600:36;41501:2;41495:4;41491:13;41483:21;;40969:682;;;40973:431;41702:3;41697;41693:13;41817:2;41812:3;41808:12;41801:19;;41880:6;41875:3;41868:19;40042:1856;;39946:1959;;;:::o;38568:159::-;;;;;:::o;22740:148::-;22804:14;22865:5;22855:15;;22740:148;;;:::o;39386:158::-;;;;;:::o;26587:2236::-;26710:20;26733:13;;26710:36;;26775:1;26761:16;;:2;:16;;;26757:48;;26786:19;;;;;;;;;;;;;;26757:48;26832:1;26820:8;:13;26816:44;;26842:18;;;;;;;;;;;;;;26816:44;26873:61;26903:1;26907:2;26911:12;26925:8;26873:21;:61::i;:::-;27477:1;12793:2;27448:1;:25;;27447:31;27435:8;:44;27409:18;:22;27428:2;27409:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13573:3;27878:29;27905:1;27893:8;:13;27878:14;:29::i;:::-;:56;;13310:3;27815:15;:41;;27773:21;27791:2;27773:17;:21::i;:::-;:84;:162;27722:17;:31;27740:12;27722:31;;;;;;;;;;;:213;;;;27952:20;27975:12;27952:35;;28002:11;28031:8;28016:12;:23;28002:37;;28078:1;28060:2;:14;;;:19;28056:635;;28100:313;28156:12;28152:2;28131:38;;28148:1;28131:38;;;;;;;;;;;;28197:69;28236:1;28240:2;28244:14;;;;;;28260:5;28197:30;:69::i;:::-;28192:174;;28302:40;;;;;;;;;;;;;;28192:174;28408:3;28393:12;:18;28100:313;;28494:12;28477:13;;:29;28473:43;;28508:8;;;28473:43;28056:635;;;28557:119;28613:14;;;;;;28609:2;28588:40;;28605:1;28588:40;;;;;;;;;;;;28671:3;28656:12;:18;28557:119;;28056:635;28721:12;28705:13;:28;;;;27186:1559;;28755:60;28784:1;28788:2;28792:12;28806:8;28755:20;:60::i;:::-;26699:2124;26587:2236;;;:::o;22975:142::-;23033:14;23094:5;23084:15;;22975:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:182::-;12520:34;12516:1;12508:6;12504:14;12497:58;12380:182;:::o;12568:366::-;12710:3;12731:67;12795:2;12790:3;12731:67;:::i;:::-;12724:74;;12807:93;12896:3;12807:93;:::i;:::-;12925:2;12920:3;12916:12;12909:19;;12568:366;;;:::o;12940:419::-;13106:4;13144:2;13133:9;13129:18;13121:26;;13193:9;13187:4;13183:20;13179:1;13168:9;13164:17;13157:47;13221:131;13347:4;13221:131;:::i;:::-;13213:139;;12940:419;;;:::o;13365:180::-;13413:77;13410:1;13403:88;13510:4;13507:1;13500:15;13534:4;13531:1;13524:15;13551:191;13591:4;13611:20;13629:1;13611:20;:::i;:::-;13606:25;;13645:20;13663:1;13645:20;:::i;:::-;13640:25;;13684:1;13681;13678:8;13675:34;;;13689:18;;:::i;:::-;13675:34;13734:1;13731;13727:9;13719:17;;13551:191;;;;:::o;13748:226::-;13888:34;13884:1;13876:6;13872:14;13865:58;13957:9;13952:2;13944:6;13940:15;13933:34;13748:226;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:97::-;14836:6;14864:3;14854:13;;14777:97;;;;:::o;14880:141::-;14929:4;14952:3;14944:11;;14975:3;14972:1;14965:14;15009:4;15006:1;14996:18;14988:26;;14880:141;;;:::o;15027:93::-;15064:6;15111:2;15106;15099:5;15095:14;15091:23;15081:33;;15027:93;;;:::o;15126:107::-;15170:8;15220:5;15214:4;15210:16;15189:37;;15126:107;;;;:::o;15239:393::-;15308:6;15358:1;15346:10;15342:18;15381:97;15411:66;15400:9;15381:97;:::i;:::-;15499:39;15529:8;15518:9;15499:39;:::i;:::-;15487:51;;15571:4;15567:9;15560:5;15556:21;15547:30;;15620:4;15610:8;15606:19;15599:5;15596:30;15586:40;;15315:317;;15239:393;;;;;:::o;15638:60::-;15666:3;15687:5;15680:12;;15638:60;;;:::o;15704:142::-;15754:9;15787:53;15805:34;15814:24;15832:5;15814:24;:::i;:::-;15805:34;:::i;:::-;15787:53;:::i;:::-;15774:66;;15704:142;;;:::o;15852:75::-;15895:3;15916:5;15909:12;;15852:75;;;:::o;15933:269::-;16043:39;16074:7;16043:39;:::i;:::-;16104:91;16153:41;16177:16;16153:41;:::i;:::-;16145:6;16138:4;16132:11;16104:91;:::i;:::-;16098:4;16091:105;16009:193;15933:269;;;:::o;16208:73::-;16253:3;16208:73;:::o;16287:189::-;16364:32;;:::i;:::-;16405:65;16463:6;16455;16449:4;16405:65;:::i;:::-;16340:136;16287:189;;:::o;16482:186::-;16542:120;16559:3;16552:5;16549:14;16542:120;;;16613:39;16650:1;16643:5;16613:39;:::i;:::-;16586:1;16579:5;16575:13;16566:22;;16542:120;;;16482:186;;:::o;16674:543::-;16775:2;16770:3;16767:11;16764:446;;;16809:38;16841:5;16809:38;:::i;:::-;16893:29;16911:10;16893:29;:::i;:::-;16883:8;16879:44;17076:2;17064:10;17061:18;17058:49;;;17097:8;17082:23;;17058:49;17120:80;17176:22;17194:3;17176:22;:::i;:::-;17166:8;17162:37;17149:11;17120:80;:::i;:::-;16779:431;;16764:446;16674:543;;;:::o;17223:117::-;17277:8;17327:5;17321:4;17317:16;17296:37;;17223:117;;;;:::o;17346:169::-;17390:6;17423:51;17471:1;17467:6;17459:5;17456:1;17452:13;17423:51;:::i;:::-;17419:56;17504:4;17498;17494:15;17484:25;;17397:118;17346:169;;;;:::o;17520:295::-;17596:4;17742:29;17767:3;17761:4;17742:29;:::i;:::-;17734:37;;17804:3;17801:1;17797:11;17791:4;17788:21;17780:29;;17520:295;;;;:::o;17820:1403::-;17944:44;17984:3;17979;17944:44;:::i;:::-;18053:18;18045:6;18042:30;18039:56;;;18075:18;;:::i;:::-;18039:56;18119:38;18151:4;18145:11;18119:38;:::i;:::-;18204:67;18264:6;18256;18250:4;18204:67;:::i;:::-;18298:1;18327:2;18319:6;18316:14;18344:1;18339:632;;;;19015:1;19032:6;19029:84;;;19088:9;19083:3;19079:19;19066:33;19057:42;;19029:84;19139:67;19199:6;19192:5;19139:67;:::i;:::-;19133:4;19126:81;18988:229;18309:908;;18339:632;18391:4;18387:9;18379:6;18375:22;18425:37;18457:4;18425:37;:::i;:::-;18484:1;18498:215;18512:7;18509:1;18506:14;18498:215;;;18598:9;18593:3;18589:19;18576:33;18568:6;18561:49;18649:1;18641:6;18637:14;18627:24;;18696:2;18685:9;18681:18;18668:31;;18535:4;18532:1;18528:12;18523:17;;18498:215;;;18741:6;18732:7;18729:19;18726:186;;;18806:9;18801:3;18797:19;18784:33;18849:48;18891:4;18883:6;18879:17;18868:9;18849:48;:::i;:::-;18841:6;18834:64;18749:163;18726:186;18958:1;18954;18946:6;18942:14;18938:22;18932:4;18925:36;18346:625;;;18309:908;;17919:1304;;;17820:1403;;;:::o;19229:147::-;19330:11;19367:3;19352:18;;19229:147;;;;:::o;19382:114::-;;:::o;19502:398::-;19661:3;19682:83;19763:1;19758:3;19682:83;:::i;:::-;19675:90;;19774:93;19863:3;19774:93;:::i;:::-;19892:1;19887:3;19883:11;19876:18;;19502:398;;;:::o;19906:379::-;20090:3;20112:147;20255:3;20112:147;:::i;:::-;20105:154;;20276:3;20269:10;;19906:379;;;:::o;20291:166::-;20431:18;20427:1;20419:6;20415:14;20408:42;20291:166;:::o;20463:366::-;20605:3;20626:67;20690:2;20685:3;20626:67;:::i;:::-;20619:74;;20702:93;20791:3;20702:93;:::i;:::-;20820:2;20815:3;20811:12;20804:19;;20463:366;;;:::o;20835:419::-;21001:4;21039:2;21028:9;21024:18;21016:26;;21088:9;21082:4;21078:20;21074:1;21063:9;21059:17;21052:47;21116:131;21242:4;21116:131;:::i;:::-;21108:139;;20835:419;;;:::o;21260:173::-;21400:25;21396:1;21388:6;21384:14;21377:49;21260:173;:::o;21439:366::-;21581:3;21602:67;21666:2;21661:3;21602:67;:::i;:::-;21595:74;;21678:93;21767:3;21678:93;:::i;:::-;21796:2;21791:3;21787:12;21780:19;;21439:366;;;:::o;21811:419::-;21977:4;22015:2;22004:9;22000:18;21992:26;;22064:9;22058:4;22054:20;22050:1;22039:9;22035:17;22028:47;22092:131;22218:4;22092:131;:::i;:::-;22084:139;;21811:419;;;:::o;22236:162::-;22376:14;22372:1;22364:6;22360:14;22353:38;22236:162;:::o;22404:366::-;22546:3;22567:67;22631:2;22626:3;22567:67;:::i;:::-;22560:74;;22643:93;22732:3;22643:93;:::i;:::-;22761:2;22756:3;22752:12;22745:19;;22404:366;;;:::o;22776:419::-;22942:4;22980:2;22969:9;22965:18;22957:26;;23029:9;23023:4;23019:20;23015:1;23004:9;23000:17;22993:47;23057:131;23183:4;23057:131;:::i;:::-;23049:139;;22776:419;;;:::o;23201:305::-;23241:3;23260:20;23278:1;23260:20;:::i;:::-;23255:25;;23294:20;23312:1;23294:20;:::i;:::-;23289:25;;23448:1;23380:66;23376:74;23373:1;23370:81;23367:107;;;23454:18;;:::i;:::-;23367:107;23498:1;23495;23491:9;23484:16;;23201:305;;;;:::o;23512:174::-;23652:26;23648:1;23640:6;23636:14;23629:50;23512:174;:::o;23692:366::-;23834:3;23855:67;23919:2;23914:3;23855:67;:::i;:::-;23848:74;;23931:93;24020:3;23931:93;:::i;:::-;24049:2;24044:3;24040:12;24033:19;;23692:366;;;:::o;24064:419::-;24230:4;24268:2;24257:9;24253:18;24245:26;;24317:9;24311:4;24307:20;24303:1;24292:9;24288:17;24281:47;24345:131;24471:4;24345:131;:::i;:::-;24337:139;;24064:419;;;:::o;24489:227::-;24629:34;24625:1;24617:6;24613:14;24606:58;24698:10;24693:2;24685:6;24681:15;24674:35;24489:227;:::o;24722:366::-;24864:3;24885:67;24949:2;24944:3;24885:67;:::i;:::-;24878:74;;24961:93;25050:3;24961:93;:::i;:::-;25079:2;25074:3;25070:12;25063:19;;24722:366;;;:::o;25094:419::-;25260:4;25298:2;25287:9;25283:18;25275:26;;25347:9;25341:4;25337:20;25333:1;25322:9;25318:17;25311:47;25375:131;25501:4;25375:131;:::i;:::-;25367:139;;25094:419;;;:::o;25519:348::-;25559:7;25582:20;25600:1;25582:20;:::i;:::-;25577:25;;25616:20;25634:1;25616:20;:::i;:::-;25611:25;;25804:1;25736:66;25732:74;25729:1;25726:81;25721:1;25714:9;25707:17;25703:105;25700:131;;;25811:18;;:::i;:::-;25700:131;25859:1;25856;25852:9;25841:20;;25519:348;;;;:::o;25873:173::-;26013:25;26009:1;26001:6;25997:14;25990:49;25873:173;:::o;26052:366::-;26194:3;26215:67;26279:2;26274:3;26215:67;:::i;:::-;26208:74;;26291:93;26380:3;26291:93;:::i;:::-;26409:2;26404:3;26400:12;26393:19;;26052:366;;;:::o;26424:419::-;26590:4;26628:2;26617:9;26613:18;26605:26;;26677:9;26671:4;26667:20;26663:1;26652:9;26648:17;26641:47;26705:131;26831:4;26705:131;:::i;:::-;26697:139;;26424:419;;;:::o;26849:222::-;26989:34;26985:1;26977:6;26973:14;26966:58;27058:5;27053:2;27045:6;27041:15;27034:30;26849:222;:::o;27077:366::-;27219:3;27240:67;27304:2;27299:3;27240:67;:::i;:::-;27233:74;;27316:93;27405:3;27316:93;:::i;:::-;27434:2;27429:3;27425:12;27418:19;;27077:366;;;:::o;27449:419::-;27615:4;27653:2;27642:9;27638:18;27630:26;;27702:9;27696:4;27692:20;27688:1;27677:9;27673:17;27666:47;27730:131;27856:4;27730:131;:::i;:::-;27722:139;;27449:419;;;:::o;27874:170::-;28014:22;28010:1;28002:6;27998:14;27991:46;27874:170;:::o;28050:366::-;28192:3;28213:67;28277:2;28272:3;28213:67;:::i;:::-;28206:74;;28289:93;28378:3;28289:93;:::i;:::-;28407:2;28402:3;28398:12;28391:19;;28050:366;;;:::o;28422:419::-;28588:4;28626:2;28615:9;28611:18;28603:26;;28675:9;28669:4;28665:20;28661:1;28650:9;28646:17;28639:47;28703:131;28829:4;28703:131;:::i;:::-;28695:139;;28422:419;;;:::o;28847:148::-;28949:11;28986:3;28971:18;;28847:148;;;;:::o;29001:377::-;29107:3;29135:39;29168:5;29135:39;:::i;:::-;29190:89;29272:6;29267:3;29190:89;:::i;:::-;29183:96;;29288:52;29333:6;29328:3;29321:4;29314:5;29310:16;29288:52;:::i;:::-;29365:6;29360:3;29356:16;29349:23;;29111:267;29001:377;;;;:::o;29384:435::-;29564:3;29586:95;29677:3;29668:6;29586:95;:::i;:::-;29579:102;;29698:95;29789:3;29780:6;29698:95;:::i;:::-;29691:102;;29810:3;29803:10;;29384:435;;;;;:::o;29825:225::-;29965:34;29961:1;29953:6;29949:14;29942:58;30034:8;30029:2;30021:6;30017:15;30010:33;29825:225;:::o;30056:366::-;30198:3;30219:67;30283:2;30278:3;30219:67;:::i;:::-;30212:74;;30295:93;30384:3;30295:93;:::i;:::-;30413:2;30408:3;30404:12;30397:19;;30056:366;;;:::o;30428:419::-;30594:4;30632:2;30621:9;30617:18;30609:26;;30681:9;30675:4;30671:20;30667:1;30656:9;30652:17;30645:47;30709:131;30835:4;30709:131;:::i;:::-;30701:139;;30428:419;;;:::o;30853:98::-;30904:6;30938:5;30932:12;30922:22;;30853:98;;;:::o;30957:168::-;31040:11;31074:6;31069:3;31062:19;31114:4;31109:3;31105:14;31090:29;;30957:168;;;;:::o;31131:360::-;31217:3;31245:38;31277:5;31245:38;:::i;:::-;31299:70;31362:6;31357:3;31299:70;:::i;:::-;31292:77;;31378:52;31423:6;31418:3;31411:4;31404:5;31400:16;31378:52;:::i;:::-;31455:29;31477:6;31455:29;:::i;:::-;31450:3;31446:39;31439:46;;31221:270;31131:360;;;;:::o;31497:640::-;31692:4;31730:3;31719:9;31715:19;31707:27;;31744:71;31812:1;31801:9;31797:17;31788:6;31744:71;:::i;:::-;31825:72;31893:2;31882:9;31878:18;31869:6;31825:72;:::i;:::-;31907;31975:2;31964:9;31960:18;31951:6;31907:72;:::i;:::-;32026:9;32020:4;32016:20;32011:2;32000:9;31996:18;31989:48;32054:76;32125:4;32116:6;32054:76;:::i;:::-;32046:84;;31497:640;;;;;;;:::o;32143:141::-;32199:5;32230:6;32224:13;32215:22;;32246:32;32272:5;32246:32;:::i;:::-;32143:141;;;;:::o;32290:349::-;32359:6;32408:2;32396:9;32387:7;32383:23;32379:32;32376:119;;;32414:79;;:::i;:::-;32376:119;32534:1;32559:63;32614:7;32605:6;32594:9;32590:22;32559:63;:::i;:::-;32549:73;;32505:127;32290:349;;;;:::o

Swarm Source

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