ETH Price: $3,508.52 (+2.41%)
Gas: 3 Gwei

Token

SavageKittens (SavageKittens)
 

Overview

Max Total Supply

7,000 SavageKittens

Holders

558

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 SavageKittens
0x071a8d0edcc0f67786c939e7b11d3958a8b1157d
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:
SavageKittens

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/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: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.4;



contract SavageKittens is ERC721A, Ownable {
    uint256 public maxSupply = 1000;
    uint256 public maxPerWallet = 20;
    uint256 public maxPerTx = 20;
    uint256 public _price = 0 ether;

    bool public activated;
    string public unrevealedTokenURI = "";
    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmS7fb9ucSg5P8qj13eP8aVPduUYebCqQzTN1EMSeVNE85/";

    mapping(uint256 => string) private _tokenURIs;

    address private _ownerWallet = 0x46a4ed210Daf81801C80CF47B63dFF0283B8Ae17;

    constructor(
        string memory name,
        string memory symbol,
        address ownerWallet
    ) ERC721A(name, symbol) {
        _ownerWallet = ownerWallet;
    }

    ////  OVERIDES
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            bytes(baseURI).length != 0
                ? string(abi.encodePacked(baseURI, _toString(tokenId), ""))
                : unrevealedTokenURI;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    ////  MINT
    function mint(uint256 numberOfTokens) external payable {
        require(activated, "Inactive");
        require(totalSupply() + numberOfTokens <= maxSupply, "All minted");
        require(numberOfTokens <= maxPerTx, "Too many for Tx");
        require(
            _numberMinted(msg.sender) + numberOfTokens <= maxPerWallet,
            "Too many for address"
        );
        _safeMint(msg.sender, numberOfTokens);
    }

    ////  SETTERS
    function setTokenURI(string calldata newURI) external onlyOwner {
        baseURI = newURI;
    }

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setIsActive(bool _isActive) external onlyOwner {
        activated = _isActive;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"ownerWallet","type":"address"}],"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":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setTokenURI","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":"unrevealedTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526103e86009556014600a556014600b556000600c5560405180602001604052806000815250600e90805190602001906200004092919062000288565b506040518060800160405280605181526020016200317060519139600f90805190602001906200007292919062000288565b507346a4ed210daf81801c80cf47b63dff0283b8ae17601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d557600080fd5b50604051620031c1380380620031c18339818101604052810190620000fb9190620003c1565b828281600290805190602001906200011592919062000288565b5080600390805190602001906200012e92919062000288565b506200013f620001b160201b60201c565b6000819055505050620001676200015b620001ba60201b60201c565b620001c260201b60201c565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000607565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002969062000512565b90600052602060002090601f016020900481019282620002ba576000855562000306565b82601f10620002d557805160ff191683800117855562000306565b8280016001018555821562000306579182015b8281111562000305578251825591602001919060010190620002e8565b5b50905062000315919062000319565b5090565b5b80821115620003345760008160009055506001016200031a565b5090565b60006200034f620003498462000472565b62000449565b9050828152602081018484840111156200036857600080fd5b62000375848285620004dc565b509392505050565b6000815190506200038e81620005ed565b92915050565b600082601f830112620003a657600080fd5b8151620003b884826020860162000338565b91505092915050565b600080600060608486031215620003d757600080fd5b600084015167ffffffffffffffff811115620003f257600080fd5b620004008682870162000394565b935050602084015167ffffffffffffffff8111156200041e57600080fd5b6200042c8682870162000394565b92505060406200043f868287016200037d565b9150509250925092565b60006200045562000468565b905062000463828262000548565b919050565b6000604051905090565b600067ffffffffffffffff82111562000490576200048f620005ad565b5b6200049b82620005dc565b9050602081019050919050565b6000620004b582620004bc565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004fc578082015181840152602081019050620004df565b838111156200050c576000848401525b50505050565b600060028204905060018216806200052b57607f821691505b602082108114156200054257620005416200057e565b5b50919050565b6200055382620005dc565b810181811067ffffffffffffffff82111715620005755762000574620005ad565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005f881620004a8565b81146200060457600080fd5b50565b612b5980620006176000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e0df5b6f11610064578063e0df5b6f146105ed578063e985e9c514610616578063f2fde38b14610653578063f968adbe1461067c576101b7565b8063b88d4fde1461055c578063c87b56dd14610585578063d5abeb01146105c2576101b7565b806395d89b41116100c657806395d89b41146104c1578063a0712d68146104ec578063a22cb46514610508578063b2873d5c14610531576101b7565b806370a0823114610442578063715018a61461047f5780638da5cb5b14610496576101b7565b806323b872dd11610159578063453c231011610133578063453c2310146103865780636352211e146103b15780636c0360eb146103ee5780636f8b44b014610419576101b7565b806323b872dd1461030b5780632750fc781461033457806342842e0e1461035d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a578063186601ca146102b5578063235b6ea1146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121a9565b6106a7565b6040516101f09190612566565b60405180910390f35b34801561020557600080fd5b5061020e610739565b60405161021b9190612581565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612240565b6107cb565b60405161025891906124ff565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612144565b610847565b005b34801561029657600080fd5b5061029f6109ee565b6040516102ac9190612683565b60405180910390f35b3480156102c157600080fd5b506102ca610a05565b6040516102d79190612566565b60405180910390f35b3480156102ec57600080fd5b506102f5610a18565b6040516103029190612683565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d919061203e565b610a1e565b005b34801561034057600080fd5b5061035b60048036038101906103569190612180565b610a2e565b005b34801561036957600080fd5b50610384600480360381019061037f919061203e565b610a53565b005b34801561039257600080fd5b5061039b610a73565b6040516103a89190612683565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612240565b610a79565b6040516103e591906124ff565b60405180910390f35b3480156103fa57600080fd5b50610403610a8b565b6040516104109190612581565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612240565b610b19565b005b34801561044e57600080fd5b5061046960048036038101906104649190611fd9565b610b2b565b6040516104769190612683565b60405180910390f35b34801561048b57600080fd5b50610494610be4565b005b3480156104a257600080fd5b506104ab610bf8565b6040516104b891906124ff565b60405180910390f35b3480156104cd57600080fd5b506104d6610c22565b6040516104e39190612581565b60405180910390f35b61050660048036038101906105019190612240565b610cb4565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612108565b610e04565b005b34801561053d57600080fd5b50610546610f7c565b6040516105539190612581565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e919061208d565b61100a565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612240565b61107d565b6040516105b99190612581565b60405180910390f35b3480156105ce57600080fd5b506105d76111a1565b6040516105e49190612683565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906121fb565b6111a7565b005b34801561062257600080fd5b5061063d60048036038101906106389190612002565b6111c5565b60405161064a9190612566565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190611fd9565b611259565b005b34801561068857600080fd5b506106916112dd565b60405161069e9190612683565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074890612858565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612858565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d6826112e3565b61080c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282611342565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d9611410565b73ffffffffffffffffffffffffffffffffffffffff161461093c5761090581610900611410565b6111c5565b61093b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f8611418565b6001546000540303905090565b600d60009054906101000a900460ff1681565b600c5481565b610a29838383611421565b505050565b610a366117cb565b80600d60006101000a81548160ff02191690831515021790555050565b610a6e8383836040518060200160405280600081525061100a565b505050565b600a5481565b6000610a8482611342565b9050919050565b600f8054610a9890612858565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490612858565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b505050505081565b610b216117cb565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bec6117cb565b610bf66000611849565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c3190612858565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5d90612858565b8015610caa5780601f10610c7f57610100808354040283529160200191610caa565b820191906000526020600020905b815481529060010190602001808311610c8d57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906125e3565b60405180910390fd5b60095481610d0f6109ee565b610d19919061274c565b1115610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906125a3565b60405180910390fd5b600b54811115610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690612643565b60405180910390fd5b600a5481610dac3361190f565b610db6919061274c565b1115610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90612663565b60405180910390fd5b610e013382611966565b50565b610e0c611410565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e71576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610e7e611410565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2b611410565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f709190612566565b60405180910390a35050565b600e8054610f8990612858565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb590612858565b80156110025780601f10610fd757610100808354040283529160200191611002565b820191906000526020600020905b815481529060010190602001808311610fe557829003601f168201915b505050505081565b611015848484611421565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110775761104084848484611984565b611076576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611088826112e3565b6110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612623565b60405180910390fd5b6000600f80546110d690612858565b9050141561116e57600e80546110eb90612858565b80601f016020809104026020016040519081016040528092919081815260200182805461111790612858565b80156111645780601f1061113957610100808354040283529160200191611164565b820191906000526020600020905b81548152906001019060200180831161114757829003601f168201915b505050505061119a565b600f61117983611ae4565b60405160200161118a9291906124d0565b6040516020818303038152906040525b9050919050565b60095481565b6111af6117cb565b8181600f91906111c0929190611e1b565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112616117cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906125c3565b60405180910390fd5b6112da81611849565b50565b600b5481565b6000816112ee611418565b111580156112fd575060005482105b801561133b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611351611418565b116113d9576000548110156113d85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156113d6575b60008114156113cc5760046000836001900393508381526020019081526020016000205490506113a1565b809250505061140b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061142c82611342565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611493576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166114b4611410565b73ffffffffffffffffffffffffffffffffffffffff1614806114e357506114e2856114dd611410565b6111c5565b5b8061152857506114f1611410565b73ffffffffffffffffffffffffffffffffffffffff16611510846107cb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611561576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115d58585856001611b3e565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6116d286611b44565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561175c57600060018401905060006004600083815260200190815260200160002054141561175a576000548114611759578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117c48585856001611b4e565b5050505050565b6117d3611b54565b73ffffffffffffffffffffffffffffffffffffffff166117f1610bf8565b73ffffffffffffffffffffffffffffffffffffffff1614611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90612603565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611980828260405180602001604052806000815250611b5c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119aa611410565b8786866040518563ffffffff1660e01b81526004016119cc949392919061251a565b602060405180830381600087803b1580156119e657600080fd5b505af1925050508015611a1757506040513d601f19601f82011682018060405250810190611a1491906121d2565b60015b611a91573d8060008114611a47576040519150601f19603f3d011682016040523d82523d6000602084013e611a4c565b606091505b50600081511415611a89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b2a57600183039250600a81066030018353600a81049050611b0a565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611c04576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c116000858386611b3e565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611c7660018514611e11565b901b60a042901b611c8686611b44565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611d8a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d3a6000878480600101955087611984565b611d70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611ccb578260005414611d8557600080fd5b611df5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d8b575b816000819055505050611e0b6000858386611b4e565b50505050565b6000819050919050565b828054611e2790612858565b90600052602060002090601f016020900481019282611e495760008555611e90565b82601f10611e6257803560ff1916838001178555611e90565b82800160010185558215611e90579182015b82811115611e8f578235825591602001919060010190611e74565b5b509050611e9d9190611ea1565b5090565b5b80821115611eba576000816000905550600101611ea2565b5090565b6000611ed1611ecc846126c3565b61269e565b905082815260208101848484011115611ee957600080fd5b611ef4848285612816565b509392505050565b600081359050611f0b81612ac7565b92915050565b600081359050611f2081612ade565b92915050565b600081359050611f3581612af5565b92915050565b600081519050611f4a81612af5565b92915050565b600082601f830112611f6157600080fd5b8135611f71848260208601611ebe565b91505092915050565b60008083601f840112611f8c57600080fd5b8235905067ffffffffffffffff811115611fa557600080fd5b602083019150836001820283011115611fbd57600080fd5b9250929050565b600081359050611fd381612b0c565b92915050565b600060208284031215611feb57600080fd5b6000611ff984828501611efc565b91505092915050565b6000806040838503121561201557600080fd5b600061202385828601611efc565b925050602061203485828601611efc565b9150509250929050565b60008060006060848603121561205357600080fd5b600061206186828701611efc565b935050602061207286828701611efc565b925050604061208386828701611fc4565b9150509250925092565b600080600080608085870312156120a357600080fd5b60006120b187828801611efc565b94505060206120c287828801611efc565b93505060406120d387828801611fc4565b925050606085013567ffffffffffffffff8111156120f057600080fd5b6120fc87828801611f50565b91505092959194509250565b6000806040838503121561211b57600080fd5b600061212985828601611efc565b925050602061213a85828601611f11565b9150509250929050565b6000806040838503121561215757600080fd5b600061216585828601611efc565b925050602061217685828601611fc4565b9150509250929050565b60006020828403121561219257600080fd5b60006121a084828501611f11565b91505092915050565b6000602082840312156121bb57600080fd5b60006121c984828501611f26565b91505092915050565b6000602082840312156121e457600080fd5b60006121f284828501611f3b565b91505092915050565b6000806020838503121561220e57600080fd5b600083013567ffffffffffffffff81111561222857600080fd5b61223485828601611f7a565b92509250509250929050565b60006020828403121561225257600080fd5b600061226084828501611fc4565b91505092915050565b612272816127a2565b82525050565b612281816127b4565b82525050565b600061229282612709565b61229c818561271f565b93506122ac818560208601612825565b6122b581612948565b840191505092915050565b60006122cb82612714565b6122d58185612730565b93506122e5818560208601612825565b6122ee81612948565b840191505092915050565b600061230482612714565b61230e8185612741565b935061231e818560208601612825565b80840191505092915050565b6000815461233781612858565b6123418186612741565b9450600182166000811461235c576001811461236d576123a0565b60ff198316865281860193506123a0565b612376856126f4565b60005b8381101561239857815481890152600182019150602081019050612379565b838801955050505b50505092915050565b60006123b6600a83612730565b91506123c182612959565b602082019050919050565b60006123d9602683612730565b91506123e482612982565b604082019050919050565b60006123fc600883612730565b9150612407826129d1565b602082019050919050565b600061241f602083612730565b915061242a826129fa565b602082019050919050565b6000612442602f83612730565b915061244d82612a23565b604082019050919050565b6000612465600083612741565b915061247082612a72565b600082019050919050565b6000612488600f83612730565b915061249382612a75565b602082019050919050565b60006124ab601483612730565b91506124b682612a9e565b602082019050919050565b6124ca8161280c565b82525050565b60006124dc828561232a565b91506124e882846122f9565b91506124f382612458565b91508190509392505050565b60006020820190506125146000830184612269565b92915050565b600060808201905061252f6000830187612269565b61253c6020830186612269565b61254960408301856124c1565b818103606083015261255b8184612287565b905095945050505050565b600060208201905061257b6000830184612278565b92915050565b6000602082019050818103600083015261259b81846122c0565b905092915050565b600060208201905081810360008301526125bc816123a9565b9050919050565b600060208201905081810360008301526125dc816123cc565b9050919050565b600060208201905081810360008301526125fc816123ef565b9050919050565b6000602082019050818103600083015261261c81612412565b9050919050565b6000602082019050818103600083015261263c81612435565b9050919050565b6000602082019050818103600083015261265c8161247b565b9050919050565b6000602082019050818103600083015261267c8161249e565b9050919050565b600060208201905061269860008301846124c1565b92915050565b60006126a86126b9565b90506126b4828261288a565b919050565b6000604051905090565b600067ffffffffffffffff8211156126de576126dd612919565b5b6126e782612948565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127578261280c565b91506127628361280c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612797576127966128bb565b5b828201905092915050565b60006127ad826127ec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612843578082015181840152602081019050612828565b83811115612852576000848401525b50505050565b6000600282049050600182168061287057607f821691505b60208210811415612884576128836128ea565b5b50919050565b61289382612948565b810181811067ffffffffffffffff821117156128b2576128b1612919565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f416c6c206d696e74656400000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e616374697665000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f546f6f206d616e7920666f722054780000000000000000000000000000000000600082015250565b7f546f6f206d616e7920666f722061646472657373000000000000000000000000600082015250565b612ad0816127a2565b8114612adb57600080fd5b50565b612ae7816127b4565b8114612af257600080fd5b50565b612afe816127c0565b8114612b0957600080fd5b50565b612b158161280c565b8114612b2057600080fd5b5056fea26469706673582212205c7a294bf931064ef9580c3dcb1a2ebd6f106a3117242a0f5b2d3e92e9ec43eb64736f6c6343000804003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d533766623975635367355038716a31336550386156506475555965624371517a544e31454d5365564e4538352f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000046a4ed210daf81801c80cf47b63dff0283b8ae17000000000000000000000000000000000000000000000000000000000000000d5361766167654b697474656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5361766167654b697474656e7300000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e0df5b6f11610064578063e0df5b6f146105ed578063e985e9c514610616578063f2fde38b14610653578063f968adbe1461067c576101b7565b8063b88d4fde1461055c578063c87b56dd14610585578063d5abeb01146105c2576101b7565b806395d89b41116100c657806395d89b41146104c1578063a0712d68146104ec578063a22cb46514610508578063b2873d5c14610531576101b7565b806370a0823114610442578063715018a61461047f5780638da5cb5b14610496576101b7565b806323b872dd11610159578063453c231011610133578063453c2310146103865780636352211e146103b15780636c0360eb146103ee5780636f8b44b014610419576101b7565b806323b872dd1461030b5780632750fc781461033457806342842e0e1461035d576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a578063186601ca146102b5578063235b6ea1146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121a9565b6106a7565b6040516101f09190612566565b60405180910390f35b34801561020557600080fd5b5061020e610739565b60405161021b9190612581565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612240565b6107cb565b60405161025891906124ff565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612144565b610847565b005b34801561029657600080fd5b5061029f6109ee565b6040516102ac9190612683565b60405180910390f35b3480156102c157600080fd5b506102ca610a05565b6040516102d79190612566565b60405180910390f35b3480156102ec57600080fd5b506102f5610a18565b6040516103029190612683565b60405180910390f35b34801561031757600080fd5b50610332600480360381019061032d919061203e565b610a1e565b005b34801561034057600080fd5b5061035b60048036038101906103569190612180565b610a2e565b005b34801561036957600080fd5b50610384600480360381019061037f919061203e565b610a53565b005b34801561039257600080fd5b5061039b610a73565b6040516103a89190612683565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190612240565b610a79565b6040516103e591906124ff565b60405180910390f35b3480156103fa57600080fd5b50610403610a8b565b6040516104109190612581565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b9190612240565b610b19565b005b34801561044e57600080fd5b5061046960048036038101906104649190611fd9565b610b2b565b6040516104769190612683565b60405180910390f35b34801561048b57600080fd5b50610494610be4565b005b3480156104a257600080fd5b506104ab610bf8565b6040516104b891906124ff565b60405180910390f35b3480156104cd57600080fd5b506104d6610c22565b6040516104e39190612581565b60405180910390f35b61050660048036038101906105019190612240565b610cb4565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612108565b610e04565b005b34801561053d57600080fd5b50610546610f7c565b6040516105539190612581565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e919061208d565b61100a565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612240565b61107d565b6040516105b99190612581565b60405180910390f35b3480156105ce57600080fd5b506105d76111a1565b6040516105e49190612683565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f91906121fb565b6111a7565b005b34801561062257600080fd5b5061063d60048036038101906106389190612002565b6111c5565b60405161064a9190612566565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190611fd9565b611259565b005b34801561068857600080fd5b506106916112dd565b60405161069e9190612683565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107325750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461074890612858565b80601f016020809104026020016040519081016040528092919081815260200182805461077490612858565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b60006107d6826112e3565b61080c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085282611342565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108ba576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d9611410565b73ffffffffffffffffffffffffffffffffffffffff161461093c5761090581610900611410565b6111c5565b61093b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f8611418565b6001546000540303905090565b600d60009054906101000a900460ff1681565b600c5481565b610a29838383611421565b505050565b610a366117cb565b80600d60006101000a81548160ff02191690831515021790555050565b610a6e8383836040518060200160405280600081525061100a565b505050565b600a5481565b6000610a8482611342565b9050919050565b600f8054610a9890612858565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490612858565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b505050505081565b610b216117cb565b8060098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bec6117cb565b610bf66000611849565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c3190612858565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5d90612858565b8015610caa5780601f10610c7f57610100808354040283529160200191610caa565b820191906000526020600020905b815481529060010190602001808311610c8d57829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa906125e3565b60405180910390fd5b60095481610d0f6109ee565b610d19919061274c565b1115610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906125a3565b60405180910390fd5b600b54811115610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690612643565b60405180910390fd5b600a5481610dac3361190f565b610db6919061274c565b1115610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90612663565b60405180910390fd5b610e013382611966565b50565b610e0c611410565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e71576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610e7e611410565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f2b611410565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f709190612566565b60405180910390a35050565b600e8054610f8990612858565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb590612858565b80156110025780601f10610fd757610100808354040283529160200191611002565b820191906000526020600020905b815481529060010190602001808311610fe557829003601f168201915b505050505081565b611015848484611421565b60008373ffffffffffffffffffffffffffffffffffffffff163b146110775761104084848484611984565b611076576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611088826112e3565b6110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612623565b60405180910390fd5b6000600f80546110d690612858565b9050141561116e57600e80546110eb90612858565b80601f016020809104026020016040519081016040528092919081815260200182805461111790612858565b80156111645780601f1061113957610100808354040283529160200191611164565b820191906000526020600020905b81548152906001019060200180831161114757829003601f168201915b505050505061119a565b600f61117983611ae4565b60405160200161118a9291906124d0565b6040516020818303038152906040525b9050919050565b60095481565b6111af6117cb565b8181600f91906111c0929190611e1b565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112616117cb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c8906125c3565b60405180910390fd5b6112da81611849565b50565b600b5481565b6000816112ee611418565b111580156112fd575060005482105b801561133b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611351611418565b116113d9576000548110156113d85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156113d6575b60008114156113cc5760046000836001900393508381526020019081526020016000205490506113a1565b809250505061140b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061142c82611342565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611493576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166114b4611410565b73ffffffffffffffffffffffffffffffffffffffff1614806114e357506114e2856114dd611410565b6111c5565b5b8061152857506114f1611410565b73ffffffffffffffffffffffffffffffffffffffff16611510846107cb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611561576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115d58585856001611b3e565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6116d286611b44565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316141561175c57600060018401905060006004600083815260200190815260200160002054141561175a576000548114611759578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117c48585856001611b4e565b5050505050565b6117d3611b54565b73ffffffffffffffffffffffffffffffffffffffff166117f1610bf8565b73ffffffffffffffffffffffffffffffffffffffff1614611847576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183e90612603565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611980828260405180602001604052806000815250611b5c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119aa611410565b8786866040518563ffffffff1660e01b81526004016119cc949392919061251a565b602060405180830381600087803b1580156119e657600080fd5b505af1925050508015611a1757506040513d601f19601f82011682018060405250810190611a1491906121d2565b60015b611a91573d8060008114611a47576040519150601f19603f3d011682016040523d82523d6000602084013e611a4c565b606091505b50600081511415611a89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611b2a57600183039250600a81066030018353600a81049050611b0a565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600033905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bc9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611c04576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c116000858386611b3e565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611c7660018514611e11565b901b60a042901b611c8686611b44565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611d8a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d3a6000878480600101955087611984565b611d70576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611ccb578260005414611d8557600080fd5b611df5565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d8b575b816000819055505050611e0b6000858386611b4e565b50505050565b6000819050919050565b828054611e2790612858565b90600052602060002090601f016020900481019282611e495760008555611e90565b82601f10611e6257803560ff1916838001178555611e90565b82800160010185558215611e90579182015b82811115611e8f578235825591602001919060010190611e74565b5b509050611e9d9190611ea1565b5090565b5b80821115611eba576000816000905550600101611ea2565b5090565b6000611ed1611ecc846126c3565b61269e565b905082815260208101848484011115611ee957600080fd5b611ef4848285612816565b509392505050565b600081359050611f0b81612ac7565b92915050565b600081359050611f2081612ade565b92915050565b600081359050611f3581612af5565b92915050565b600081519050611f4a81612af5565b92915050565b600082601f830112611f6157600080fd5b8135611f71848260208601611ebe565b91505092915050565b60008083601f840112611f8c57600080fd5b8235905067ffffffffffffffff811115611fa557600080fd5b602083019150836001820283011115611fbd57600080fd5b9250929050565b600081359050611fd381612b0c565b92915050565b600060208284031215611feb57600080fd5b6000611ff984828501611efc565b91505092915050565b6000806040838503121561201557600080fd5b600061202385828601611efc565b925050602061203485828601611efc565b9150509250929050565b60008060006060848603121561205357600080fd5b600061206186828701611efc565b935050602061207286828701611efc565b925050604061208386828701611fc4565b9150509250925092565b600080600080608085870312156120a357600080fd5b60006120b187828801611efc565b94505060206120c287828801611efc565b93505060406120d387828801611fc4565b925050606085013567ffffffffffffffff8111156120f057600080fd5b6120fc87828801611f50565b91505092959194509250565b6000806040838503121561211b57600080fd5b600061212985828601611efc565b925050602061213a85828601611f11565b9150509250929050565b6000806040838503121561215757600080fd5b600061216585828601611efc565b925050602061217685828601611fc4565b9150509250929050565b60006020828403121561219257600080fd5b60006121a084828501611f11565b91505092915050565b6000602082840312156121bb57600080fd5b60006121c984828501611f26565b91505092915050565b6000602082840312156121e457600080fd5b60006121f284828501611f3b565b91505092915050565b6000806020838503121561220e57600080fd5b600083013567ffffffffffffffff81111561222857600080fd5b61223485828601611f7a565b92509250509250929050565b60006020828403121561225257600080fd5b600061226084828501611fc4565b91505092915050565b612272816127a2565b82525050565b612281816127b4565b82525050565b600061229282612709565b61229c818561271f565b93506122ac818560208601612825565b6122b581612948565b840191505092915050565b60006122cb82612714565b6122d58185612730565b93506122e5818560208601612825565b6122ee81612948565b840191505092915050565b600061230482612714565b61230e8185612741565b935061231e818560208601612825565b80840191505092915050565b6000815461233781612858565b6123418186612741565b9450600182166000811461235c576001811461236d576123a0565b60ff198316865281860193506123a0565b612376856126f4565b60005b8381101561239857815481890152600182019150602081019050612379565b838801955050505b50505092915050565b60006123b6600a83612730565b91506123c182612959565b602082019050919050565b60006123d9602683612730565b91506123e482612982565b604082019050919050565b60006123fc600883612730565b9150612407826129d1565b602082019050919050565b600061241f602083612730565b915061242a826129fa565b602082019050919050565b6000612442602f83612730565b915061244d82612a23565b604082019050919050565b6000612465600083612741565b915061247082612a72565b600082019050919050565b6000612488600f83612730565b915061249382612a75565b602082019050919050565b60006124ab601483612730565b91506124b682612a9e565b602082019050919050565b6124ca8161280c565b82525050565b60006124dc828561232a565b91506124e882846122f9565b91506124f382612458565b91508190509392505050565b60006020820190506125146000830184612269565b92915050565b600060808201905061252f6000830187612269565b61253c6020830186612269565b61254960408301856124c1565b818103606083015261255b8184612287565b905095945050505050565b600060208201905061257b6000830184612278565b92915050565b6000602082019050818103600083015261259b81846122c0565b905092915050565b600060208201905081810360008301526125bc816123a9565b9050919050565b600060208201905081810360008301526125dc816123cc565b9050919050565b600060208201905081810360008301526125fc816123ef565b9050919050565b6000602082019050818103600083015261261c81612412565b9050919050565b6000602082019050818103600083015261263c81612435565b9050919050565b6000602082019050818103600083015261265c8161247b565b9050919050565b6000602082019050818103600083015261267c8161249e565b9050919050565b600060208201905061269860008301846124c1565b92915050565b60006126a86126b9565b90506126b4828261288a565b919050565b6000604051905090565b600067ffffffffffffffff8211156126de576126dd612919565b5b6126e782612948565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127578261280c565b91506127628361280c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612797576127966128bb565b5b828201905092915050565b60006127ad826127ec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612843578082015181840152602081019050612828565b83811115612852576000848401525b50505050565b6000600282049050600182168061287057607f821691505b60208210811415612884576128836128ea565b5b50919050565b61289382612948565b810181811067ffffffffffffffff821117156128b2576128b1612919565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f416c6c206d696e74656400000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e616374697665000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f546f6f206d616e7920666f722054780000000000000000000000000000000000600082015250565b7f546f6f206d616e7920666f722061646472657373000000000000000000000000600082015250565b612ad0816127a2565b8114612adb57600080fd5b50565b612ae7816127b4565b8114612af257600080fd5b50565b612afe816127c0565b8114612b0957600080fd5b50565b612b158161280c565b8114612b2057600080fd5b5056fea26469706673582212205c7a294bf931064ef9580c3dcb1a2ebd6f106a3117242a0f5b2d3e92e9ec43eb64736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000046a4ed210daf81801c80cf47b63dff0283b8ae17000000000000000000000000000000000000000000000000000000000000000d5361766167654b697474656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5361766167654b697474656e7300000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SavageKittens
Arg [1] : symbol (string): SavageKittens
Arg [2] : ownerWallet (address): 0x46a4ed210Daf81801C80CF47B63dFF0283B8Ae17

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000046a4ed210daf81801c80cf47b63dff0283b8ae17
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 5361766167654b697474656e7300000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [6] : 5361766167654b697474656e7300000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42893:2064:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16642:665;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21898:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24095:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23555:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15696:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43095:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43055:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25104:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44858:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25345:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42981:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21687:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43167:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44748:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17371:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22067:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44181:433;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24412:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43123:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25601:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43623:425;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42943:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44641:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24823:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43020:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16642:665;16772:4;17092:10;17077:25;;:11;:25;;;;:102;;;;17169:10;17154:25;;:11;:25;;;;17077:102;:179;;;;17246:10;17231:25;;:11;:25;;;;17077:179;17057:199;;16642:665;;;:::o;21898:100::-;21952:13;21985:5;21978:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21898:100;:::o;24095:245::-;24199:7;24229:16;24237:7;24229;:16::i;:::-;24224:64;;24254:34;;;;;;;;;;;;;;24224:64;24308:15;:24;24324:7;24308:24;;;;;;;;;;;;;;;;;;;;;24301:31;;24095:245;;;:::o;23555:474::-;23628:13;23660:27;23679:7;23660:18;:27::i;:::-;23628:61;;23710:5;23704:11;;:2;:11;;;23700:48;;;23724:24;;;;;;;;;;;;;;23700:48;23788:5;23765:28;;:19;:17;:19::i;:::-;:28;;;23761:175;;23813:44;23830:5;23837:19;:17;:19::i;:::-;23813:16;:44::i;:::-;23808:128;;23885:35;;;;;;;;;;;;;;23808:128;23761:175;23975:2;23948:15;:24;23964:7;23948:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24013:7;24009:2;23993:28;;24002:5;23993:28;;;;;;;;;;;;23555:474;;;:::o;15696:315::-;15749:7;15977:15;:13;:15::i;:::-;15962:12;;15946:13;;:28;:46;15939:53;;15696:315;:::o;43095:21::-;;;;;;;;;;;;;:::o;43055:31::-;;;;:::o;25104:170::-;25238:28;25248:4;25254:2;25258:7;25238:9;:28::i;:::-;25104:170;;;:::o;44858:96::-;2014:13;:11;:13::i;:::-;44937:9:::1;44925;;:21;;;;;;;;;;;;;;;;;;44858:96:::0;:::o;25345:185::-;25483:39;25500:4;25506:2;25510:7;25483:39;;;;;;;;;;;;:16;:39::i;:::-;25345:185;;;:::o;42981:32::-;;;;:::o;21687:144::-;21751:7;21794:27;21813:7;21794:18;:27::i;:::-;21771:52;;21687:144;;;:::o;43167:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44748:102::-;2014:13;:11;:13::i;:::-;44832:10:::1;44820:9;:22;;;;44748:102:::0;:::o;17371:224::-;17435:7;17476:1;17459:19;;:5;:19;;;17455:60;;;17487:28;;;;;;;;;;;;;;17455:60;12666:13;17533:18;:25;17552:5;17533:25;;;;;;;;;;;;;;;;:54;17526:61;;17371:224;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;22067:104::-;22123:13;22156:7;22149:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22067:104;:::o;44181:433::-;44255:9;;;;;;;;;;;44247:30;;;;;;;;;;;;:::i;:::-;;;;;;;;;44330:9;;44312:14;44296:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;44288:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;44391:8;;44373:14;:26;;44365:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44498:12;;44480:14;44452:25;44466:10;44452:13;:25::i;:::-;:42;;;;:::i;:::-;:58;;44430:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;44569:37;44579:10;44591:14;44569:9;:37::i;:::-;44181:433;:::o;24412:340::-;24555:19;:17;:19::i;:::-;24543:31;;:8;:31;;;24539:61;;;24583:17;;;;;;;;;;;;;;24539:61;24665:8;24613:18;:39;24632:19;:17;:19::i;:::-;24613:39;;;;;;;;;;;;;;;:49;24653:8;24613:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24725:8;24689:55;;24704:19;:17;:19::i;:::-;24689:55;;;24735:8;24689:55;;;;;;:::i;:::-;;;;;;;;24412:340;;:::o;43123:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25601:396::-;25768:28;25778:4;25784:2;25788:7;25768:9;:28::i;:::-;25829:1;25811:2;:14;;;:19;25807:183;;25850:56;25881:4;25887:2;25891:7;25900:5;25850:30;:56::i;:::-;25845:145;;25934:40;;;;;;;;;;;;;;25845:145;25807:183;25601:396;;;;:::o;43623:425::-;43724:13;43777:16;43785:7;43777;:16::i;:::-;43755:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;43924:1;43905:7;43899:21;;;;;:::i;:::-;;;:26;;:141;;44022:18;43899:141;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43969:7;43978:18;43988:7;43978:9;:18::i;:::-;43952:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43899:141;43879:161;;43623:425;;;:::o;42943:31::-;;;;:::o;44641:99::-;2014:13;:11;:13::i;:::-;44726:6:::1;;44716:7;:16;;;;;;;:::i;:::-;;44641:99:::0;;:::o;24823:214::-;24965:4;24994:18;:25;25013:5;24994:25;;;;;;;;;;;;;;;:35;25020:8;24994:35;;;;;;;;;;;;;;;;;;;;;;;;;24987:42;;24823:214;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;43020:28::-;;;;:::o;26252:273::-;26309:4;26365:7;26346:15;:13;:15::i;:::-;:26;;:66;;;;;26399:13;;26389:7;:23;26346:66;:152;;;;;26497:1;13436:8;26450:17;:26;26468:7;26450:26;;;;;;;;;;;;:43;:48;26346:152;26326:172;;26252:273;;;:::o;19074:1161::-;19168:7;19193:12;19208:7;19193:22;;19276:4;19257:15;:13;:15::i;:::-;:23;19253:915;;19310:13;;19303:4;:20;19299:869;;;19348:14;19365:17;:23;19383:4;19365:23;;;;;;;;;;;;19348:40;;19481:1;13436:8;19454:6;:23;:28;19450:699;;;19973:113;19990:1;19980:6;:11;19973:113;;;20033:17;:25;20051:6;;;;;;;20033:25;;;;;;;;;;;;20024:34;;19973:113;;;20119:6;20112:13;;;;;;19450:699;19299:869;;19253:915;20196:31;;;;;;;;;;;;;;19074:1161;;;;:::o;40620:105::-;40680:7;40707:10;40700:17;;40620:105;:::o;44056:101::-;44121:7;44148:1;44141:8;;44056:101;:::o;31750:2528::-;31865:27;31895;31914:7;31895:18;:27::i;:::-;31865:57;;31980:4;31939:45;;31955:19;31939:45;;;31935:99;;32006:28;;;;;;;;;;;;;;31935:99;32047:22;32096:4;32073:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;32117:43;32134:4;32140:19;:17;:19::i;:::-;32117:16;:43::i;:::-;32073:87;:147;;;;32201:19;:17;:19::i;:::-;32177:43;;:20;32189:7;32177:11;:20::i;:::-;:43;;;32073:147;32047:174;;32239:17;32234:66;;32265:35;;;;;;;;;;;;;;32234:66;32329:1;32315:16;;:2;:16;;;32311:52;;;32340:23;;;;;;;;;;;;;;32311:52;32376:43;32398:4;32404:2;32408:7;32417:1;32376:21;:43::i;:::-;32492:15;:24;32508:7;32492:24;;;;;;;;;;;;32485:31;;;;;;;;;;;32884:18;:24;32903:4;32884:24;;;;;;;;;;;;;;;;32882:26;;;;;;;;;;;;32953:18;:22;32972:2;32953:22;;;;;;;;;;;;;;;;32951:24;;;;;;;;;;;13714:8;13320:3;33334:15;:41;;33292:21;33310:2;33292:17;:21::i;:::-;:84;:128;33246:17;:26;33264:7;33246:26;;;;;;;;;;;:174;;;;33590:1;13714:8;33540:19;:46;:51;33536:626;;;33612:19;33644:1;33634:7;:11;33612:33;;33801:1;33767:17;:30;33785:11;33767:30;;;;;;;;;;;;:35;33763:384;;;33905:13;;33890:11;:28;33886:242;;34085:19;34052:17;:30;34070:11;34052:30;;;;;;;;;;;:52;;;;33886:242;33763:384;33536:626;;34209:7;34205:2;34190:27;;34199:4;34190:27;;;;;;;;;;;;34228:42;34249:4;34255:2;34259:7;34268:1;34228:20;:42::i;:::-;31750:2528;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3395:191;;:::o;17677:202::-;17738:7;12666:13;12803:2;17779:18;:25;17798:5;17779:25;;;;;;;;;;;;;;;;:49;;17778:93;17758:113;;17677:202;;;:::o;26609:104::-;26678:27;26688:2;26692:8;26678:27;;;;;;;;;;;;:9;:27::i;:::-;26609:104;;:::o;37974:831::-;38137:4;38196:2;38171:45;;;38235:19;:17;:19::i;:::-;38273:4;38296:7;38322:5;38171:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38154:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38573:1;38556:6;:13;:18;38552:235;;;38602:40;;;;;;;;;;;;;;38552:235;38745:6;38739:13;38730:6;38726:2;38722:15;38715:38;38154:644;38442:54;;;38415:81;;;:6;:81;;;;38391:105;;;37974:831;;;;;;:::o;40831:1992::-;40915:17;41339:3;41332:4;41326:11;41322:21;41315:28;;41430:3;41424:4;41417:17;41536:3;41992:5;42122:1;42117:3;42113:11;42106:18;;42259:2;42253:4;42249:13;42245:2;42241:22;42236:3;42228:36;42300:2;42294:4;42290:13;42282:21;;41884:697;42319:4;41884:697;;;42510:1;42505:3;42501:11;42494:18;;42561:2;42555:4;42551:13;42547:2;42543:22;42538:3;42530:36;42414:2;42408:4;42404:13;42396:21;;41884:697;;;41888:430;42620:3;42615;42611:13;42735:2;42730:3;42726:12;42719:19;;42798:6;42793:3;42786:19;40959:1857;;;;;:::o;39453:159::-;;;;;:::o;23084:180::-;23175:14;23241:5;23231:15;;23216:41;;;:::o;40271:158::-;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;27086:2461::-;27209:20;27232:13;;27209:36;;27274:1;27260:16;;:2;:16;;;27256:48;;;27285:19;;;;;;;;;;;;;;27256:48;27331:1;27319:8;:13;27315:44;;;27341:18;;;;;;;;;;;;;;27315:44;27372:61;27402:1;27406:2;27410:12;27424:8;27372:21;:61::i;:::-;28010:1;12803:2;27981:1;:25;;27980:31;27951:8;:61;27908:18;:22;27927:2;27908:22;;;;;;;;;;;;;;;;:104;;;;;;;;;;;13579:3;28411:29;28438:1;28426:8;:13;28411:14;:29::i;:::-;:56;;13320:3;28348:15;:41;;28306:21;28324:2;28306:17;:21::i;:::-;:84;:162;28255:17;:31;28273:12;28255:31;;;;;;;;;;;:213;;;;28485:20;28508:12;28485:35;;28535:11;28564:8;28549:12;:23;28535:37;;28611:1;28593:2;:14;;;:19;28589:826;;28633:504;28689:12;28685:2;28664:38;;28681:1;28664:38;;;;;;;;;;;;28756:212;28825:1;28858:2;28891:14;;;;;;28936:5;28756:30;:212::i;:::-;28725:365;;29026:40;;;;;;;;;;;;;;28725:365;29132:3;29117:12;:18;28633:504;;29218:12;29201:13;;:29;29197:43;;29232:8;;;29197:43;28589:826;;;29281:119;29337:14;;;;;;29333:2;29312:40;;29329:1;29312:40;;;;;;;;;;;;29395:3;29380:12;:18;29281:119;;28589:826;29445:12;29429:13;:28;;;;27086:2461;;29479:60;29508:1;29512:2;29516:12;29530:8;29479:20;:60::i;:::-;27086:2461;;;;:::o;23351:142::-;23409:14;23470:5;23460:15;;23445:41;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:256::-;4667:6;4716:2;4704:9;4695:7;4691:23;4687:32;4684:2;;;4732:1;4729;4722:12;4684:2;4775:1;4800:50;4842:7;4833:6;4822:9;4818:22;4800:50;:::i;:::-;4790:60;;4746:114;4674:193;;;;:::o;4873:260::-;4931:6;4980:2;4968:9;4959:7;4955:23;4951:32;4948:2;;;4996:1;4993;4986:12;4948:2;5039:1;5064:52;5108:7;5099:6;5088:9;5084:22;5064:52;:::i;:::-;5054:62;;5010:116;4938:195;;;;:::o;5139:282::-;5208:6;5257:2;5245:9;5236:7;5232:23;5228:32;5225:2;;;5273:1;5270;5263:12;5225:2;5316:1;5341:63;5396:7;5387:6;5376:9;5372:22;5341:63;:::i;:::-;5331:73;;5287:127;5215:206;;;;:::o;5427:395::-;5498:6;5506;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5740:65;5797:7;5788:6;5777:9;5773:22;5740:65;:::i;:::-;5722:83;;;;5585:230;5513:309;;;;;:::o;5828:262::-;5887:6;5936:2;5924:9;5915:7;5911:23;5907:32;5904:2;;;5952:1;5949;5942:12;5904:2;5995:1;6020:53;6065:7;6056:6;6045:9;6041:22;6020:53;:::i;:::-;6010:63;;5966:117;5894:196;;;;:::o;6096:118::-;6183:24;6201:5;6183:24;:::i;:::-;6178:3;6171:37;6161:53;;:::o;6220:109::-;6301:21;6316:5;6301:21;:::i;:::-;6296:3;6289:34;6279:50;;:::o;6335:360::-;6421:3;6449:38;6481:5;6449:38;:::i;:::-;6503:70;6566:6;6561:3;6503:70;:::i;:::-;6496:77;;6582:52;6627:6;6622:3;6615:4;6608:5;6604:16;6582:52;:::i;:::-;6659:29;6681:6;6659:29;:::i;:::-;6654:3;6650:39;6643:46;;6425:270;;;;;:::o;6701:364::-;6789:3;6817:39;6850:5;6817:39;:::i;:::-;6872:71;6936:6;6931:3;6872:71;:::i;:::-;6865:78;;6952:52;6997:6;6992:3;6985:4;6978:5;6974:16;6952:52;:::i;:::-;7029:29;7051:6;7029:29;:::i;:::-;7024:3;7020:39;7013:46;;6793:272;;;;;:::o;7071:377::-;7177:3;7205:39;7238:5;7205:39;:::i;:::-;7260:89;7342:6;7337:3;7260:89;:::i;:::-;7253:96;;7358:52;7403:6;7398:3;7391:4;7384:5;7380:16;7358:52;:::i;:::-;7435:6;7430:3;7426:16;7419:23;;7181:267;;;;;:::o;7478:845::-;7581:3;7618:5;7612:12;7647:36;7673:9;7647:36;:::i;:::-;7699:89;7781:6;7776:3;7699:89;:::i;:::-;7692:96;;7819:1;7808:9;7804:17;7835:1;7830:137;;;;7981:1;7976:341;;;;7797:520;;7830:137;7914:4;7910:9;7899;7895:25;7890:3;7883:38;7950:6;7945:3;7941:16;7934:23;;7830:137;;7976:341;8043:38;8075:5;8043:38;:::i;:::-;8103:1;8117:154;8131:6;8128:1;8125:13;8117:154;;;8205:7;8199:14;8195:1;8190:3;8186:11;8179:35;8255:1;8246:7;8242:15;8231:26;;8153:4;8150:1;8146:12;8141:17;;8117:154;;;8300:6;8295:3;8291:16;8284:23;;7983:334;;7797:520;;7585:738;;;;;;:::o;8329:366::-;8471:3;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8475:220;;;:::o;8701:366::-;8843:3;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8940:93;9029:3;8940:93;:::i;:::-;9058:2;9053:3;9049:12;9042:19;;8847:220;;;:::o;9073:365::-;9215:3;9236:66;9300:1;9295:3;9236:66;:::i;:::-;9229:73;;9311:93;9400:3;9311:93;:::i;:::-;9429:2;9424:3;9420:12;9413:19;;9219:219;;;:::o;9444:366::-;9586:3;9607:67;9671:2;9666:3;9607:67;:::i;:::-;9600:74;;9683:93;9772:3;9683:93;:::i;:::-;9801:2;9796:3;9792:12;9785:19;;9590:220;;;:::o;9816:366::-;9958:3;9979:67;10043:2;10038:3;9979:67;:::i;:::-;9972:74;;10055:93;10144:3;10055:93;:::i;:::-;10173:2;10168:3;10164:12;10157:19;;9962:220;;;:::o;10188:400::-;10348:3;10369:84;10451:1;10446:3;10369:84;:::i;:::-;10362:91;;10462:93;10551:3;10462:93;:::i;:::-;10580:1;10575:3;10571:11;10564:18;;10352:236;;;:::o;10594:366::-;10736:3;10757:67;10821:2;10816:3;10757:67;:::i;:::-;10750:74;;10833:93;10922:3;10833:93;:::i;:::-;10951:2;10946:3;10942:12;10935:19;;10740:220;;;:::o;10966:366::-;11108:3;11129:67;11193:2;11188:3;11129:67;:::i;:::-;11122:74;;11205:93;11294:3;11205:93;:::i;:::-;11323:2;11318:3;11314:12;11307:19;;11112:220;;;:::o;11338:118::-;11425:24;11443:5;11425:24;:::i;:::-;11420:3;11413:37;11403:53;;:::o;11462:695::-;11740:3;11762:92;11850:3;11841:6;11762:92;:::i;:::-;11755:99;;11871:95;11962:3;11953:6;11871:95;:::i;:::-;11864:102;;11983:148;12127:3;11983:148;:::i;:::-;11976:155;;12148:3;12141:10;;11744:413;;;;;:::o;12163:222::-;12256:4;12294:2;12283:9;12279:18;12271:26;;12307:71;12375:1;12364:9;12360:17;12351:6;12307:71;:::i;:::-;12261:124;;;;:::o;12391:640::-;12586:4;12624:3;12613:9;12609:19;12601:27;;12638:71;12706:1;12695:9;12691:17;12682:6;12638:71;:::i;:::-;12719:72;12787:2;12776:9;12772:18;12763:6;12719:72;:::i;:::-;12801;12869:2;12858:9;12854:18;12845:6;12801:72;:::i;:::-;12920:9;12914:4;12910:20;12905:2;12894:9;12890:18;12883:48;12948:76;13019:4;13010:6;12948:76;:::i;:::-;12940:84;;12591:440;;;;;;;:::o;13037:210::-;13124:4;13162:2;13151:9;13147:18;13139:26;;13175:65;13237:1;13226:9;13222:17;13213:6;13175:65;:::i;:::-;13129:118;;;;:::o;13253:313::-;13366:4;13404:2;13393:9;13389:18;13381:26;;13453:9;13447:4;13443:20;13439:1;13428:9;13424:17;13417:47;13481:78;13554:4;13545:6;13481:78;:::i;:::-;13473:86;;13371:195;;;;:::o;13572:419::-;13738:4;13776:2;13765:9;13761:18;13753:26;;13825:9;13819:4;13815:20;13811:1;13800:9;13796:17;13789:47;13853:131;13979:4;13853:131;:::i;:::-;13845:139;;13743:248;;;:::o;13997:419::-;14163:4;14201:2;14190:9;14186:18;14178:26;;14250:9;14244:4;14240:20;14236:1;14225:9;14221:17;14214:47;14278:131;14404:4;14278:131;:::i;:::-;14270:139;;14168:248;;;:::o;14422:419::-;14588:4;14626:2;14615:9;14611:18;14603:26;;14675:9;14669:4;14665:20;14661:1;14650:9;14646:17;14639:47;14703:131;14829:4;14703:131;:::i;:::-;14695:139;;14593:248;;;:::o;14847:419::-;15013:4;15051:2;15040:9;15036:18;15028:26;;15100:9;15094:4;15090:20;15086:1;15075:9;15071:17;15064:47;15128:131;15254:4;15128:131;:::i;:::-;15120:139;;15018:248;;;:::o;15272:419::-;15438:4;15476:2;15465:9;15461:18;15453:26;;15525:9;15519:4;15515:20;15511:1;15500:9;15496:17;15489:47;15553:131;15679:4;15553:131;:::i;:::-;15545:139;;15443:248;;;:::o;15697:419::-;15863:4;15901:2;15890:9;15886:18;15878:26;;15950:9;15944:4;15940:20;15936:1;15925:9;15921:17;15914:47;15978:131;16104:4;15978:131;:::i;:::-;15970:139;;15868:248;;;:::o;16122:419::-;16288:4;16326:2;16315:9;16311:18;16303:26;;16375:9;16369:4;16365:20;16361:1;16350:9;16346:17;16339:47;16403:131;16529:4;16403:131;:::i;:::-;16395:139;;16293:248;;;:::o;16547:222::-;16640:4;16678:2;16667:9;16663:18;16655:26;;16691:71;16759:1;16748:9;16744:17;16735:6;16691:71;:::i;:::-;16645:124;;;;:::o;16775:129::-;16809:6;16836:20;;:::i;:::-;16826:30;;16865:33;16893:4;16885:6;16865:33;:::i;:::-;16816:88;;;:::o;16910:75::-;16943:6;16976:2;16970:9;16960:19;;16950:35;:::o;16991:307::-;17052:4;17142:18;17134:6;17131:30;17128:2;;;17164:18;;:::i;:::-;17128:2;17202:29;17224:6;17202:29;:::i;:::-;17194:37;;17286:4;17280;17276:15;17268:23;;17057:241;;;:::o;17304:141::-;17353:4;17376:3;17368:11;;17399:3;17396:1;17389:14;17433:4;17430:1;17420:18;17412:26;;17358:87;;;:::o;17451:98::-;17502:6;17536:5;17530:12;17520:22;;17509:40;;;:::o;17555:99::-;17607:6;17641:5;17635:12;17625:22;;17614:40;;;:::o;17660:168::-;17743:11;17777:6;17772:3;17765:19;17817:4;17812:3;17808:14;17793:29;;17755:73;;;;:::o;17834:169::-;17918:11;17952:6;17947:3;17940:19;17992:4;17987:3;17983:14;17968:29;;17930:73;;;;:::o;18009:148::-;18111:11;18148:3;18133:18;;18123:34;;;;:::o;18163:305::-;18203:3;18222:20;18240:1;18222:20;:::i;:::-;18217:25;;18256:20;18274:1;18256:20;:::i;:::-;18251:25;;18410:1;18342:66;18338:74;18335:1;18332:81;18329:2;;;18416:18;;:::i;:::-;18329:2;18460:1;18457;18453:9;18446:16;;18207:261;;;;:::o;18474:96::-;18511:7;18540:24;18558:5;18540:24;:::i;:::-;18529:35;;18519:51;;;:::o;18576:90::-;18610:7;18653:5;18646:13;18639:21;18628:32;;18618:48;;;:::o;18672:149::-;18708:7;18748:66;18741:5;18737:78;18726:89;;18716:105;;;:::o;18827:126::-;18864:7;18904:42;18897:5;18893:54;18882:65;;18872:81;;;:::o;18959:77::-;18996:7;19025:5;19014:16;;19004:32;;;:::o;19042:154::-;19126:6;19121:3;19116;19103:30;19188:1;19179:6;19174:3;19170:16;19163:27;19093:103;;;:::o;19202:307::-;19270:1;19280:113;19294:6;19291:1;19288:13;19280:113;;;19379:1;19374:3;19370:11;19364:18;19360:1;19355:3;19351:11;19344:39;19316:2;19313:1;19309:10;19304:15;;19280:113;;;19411:6;19408:1;19405:13;19402:2;;;19491:1;19482:6;19477:3;19473:16;19466:27;19402:2;19251:258;;;;:::o;19515:320::-;19559:6;19596:1;19590:4;19586:12;19576:22;;19643:1;19637:4;19633:12;19664:18;19654:2;;19720:4;19712:6;19708:17;19698:27;;19654:2;19782;19774:6;19771:14;19751:18;19748:38;19745:2;;;19801:18;;:::i;:::-;19745:2;19566:269;;;;:::o;19841:281::-;19924:27;19946:4;19924:27;:::i;:::-;19916:6;19912:40;20054:6;20042:10;20039:22;20018:18;20006:10;20003:34;20000:62;19997:2;;;20065:18;;:::i;:::-;19997:2;20105:10;20101:2;20094:22;19884:238;;;:::o;20128:180::-;20176:77;20173:1;20166:88;20273:4;20270:1;20263:15;20297:4;20294:1;20287:15;20314:180;20362:77;20359:1;20352:88;20459:4;20456:1;20449:15;20483:4;20480:1;20473:15;20500:180;20548:77;20545:1;20538:88;20645:4;20642:1;20635:15;20669:4;20666:1;20659:15;20686:102;20727:6;20778:2;20774:7;20769:2;20762:5;20758:14;20754:28;20744:38;;20734:54;;;:::o;20794:160::-;20934:12;20930:1;20922:6;20918:14;20911:36;20900:54;:::o;20960:225::-;21100:34;21096:1;21088:6;21084:14;21077:58;21169:8;21164:2;21156:6;21152:15;21145:33;21066:119;:::o;21191:158::-;21331:10;21327:1;21319:6;21315:14;21308:34;21297:52;:::o;21355:182::-;21495:34;21491:1;21483:6;21479:14;21472:58;21461:76;:::o;21543:234::-;21683:34;21679:1;21671:6;21667:14;21660:58;21752:17;21747:2;21739:6;21735:15;21728:42;21649:128;:::o;21783:114::-;21889:8;:::o;21903:165::-;22043:17;22039:1;22031:6;22027:14;22020:41;22009:59;:::o;22074:170::-;22214:22;22210:1;22202:6;22198:14;22191:46;22180:64;:::o;22250:122::-;22323:24;22341:5;22323:24;:::i;:::-;22316:5;22313:35;22303:2;;22362:1;22359;22352:12;22303:2;22293:79;:::o;22378:116::-;22448:21;22463:5;22448:21;:::i;:::-;22441:5;22438:32;22428:2;;22484:1;22481;22474:12;22428:2;22418:76;:::o;22500:120::-;22572:23;22589:5;22572:23;:::i;:::-;22565:5;22562:34;22552:2;;22610:1;22607;22600:12;22552:2;22542:78;:::o;22626:122::-;22699:24;22717:5;22699:24;:::i;:::-;22692:5;22689:35;22679:2;;22738:1;22735;22728:12;22679:2;22669:79;:::o

Swarm Source

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