ETH Price: $3,340.47 (-0.79%)
Gas: 4 Gwei

Token

Shadow War Agents (SWA)
 

Overview

Max Total Supply

343 SWA

Holders

34

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
garbageswap.eth
Balance
1 SWA
0xfc8977acafd9a6158c30a4dfddf36cabcd2ff63d
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:
SWAgents

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 1000 runs

Other Settings:
paris EvmVersion
File 1 of 23 : OwnableBasic.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./OwnablePermissions.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract OwnableBasic is OwnablePermissions, Ownable {
    function _requireCallerIsContractOwner() internal view virtual override {
        _checkOwner();
    }
}

File 2 of 23 : OwnablePermissions.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/Context.sol";

abstract contract OwnablePermissions is Context {
    function _requireCallerIsContractOwner() internal view virtual;
}

File 3 of 23 : ICreatorToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../interfaces/ICreatorTokenTransferValidator.sol";

interface ICreatorToken {
    event TransferValidatorUpdated(address oldValidator, address newValidator);

    function getTransferValidator() external view returns (ICreatorTokenTransferValidator);
    function getSecurityPolicy() external view returns (CollectionSecurityPolicy memory);
    function getWhitelistedOperators() external view returns (address[] memory);
    function getPermittedContractReceivers() external view returns (address[] memory);
    function isOperatorWhitelisted(address operator) external view returns (bool);
    function isContractReceiverPermitted(address receiver) external view returns (bool);
    function isTransferAllowed(address caller, address from, address to) external view returns (bool);
}

File 4 of 23 : ICreatorTokenTransferValidator.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./IEOARegistry.sol";
import "./ITransferSecurityRegistry.sol";
import "./ITransferValidator.sol";

interface ICreatorTokenTransferValidator is ITransferSecurityRegistry, ITransferValidator, IEOARegistry {}

File 5 of 23 : IEOARegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

interface IEOARegistry is IERC165 {
    function isVerifiedEOA(address account) external view returns (bool);
}

File 6 of 23 : ITransferSecurityRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../utils/TransferPolicy.sol";

interface ITransferSecurityRegistry {
    event AddedToAllowlist(AllowlistTypes indexed kind, uint256 indexed id, address indexed account);
    event CreatedAllowlist(AllowlistTypes indexed kind, uint256 indexed id, string indexed name);
    event ReassignedAllowlistOwnership(AllowlistTypes indexed kind, uint256 indexed id, address indexed newOwner);
    event RemovedFromAllowlist(AllowlistTypes indexed kind, uint256 indexed id, address indexed account);
    event SetAllowlist(AllowlistTypes indexed kind, address indexed collection, uint120 indexed id);
    event SetTransferSecurityLevel(address indexed collection, TransferSecurityLevels level);

    function createOperatorWhitelist(string calldata name) external returns (uint120);
    function createPermittedContractReceiverAllowlist(string calldata name) external returns (uint120);
    function reassignOwnershipOfOperatorWhitelist(uint120 id, address newOwner) external;
    function reassignOwnershipOfPermittedContractReceiverAllowlist(uint120 id, address newOwner) external;
    function renounceOwnershipOfOperatorWhitelist(uint120 id) external;
    function renounceOwnershipOfPermittedContractReceiverAllowlist(uint120 id) external;
    function setTransferSecurityLevelOfCollection(address collection, TransferSecurityLevels level) external;
    function setOperatorWhitelistOfCollection(address collection, uint120 id) external;
    function setPermittedContractReceiverAllowlistOfCollection(address collection, uint120 id) external;
    function addOperatorToWhitelist(uint120 id, address operator) external;
    function addPermittedContractReceiverToAllowlist(uint120 id, address receiver) external;
    function removeOperatorFromWhitelist(uint120 id, address operator) external;
    function removePermittedContractReceiverFromAllowlist(uint120 id, address receiver) external;
    function getCollectionSecurityPolicy(address collection) external view returns (CollectionSecurityPolicy memory);
    function getWhitelistedOperators(uint120 id) external view returns (address[] memory);
    function getPermittedContractReceivers(uint120 id) external view returns (address[] memory);
    function isOperatorWhitelisted(uint120 id, address operator) external view returns (bool);
    function isContractReceiverPermitted(uint120 id, address receiver) external view returns (bool);
}

File 7 of 23 : ITransferValidator.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../utils/TransferPolicy.sol";

interface ITransferValidator {
    function applyCollectionTransferPolicy(address caller, address from, address to) external view;
}

File 8 of 23 : CreatorTokenBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "../access/OwnablePermissions.sol";
import "../interfaces/ICreatorToken.sol";
import "../interfaces/ICreatorTokenTransferValidator.sol";
import "../utils/TransferValidation.sol";
import "@openzeppelin/contracts/interfaces/IERC165.sol";

/**
 * @title CreatorTokenBase
 * @author Limit Break, Inc.
 * @notice CreatorTokenBase is an abstract contract that provides basic functionality for managing token 
 * transfer policies through an implementation of ICreatorTokenTransferValidator. This contract is intended to be used
 * as a base for creator-specific token contracts, enabling customizable transfer restrictions and security policies.
 *
 * <h4>Features:</h4>
 * <ul>Ownable: This contract can have an owner who can set and update the transfer validator.</ul>
 * <ul>TransferValidation: Implements the basic token transfer validation interface.</ul>
 * <ul>ICreatorToken: Implements the interface for creator tokens, providing view functions for token security policies.</ul>
 *
 * <h4>Benefits:</h4>
 * <ul>Provides a flexible and modular way to implement custom token transfer restrictions and security policies.</ul>
 * <ul>Allows creators to enforce policies such as whitelisted operators and permitted contract receivers.</ul>
 * <ul>Can be easily integrated into other token contracts as a base contract.</ul>
 *
 * <h4>Intended Usage:</h4>
 * <ul>Use as a base contract for creator token implementations that require advanced transfer restrictions and 
 *   security policies.</ul>
 * <ul>Set and update the ICreatorTokenTransferValidator implementation contract to enforce desired policies for the 
 *   creator token.</ul>
 */
abstract contract CreatorTokenBase is OwnablePermissions, TransferValidation, ICreatorToken {
    
    error CreatorTokenBase__InvalidTransferValidatorContract();
    error CreatorTokenBase__SetTransferValidatorFirst();

    address public constant DEFAULT_TRANSFER_VALIDATOR = address(0x0000721C310194CcfC01E523fc93C9cCcFa2A0Ac);
    TransferSecurityLevels public constant DEFAULT_TRANSFER_SECURITY_LEVEL = TransferSecurityLevels.One;
    uint120 public constant DEFAULT_OPERATOR_WHITELIST_ID = uint120(1);

    ICreatorTokenTransferValidator private transferValidator;

    /**
     * @notice Allows the contract owner to set the transfer validator to the official validator contract
     *         and set the security policy to the recommended default settings.
     * @dev    May be overridden to change the default behavior of an individual collection.
     */
    function setToDefaultSecurityPolicy() public virtual {
        _requireCallerIsContractOwner();
        setTransferValidator(DEFAULT_TRANSFER_VALIDATOR);
        ICreatorTokenTransferValidator(DEFAULT_TRANSFER_VALIDATOR).setTransferSecurityLevelOfCollection(address(this), DEFAULT_TRANSFER_SECURITY_LEVEL);
        ICreatorTokenTransferValidator(DEFAULT_TRANSFER_VALIDATOR).setOperatorWhitelistOfCollection(address(this), DEFAULT_OPERATOR_WHITELIST_ID);
    }

    /**
     * @notice Allows the contract owner to set the transfer validator to a custom validator contract
     *         and set the security policy to their own custom settings.
     */
    function setToCustomValidatorAndSecurityPolicy(
        address validator, 
        TransferSecurityLevels level, 
        uint120 operatorWhitelistId, 
        uint120 permittedContractReceiversAllowlistId) public {
        _requireCallerIsContractOwner();

        setTransferValidator(validator);

        ICreatorTokenTransferValidator(validator).
            setTransferSecurityLevelOfCollection(address(this), level);

        ICreatorTokenTransferValidator(validator).
            setOperatorWhitelistOfCollection(address(this), operatorWhitelistId);

        ICreatorTokenTransferValidator(validator).
            setPermittedContractReceiverAllowlistOfCollection(address(this), permittedContractReceiversAllowlistId);
    }

    /**
     * @notice Allows the contract owner to set the security policy to their own custom settings.
     * @dev    Reverts if the transfer validator has not been set.
     */
    function setToCustomSecurityPolicy(
        TransferSecurityLevels level, 
        uint120 operatorWhitelistId, 
        uint120 permittedContractReceiversAllowlistId) public {
        _requireCallerIsContractOwner();

        ICreatorTokenTransferValidator validator = getTransferValidator();
        if (address(validator) == address(0)) {
            revert CreatorTokenBase__SetTransferValidatorFirst();
        }

        validator.setTransferSecurityLevelOfCollection(address(this), level);
        validator.setOperatorWhitelistOfCollection(address(this), operatorWhitelistId);
        validator.setPermittedContractReceiverAllowlistOfCollection(address(this), permittedContractReceiversAllowlistId);
    }

    /**
     * @notice Sets the transfer validator for the token contract.
     *
     * @dev    Throws when provided validator contract is not the zero address and doesn't support 
     *         the ICreatorTokenTransferValidator interface. 
     * @dev    Throws when the caller is not the contract owner.
     *
     * @dev    <h4>Postconditions:</h4>
     *         1. The transferValidator address is updated.
     *         2. The `TransferValidatorUpdated` event is emitted.
     *
     * @param transferValidator_ The address of the transfer validator contract.
     */
    function setTransferValidator(address transferValidator_) public {
        _requireCallerIsContractOwner();

        bool isValidTransferValidator = false;

        if(transferValidator_.code.length > 0) {
            try IERC165(transferValidator_).supportsInterface(type(ICreatorTokenTransferValidator).interfaceId) 
                returns (bool supportsInterface) {
                isValidTransferValidator = supportsInterface;
            } catch {}
        }

        if(transferValidator_ != address(0) && !isValidTransferValidator) {
            revert CreatorTokenBase__InvalidTransferValidatorContract();
        }

        emit TransferValidatorUpdated(address(transferValidator), transferValidator_);

        transferValidator = ICreatorTokenTransferValidator(transferValidator_);
    }

    /**
     * @notice Returns the transfer validator contract address for this token contract.
     */
    function getTransferValidator() public view override returns (ICreatorTokenTransferValidator) {
        return transferValidator;
    }

    /**
     * @notice Returns the security policy for this token contract, which includes:
     *         Transfer security level, operator whitelist id, permitted contract receiver allowlist id.
     */
    function getSecurityPolicy() public view override returns (CollectionSecurityPolicy memory) {
        if (address(transferValidator) != address(0)) {
            return transferValidator.getCollectionSecurityPolicy(address(this));
        }

        return CollectionSecurityPolicy({
            transferSecurityLevel: TransferSecurityLevels.Zero,
            operatorWhitelistId: 0,
            permittedContractReceiversId: 0
        });
    }

    /**
     * @notice Returns the list of all whitelisted operators for this token contract.
     * @dev    This can be an expensive call and should only be used in view-only functions.
     */
    function getWhitelistedOperators() public view override returns (address[] memory) {
        if (address(transferValidator) != address(0)) {
            return transferValidator.getWhitelistedOperators(
                transferValidator.getCollectionSecurityPolicy(address(this)).operatorWhitelistId);
        }

        return new address[](0);
    }

    /**
     * @notice Returns the list of permitted contract receivers for this token contract.
     * @dev    This can be an expensive call and should only be used in view-only functions.
     */
    function getPermittedContractReceivers() public view override returns (address[] memory) {
        if (address(transferValidator) != address(0)) {
            return transferValidator.getPermittedContractReceivers(
                transferValidator.getCollectionSecurityPolicy(address(this)).permittedContractReceiversId);
        }

        return new address[](0);
    }

    /**
     * @notice Checks if an operator is whitelisted for this token contract.
     * @param operator The address of the operator to check.
     */
    function isOperatorWhitelisted(address operator) public view override returns (bool) {
        if (address(transferValidator) != address(0)) {
            return transferValidator.isOperatorWhitelisted(
                transferValidator.getCollectionSecurityPolicy(address(this)).operatorWhitelistId, operator);
        }

        return false;
    }

    /**
     * @notice Checks if a contract receiver is permitted for this token contract.
     * @param receiver The address of the receiver to check.
     */
    function isContractReceiverPermitted(address receiver) public view override returns (bool) {
        if (address(transferValidator) != address(0)) {
            return transferValidator.isContractReceiverPermitted(
                transferValidator.getCollectionSecurityPolicy(address(this)).permittedContractReceiversId, receiver);
        }

        return false;
    }

    /**
     * @notice Determines if a transfer is allowed based on the token contract's security policy.  Use this function
     *         to simulate whether or not a transfer made by the specified `caller` from the `from` address to the `to`
     *         address would be allowed by this token's security policy.
     *
     * @notice This function only checks the security policy restrictions and does not check whether token ownership
     *         or approvals are in place. 
     *
     * @param caller The address of the simulated caller.
     * @param from   The address of the sender.
     * @param to     The address of the receiver.
     * @return       True if the transfer is allowed, false otherwise.
     */
    function isTransferAllowed(address caller, address from, address to) public view override returns (bool) {
        if (address(transferValidator) != address(0)) {
            try transferValidator.applyCollectionTransferPolicy(caller, from, to) {
                return true;
            } catch {
                return false;
            }
        }
        return true;
    }

    /**
     * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy.
     *      Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent
     *      and calling _validateBeforeTransfer so that checks can be properly applied during token transfers.
     *
     * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is
     *      set to a non-zero address.
     *
     * @param caller  The address of the caller.
     * @param from    The address of the sender.
     * @param to      The address of the receiver.
     */
    function _preValidateTransfer(
        address caller, 
        address from, 
        address to, 
        uint256 /*tokenId*/, 
        uint256 /*value*/) internal virtual override {
        if (address(transferValidator) != address(0)) {
            transferValidator.applyCollectionTransferPolicy(caller, from, to);
        }
    }
}

File 9 of 23 : TransferPolicy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

enum AllowlistTypes {
    Operators,
    PermittedContractReceivers
}

enum ReceiverConstraints {
    None,
    NoCode,
    EOA
}

enum CallerConstraints {
    None,
    OperatorWhitelistEnableOTC,
    OperatorWhitelistDisableOTC
}

enum StakerConstraints {
    None,
    CallerIsTxOrigin,
    EOA
}

enum TransferSecurityLevels {
    Zero,
    One,
    Two,
    Three,
    Four,
    Five,
    Six
}

struct TransferSecurityPolicy {
    CallerConstraints callerConstraints;
    ReceiverConstraints receiverConstraints;
}

struct CollectionSecurityPolicy {
    TransferSecurityLevels transferSecurityLevel;
    uint120 operatorWhitelistId;
    uint120 permittedContractReceiversId;
}

File 10 of 23 : TransferValidation.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/utils/Context.sol";

/**
 * @title TransferValidation
 * @author Limit Break, Inc.
 * @notice A mix-in that can be combined with ERC-721 contracts to provide more granular hooks.
 * Openzeppelin's ERC721 contract only provides hooks for before and after transfer.  This allows
 * developers to validate or customize transfers within the context of a mint, a burn, or a transfer.
 */
abstract contract TransferValidation is Context {
    
    error ShouldNotMintToBurnAddress();

    /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks.
    function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual {
        bool fromZeroAddress = from == address(0);
        bool toZeroAddress = to == address(0);

        if(fromZeroAddress && toZeroAddress) {
            revert ShouldNotMintToBurnAddress();
        } else if(fromZeroAddress) {
            _preValidateMint(_msgSender(), to, tokenId, msg.value);
        } else if(toZeroAddress) {
            _preValidateBurn(_msgSender(), from, tokenId, msg.value);
        } else {
            _preValidateTransfer(_msgSender(), from, to, tokenId, msg.value);
        }
    }

    /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks.
    function _validateAfterTransfer(address from, address to, uint256 tokenId) internal virtual {
        bool fromZeroAddress = from == address(0);
        bool toZeroAddress = to == address(0);

        if(fromZeroAddress && toZeroAddress) {
            revert ShouldNotMintToBurnAddress();
        } else if(fromZeroAddress) {
            _postValidateMint(_msgSender(), to, tokenId, msg.value);
        } else if(toZeroAddress) {
            _postValidateBurn(_msgSender(), from, tokenId, msg.value);
        } else {
            _postValidateTransfer(_msgSender(), from, to, tokenId, msg.value);
        }
    }

    /// @dev Optional validation hook that fires before a mint
    function _preValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {}

    /// @dev Optional validation hook that fires after a mint
    function _postValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {}

    /// @dev Optional validation hook that fires before a burn
    function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {}

    /// @dev Optional validation hook that fires after a burn
    function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {}

    /// @dev Optional validation hook that fires before a transfer
    function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {}

    /// @dev Optional validation hook that fires after a transfer
    function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {}
}

File 11 of 23 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 12 of 23 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

File 13 of 23 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 14 of 23 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 15 of 23 : Context.sol
// SPDX-License-Identifier: MIT
// 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 16 of 23 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 17 of 23 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 18 of 23 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

File 19 of 23 : SWAgents.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;

/**
░░░░░░░ ░░   ░░  ░░░░░  ░░░░░░   ░░░░░░  ░░     ░░     ░░     ░░  ░░░░░  ░░░░░░  
▒▒      ▒▒   ▒▒ ▒▒   ▒▒ ▒▒   ▒▒ ▒▒    ▒▒ ▒▒     ▒▒     ▒▒     ▒▒ ▒▒   ▒▒ ▒▒   ▒▒ 
▒▒▒▒▒▒▒ ▒▒▒▒▒▒▒ ▒▒▒▒▒▒▒ ▒▒   ▒▒ ▒▒    ▒▒ ▒▒  ▒  ▒▒     ▒▒  ▒  ▒▒ ▒▒▒▒▒▒▒ ▒▒▒▒▒▒  
     ▓▓ ▓▓   ▓▓ ▓▓   ▓▓ ▓▓   ▓▓ ▓▓    ▓▓ ▓▓ ▓▓▓ ▓▓     ▓▓ ▓▓▓ ▓▓ ▓▓   ▓▓ ▓▓   ▓▓ 
███████ ██   ██ ██   ██ ██████   ██████   ███ ███       ███ ███  ██   ██ ██   ██ 
*/

/// @title Shadow War NFT Project
/// @author Maerlin KirienzoETH @patriotsdivision
/// @notice This contract mints Agents (NFTs) for the Shadow War project.
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@limitbreak/creator-token-contracts/contracts/utils/CreatorTokenBase.sol";
import "@limitbreak/creator-token-contracts/contracts/access/OwnableBasic.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract SWAgents is OwnableBasic, ERC721AQueryable, CreatorTokenBase, ERC2981 {
    /// @dev Represents the price of each tier.
    struct PriceByTier {
        uint64 tier1;
        uint64 tier2;
        uint64 tier3;
    }

    /// @dev Represent each tier of a supply type.
    struct SupplyType {
        uint24 tier1;
        uint24 tier2;
        uint24 tier3;
    }

    /// @dev Represents the unpacked value of _packedTieredSupplyTypes, all tiers for all supplies.
    struct UnpackedSupplyData {
        /// @dev Global max supply of each tier in the collection.
        uint24 tier1MaxSupply;
        uint24 tier2MaxSupply;
        uint24 tier3MaxSupply;
        /// @dev Maximum supply that can be reached during the public sale.
        uint24 tier1MaxPublicSupply;
        uint24 tier2MaxPublicSupply;
        uint24 tier3MaxPublicSupply;
        /// @dev Current supply of the collection.
        uint24 tier1CurrentSupply;
        uint24 tier2CurrentSupply;
        uint24 tier3CurrentSupply;
    }

    /// @notice Base URI for the Agents' metadata.
    string private _uri;
    /// @notice Suffix for the Agents' metadata URI, typically a file extension.
    string private _uriSuffix = ".json";
    /// @notice URI for the hidden metadata before the reveal.
    string private _hiddenMetadataUri;

    /// @notice Cost to mint an NFT for each tier.
    PriceByTier public tiersCost;

    /// @notice Packed supply data.
    uint216 private _packedTieredSupplyTypes;

    /// @notice Flag indicating if minting is paused.
    bool public paused = true;
    /// @notice Flag indicating if presale is active.
    bool public presale = false;
    /// @notice Flag indicating if Agents' metadata has been revealed.
    bool public revealed = false;

    /// @notice The root of the Merkle tree for the whitelist phase.
    bytes32 public whitelistMerkleRoot;
    /// @notice The root of the Merkle tree for the public phase.
    bytes32 public publicMerkleRoot;

    /// @notice Maximum number of Agents an address can mint in the public phase.
    uint256 public maxAgentsMintedPerAddress;
    /// @notice Maximum number of Agents an address can mint in the WL phase.
    uint256 public maxAgentsMintedPerAddressForWL;
    /// @notice Index to use to get data from _agentsMintedPerAddress
    uint8 private _mintTrackerActiveIndex;
    /// @notice Keeps track of how many Agents each address has minted during the public phase.
    mapping(uint8 => mapping(address => uint256))
        private _agentsMintedPerAddress;
    /// @notice Keeps track of how many Agents each address has minted during the WL phase.
    mapping(address => uint256) public agentsMintedPerAddressForWL;

    /// @notice Mapping to track approved contract operators.
    mapping(address => bool) public approvedOperators;

    /// @dev Emitted when a batch of metadata needs to be updated.
    /// This event is useful for marketplaces that can listen and automatically update
    /// the metadata for tokens within the specified range.
    /// @param fromTokenId The starting token ID of the metadata update batch.
    /// @param toTokenId The ending token ID of the metadata update batch.
    event BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId);

    /// @notice Constructs the SWAgents contract.
    /// @param _name Name of the ERC721 token.
    /// @param _symbol Symbol of the ERC721 token.
    /// @param _tiersCost Cost to mint an Agent per tier.
    /// @param _tiersMaxSupply Maximum supply of Agents that can be minted per tier.
    /// @param _maxTiersSupplyForPublicPhase Maximum supply of Agents that can be minted per tier in the public phase.
    /// @param _maxAgentsMintedPerAddress Maximum number of Agents an address can mint in the public phase.
    /// @param _maxAgentsMintedPerAddressForWL Maximum number of Agents an address can mint in the WL phase.
    constructor(
        string memory _name,
        string memory _symbol,
        PriceByTier memory _tiersCost,
        SupplyType memory _tiersMaxSupply,
        SupplyType memory _maxTiersSupplyForPublicPhase,
        uint256 _maxAgentsMintedPerAddress,
        uint256 _maxAgentsMintedPerAddressForWL
    ) CreatorTokenBase() ERC721A(_name, _symbol) {
        tiersCost = _tiersCost;
        maxAgentsMintedPerAddress = _maxAgentsMintedPerAddress;
        _packedTieredSupplyTypes = _packAllSupplyTypes(
            _packSupplyTypeData(
                _tiersMaxSupply.tier1,
                _tiersMaxSupply.tier2,
                _tiersMaxSupply.tier3
            ),
            _packSupplyTypeData(
                _maxTiersSupplyForPublicPhase.tier1,
                _maxTiersSupplyForPublicPhase.tier2,
                _maxTiersSupplyForPublicPhase.tier3
            ),
            _packSupplyTypeData(0, 0, 0)
        );
        maxAgentsMintedPerAddressForWL = _maxAgentsMintedPerAddressForWL;
        _setDefaultRoyalty(msg.sender, 500);
    }

    /// @dev Pack the data of every tier in a uint72 value.
    function _packSupplyTypeData(
        uint24 _tier1,
        uint24 _tier2,
        uint24 _tier3
    ) private pure returns (uint72) {
        return (uint72(_tier1) << 48) | (uint72(_tier2) << 24) | uint72(_tier3);
    }

    /// @dev Pack the data of every supply type in a uint216 value.
    function _packAllSupplyTypes(
        uint72 _maxSupplyPerTier,
        uint72 _maxPublicSupplyPerTier,
        uint72 _currentSupplyPerTier
    ) private pure returns (uint216) {
        return
            (uint216(_maxSupplyPerTier) << 144) |
            (uint216(_maxPublicSupplyPerTier) << 72) |
            uint216(_currentSupplyPerTier);
    }

    /// @notice Returns the data for all tiers of all supply types.
    /// @dev Unpack _packedTieredSupplyTypes which consists of 9 uint24 values packed together.
    function _getAllSupplyData()
        private
        view
        returns (UnpackedSupplyData memory)
    {
        uint216 _packedData = _packedTieredSupplyTypes;
        return
            UnpackedSupplyData(
                uint24(_packedData >> 192),
                uint24(_packedData >> 168),
                uint24(_packedData >> 144),
                uint24(_packedData >> 120),
                uint24(_packedData >> 96),
                uint24(_packedData >> 72),
                uint24(_packedData >> 48),
                uint24(_packedData >> 24),
                uint24(_packedData)
            );
    }

    /// @notice Mints the specified amount of Agents.
    /// @param _amountForTier1 The number of Agents to be minted in tier 1.
    /// @param _amountForTier2 The number of Agents to be minted in tier 2.
    /// @param _amountForTier3 The number of Agents to be minted in tier 3.
    /// @param _to The address that will receive the NFTs.
    /// @param _merkleProof The Merkle proof verifying address is allowed to mint in this phase.
    function mint(
        uint16 _amountForTier1,
        uint16 _amountForTier2,
        uint16 _amountForTier3,
        address _to,
        bytes32[] calldata _merkleProof
    ) public payable {
        require(!paused, "The contract is paused!");
        require(
            msg.value ==
                _calculateCost(
                    _amountForTier1,
                    _amountForTier2,
                    _amountForTier3
                ),
            "Incorrect funds!"
        );
        uint256 _amountToMint = _amountForTier1 +
            _amountForTier2 +
            _amountForTier3;
        uint8 __mintTrackerActiveIndex = _mintTrackerActiveIndex;
        require(
            _agentsMintedPerAddress[__mintTrackerActiveIndex][msg.sender] +
                _amountToMint <=
                maxAgentsMintedPerAddress,
            "Max mints per address exceeded!"
        );

        bytes32 leaf = keccak256(abi.encodePacked((msg.sender)));
        require(
            MerkleProof.verify(_merkleProof, publicMerkleRoot, leaf),
            "Invalid proof"
        );

        _updateSupplyByTier(
            _amountForTier1,
            _amountForTier2,
            _amountForTier3,
            true
        );
        _agentsMintedPerAddress[__mintTrackerActiveIndex][
            msg.sender
        ] += _amountToMint;
        _safeMint(_to, _amountToMint);
    }

    /// @notice Mints Agents for whitelisted addresses.
    /// @dev This function can only be called once per address.
    /// @param _amountForTier1 The number of Agents to be minted in tier 1.
    /// @param _amountForTier2 The number of Agents to be minted in tier 2.
    /// @param _amountForTier3 The number of Agents to be minted in tier 3.
    /// @param _to The address that will receive the NFTs.
    /// @param _merkleProof The Merkle proof verifying address is whitelisted.
    function whitelistMint(
        uint16 _amountForTier1,
        uint16 _amountForTier2,
        uint16 _amountForTier3,
        address _to,
        bytes32[] calldata _merkleProof
    ) public payable {
        require(presale, "Presale is not active.");
        require(
            msg.value ==
                _calculateCost(
                    _amountForTier1,
                    _amountForTier2,
                    _amountForTier3
                ),
            "Incorrect funds!"
        );
        uint256 _amountToMint = _amountForTier1 +
            _amountForTier2 +
            _amountForTier3;
        require(
            agentsMintedPerAddressForWL[msg.sender] + _amountToMint <=
                maxAgentsMintedPerAddressForWL,
            "Max mints per address exceeded!"
        );

        bytes32 leaf = keccak256(abi.encodePacked((msg.sender)));
        require(
            MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf),
            "Invalid proof"
        );

        _updateSupplyByTier(
            _amountForTier1,
            _amountForTier2,
            _amountForTier3,
            false
        );
        agentsMintedPerAddressForWL[msg.sender] += _amountToMint;
        _safeMint(_to, _amountToMint);
    }

    /// @notice Mint tokens for a specific address without constraints.
    /// @param _amountForTier1 The number of Agents to be minted in tier 1.
    /// @param _amountForTier2 The number of Agents to be minted in tier 2.
    /// @param _amountForTier3 The number of Agents to be minted in tier 3.
    /// @param _to The address to mint tokens to.
    function mintForAddress(
        uint16 _amountForTier1,
        uint16 _amountForTier2,
        uint16 _amountForTier3,
        address _to
    ) public onlyOwner {
        _updateSupplyByTier(
            _amountForTier1,
            _amountForTier2,
            _amountForTier3,
            true
        );
        _safeMint(_to, _amountForTier1 + _amountForTier2 + _amountForTier3);
    }

    /// @dev Return the cost of the mint for the provided amount of tiers.
    function _calculateCost(
        uint16 _amountForTier1,
        uint16 _amountForTier2,
        uint16 _amountForTier3
    ) private view returns (uint256) {
        PriceByTier memory _tiersCost = tiersCost;
        return
            (_tiersCost.tier1 * _amountForTier1) +
            (_tiersCost.tier2 * _amountForTier2) +
            (_tiersCost.tier3 * _amountForTier3);
    }

    /// @dev Check and update the supply for each tier.
    /// @param _isPublicPhase If true, should check the max supply for the public phase as well.
    function _updateSupplyByTier(
        uint16 _amountForTier1,
        uint16 _amountForTier2,
        uint16 _amountForTier3,
        bool _isPublicPhase
    ) private {
        UnpackedSupplyData memory _unpackedSupplyData = _getAllSupplyData();

        // Should be safe from overflow attack because storage supply is uint24 and parameters are uint16
        unchecked {
            _unpackedSupplyData.tier1CurrentSupply += _amountForTier1;
            _unpackedSupplyData.tier2CurrentSupply += _amountForTier2;
            _unpackedSupplyData.tier3CurrentSupply += _amountForTier3;

            if (_isPublicPhase) {
                require(
                    _unpackedSupplyData.tier1CurrentSupply <=
                        _unpackedSupplyData.tier1MaxPublicSupply &&
                        _unpackedSupplyData.tier2CurrentSupply <=
                        _unpackedSupplyData.tier2MaxPublicSupply &&
                        _unpackedSupplyData.tier3CurrentSupply <=
                        _unpackedSupplyData.tier3MaxPublicSupply,
                    "Public max supply for tier exceeded"
                );
            }

            require(
                _unpackedSupplyData.tier1CurrentSupply <=
                    _unpackedSupplyData.tier1MaxSupply &&
                    _unpackedSupplyData.tier2CurrentSupply <=
                    _unpackedSupplyData.tier2MaxSupply &&
                    _unpackedSupplyData.tier3CurrentSupply <=
                    _unpackedSupplyData.tier3MaxSupply,
                "Max supply for tier exceeded"
            );

            _packedTieredSupplyTypes = _packAllSupplyTypes(
                _packSupplyTypeData(
                    _unpackedSupplyData.tier1MaxSupply,
                    _unpackedSupplyData.tier2MaxSupply,
                    _unpackedSupplyData.tier3MaxSupply
                ),
                _packSupplyTypeData(
                    _unpackedSupplyData.tier1MaxPublicSupply,
                    _unpackedSupplyData.tier2MaxPublicSupply,
                    _unpackedSupplyData.tier3MaxPublicSupply
                ),
                _packSupplyTypeData(
                    _unpackedSupplyData.tier1CurrentSupply,
                    _unpackedSupplyData.tier2CurrentSupply,
                    _unpackedSupplyData.tier3CurrentSupply
                )
            );
        }
    }

    /// @notice Returns the max supply for each tier.
    function maxTiersSupply()
        external
        view
        returns (SupplyType memory)
    {
        UnpackedSupplyData memory _packedSupplyByTiers = _getAllSupplyData();
        return
            SupplyType(
                _packedSupplyByTiers.tier1MaxSupply,
                _packedSupplyByTiers.tier2MaxSupply,
                _packedSupplyByTiers.tier3MaxSupply
            );
    }

    /// @notice Returns the max supply for the public mint phase.
    function maxTiersSupplyForPublicPhase()
        external
        view
        returns (SupplyType memory)
    {
        UnpackedSupplyData memory _packedSupplyByTiers = _getAllSupplyData();
        return
            SupplyType(
                _packedSupplyByTiers.tier1MaxPublicSupply,
                _packedSupplyByTiers.tier2MaxPublicSupply,
                _packedSupplyByTiers.tier3MaxPublicSupply
            );
    }

    /// @notice Returns the current supply in each tier.
    function tiersCurrentSupply() external view returns (SupplyType memory) {
        UnpackedSupplyData memory _packedSupplyByTiers = _getAllSupplyData();
        return
            SupplyType(
                _packedSupplyByTiers.tier1CurrentSupply,
                _packedSupplyByTiers.tier2CurrentSupply,
                _packedSupplyByTiers.tier3CurrentSupply
            );
    }

    /// @notice Returns the Token URI with Metadata for specified Token Id.
    /// @param _tokenId The Token Id to query.
    /// @return The URI string of the specified Token Id.
    function tokenURI(
        uint256 _tokenId
    ) public view override(ERC721A, IERC721A) returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return _hiddenMetadataUri;
        }

        string memory _currentBaseURI = _baseURI();
        return
            bytes(_currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        _currentBaseURI,
                        _toString(_tokenId),
                        _uriSuffix
                    )
                )
                : "";
    }

    /// @notice Returns the Base URI without the suffix for specified Token Id.
    /// @return The URI string of the specified Token Id.
    function _baseURI() internal view override returns (string memory) {
        return _uri;
    }

    /// @notice Update the revealed state of the contract.
    /// @dev This function can only be called by the contract owner.
    /// @param _state The new desired revealed state. If `true`, it means the metadata
    /// for the tokens have been revealed and should be visible.
    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;

        emit BatchMetadataUpdate(0, type(uint256).max);
    }

    /// @notice Check if an address is approved to operate on behalf of the owner.
    /// @param _owner The owner's address.
    /// @param operator The operator's address to check.
    /// @return Whether the operator is approved.
    function isApprovedForAll(
        address _owner,
        address operator
    ) public view override(ERC721A, IERC721A) returns (bool) {
        // If operator is in pre-approved list, return true
        if (approvedOperators[operator]) return true;

        return super.isApprovedForAll(_owner, operator);
    }

    /// @notice Set the maximum number of agents that can be minted per tier during the public phase.
    /// @param _tier1Supply The new max supply for tier 1.
    /// @param _tier2Supply The new max supply for tier 2.
    /// @param _tier3Supply The new max supply for tier 3.
    function setMaxTiersSupplyForPublicPhase(
        uint24 _tier1Supply,
        uint24 _tier2Supply,
        uint24 _tier3Supply
    ) public onlyOwner {
        UnpackedSupplyData memory _tiersSupply = _getAllSupplyData();

        require(
            _tier1Supply <= _tiersSupply.tier1MaxSupply &&
                _tier2Supply <= _tiersSupply.tier2MaxSupply &&
                _tier3Supply <= _tiersSupply.tier3MaxSupply,
            "Public max supply cannot be greater than the global max supply"
        );

        _packedTieredSupplyTypes = _packAllSupplyTypes(
            _packSupplyTypeData(
                _tiersSupply.tier1MaxSupply,
                _tiersSupply.tier2MaxSupply,
                _tiersSupply.tier3MaxSupply
            ),
            _packSupplyTypeData(_tier1Supply, _tier2Supply, _tier3Supply),
            _packSupplyTypeData(
                _tiersSupply.tier1CurrentSupply,
                _tiersSupply.tier2CurrentSupply,
                _tiersSupply.tier3CurrentSupply
            )
        );
    }

    /// @notice Set the maximum number of agents that can be minted per address during the public phase.
    /// @param _maxAgentsMintedPerAddress The new maximum number of agents.
    function setMaxAgentsMintedPerAddress(
        uint256 _maxAgentsMintedPerAddress
    ) public onlyOwner {
        maxAgentsMintedPerAddress = _maxAgentsMintedPerAddress;
    }

    /// @notice Returns the amount of NFTs minted by an address during the public phase.
    /// @param _address The address to check.
    function agentsMintedPerAddress(
        address _address
    ) public view returns (uint256) {
        return _agentsMintedPerAddress[_mintTrackerActiveIndex][_address];
    }

    /// @notice Reset the mapping of agentsMintedPerAddress
    function resetAgentsMintedPerAddress() external onlyOwner {
        unchecked {
            ++_mintTrackerActiveIndex;
        }
    }

    /// @notice Set the maximum number of agents that can be minted per address during the WL phase.
    /// @param _maxAgentsMintedPerAddressForWL The new maximum number of agents.
    function setMaxAgentsMintedPerAddressForWL(
        uint256 _maxAgentsMintedPerAddressForWL
    ) public onlyOwner {
        maxAgentsMintedPerAddressForWL = _maxAgentsMintedPerAddressForWL;
    }

    /// @notice Set the hidden metadata URI.
    /// @param _newHiddenMetadataUri The new hidden metadata URI.
    function setHiddenMetadataUri(
        string calldata _newHiddenMetadataUri
    ) public onlyOwner {
        _hiddenMetadataUri = _newHiddenMetadataUri;
    }

    /// @notice Set the base URI for token metadata.
    /// @param _newUri The new base URI.
    function setUri(string calldata _newUri) public onlyOwner {
        _uri = _newUri;
    }

    /// @notice Set the URI suffix for token metadata.
    /// @param _newUriSuffix The new URI suffix.
    function setUriSuffix(string calldata _newUriSuffix) public onlyOwner {
        _uriSuffix = _newUriSuffix;
    }

    /// @notice Pause or unpause the contract.
    /// @param _state The new pause state.
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    /// @notice Set the presale state of the contract.
    /// @param _bool The new presale state.
    function setPresale(bool _bool) public onlyOwner {
        presale = _bool;
    }

    /// @notice Set the Merkle root for the whitelist phase.
    /// @param _newMerkleRoot The new Merkle root.
    function setWhitelistMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner {
        whitelistMerkleRoot = _newMerkleRoot;
    }

    /// @notice Set the Merkle root for the public phase.
    /// @param _newMerkleRoot The new Merkle root.
    function setPublicMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner {
        publicMerkleRoot = _newMerkleRoot;
    }

    /// @notice Set a new price for each tier.
    /// @param _tier1Price New price for tier1.
    /// @param _tier2Price New price for tier2.
    /// @param _tier3Price New price for tier3.
    function setPrices(
        uint64 _tier1Price,
        uint64 _tier2Price,
        uint64 _tier3Price
    ) public onlyOwner {
        tiersCost = PriceByTier(_tier1Price, _tier2Price, _tier3Price);
    }

    /// @notice Withdraws the ETH from the contract to the owner.
    function withdraw() public onlyOwner {
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success);
    }

    /// @notice Add an address to the list of approved operators.
    /// @param _address The address to add.
    function addApprovedOperator(address _address) external onlyOwner {
        approvedOperators[_address] = true;
    }

    /// @notice Remove an address from the list of approved operators.
    /// @param _address The address to remove.
    function removeApprovedOperator(address _address) external onlyOwner {
        approvedOperators[_address] = false;
    }

    /// @dev See {IERC165-supportsInterface}.
    function supportsInterface(
        bytes4 interfaceId
    ) public view override(ERC721A, IERC721A, ERC2981) returns (bool) {
        return
            interfaceId == type(ICreatorToken).interfaceId ||
            interfaceId == type(IERC2981).interfaceId ||
            ERC721A.supportsInterface(interfaceId);
    }

    /// @dev Set the royalty receiver and fee
    function setDefaultRoyalty(
        address receiver,
        uint96 fee
    ) external onlyOwner {
        _setDefaultRoyalty(receiver, fee);
    }

    ////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //////////////////////////////////////// ERC721C specific functions ////////////////////////////////////////
    ////////////////////////////////////////////////////////////////////////////////////////////////////////////

    /// @dev Ties the erc721a _beforeTokenTransfers hook to more granular transfer validation logic
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        unchecked {
            for (uint256 i = 0; i < quantity; ++i) {
                _validateBeforeTransfer(from, to, startTokenId + i);
            }
        }
    }

    /// @dev Ties the erc721a _afterTokenTransfer hook to more granular transfer validation logic
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal override {
        unchecked {
            for (uint256 i = 0; i < quantity; ++i) {
                _validateAfterTransfer(from, to, startTokenId + i);
            }
        }
    }
}

File 20 of 23 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

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

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

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

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

File 21 of 23 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 22 of 23 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 23 of 23 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

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

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` 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 payable;

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"components":[{"internalType":"uint64","name":"tier1","type":"uint64"},{"internalType":"uint64","name":"tier2","type":"uint64"},{"internalType":"uint64","name":"tier3","type":"uint64"}],"internalType":"struct SWAgents.PriceByTier","name":"_tiersCost","type":"tuple"},{"components":[{"internalType":"uint24","name":"tier1","type":"uint24"},{"internalType":"uint24","name":"tier2","type":"uint24"},{"internalType":"uint24","name":"tier3","type":"uint24"}],"internalType":"struct SWAgents.SupplyType","name":"_tiersMaxSupply","type":"tuple"},{"components":[{"internalType":"uint24","name":"tier1","type":"uint24"},{"internalType":"uint24","name":"tier2","type":"uint24"},{"internalType":"uint24","name":"tier3","type":"uint24"}],"internalType":"struct SWAgents.SupplyType","name":"_maxTiersSupplyForPublicPhase","type":"tuple"},{"internalType":"uint256","name":"_maxAgentsMintedPerAddress","type":"uint256"},{"internalType":"uint256","name":"_maxAgentsMintedPerAddressForWL","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CreatorTokenBase__InvalidTransferValidatorContract","type":"error"},{"inputs":[],"name":"CreatorTokenBase__SetTransferValidatorFirst","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ShouldNotMintToBurnAddress","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":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldValidator","type":"address"},{"indexed":false,"internalType":"address","name":"newValidator","type":"address"}],"name":"TransferValidatorUpdated","type":"event"},{"inputs":[],"name":"DEFAULT_OPERATOR_WHITELIST_ID","outputs":[{"internalType":"uint120","name":"","type":"uint120"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_TRANSFER_SECURITY_LEVEL","outputs":[{"internalType":"enum TransferSecurityLevels","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_TRANSFER_VALIDATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addApprovedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"agentsMintedPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"agentsMintedPerAddressForWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedOperators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPermittedContractReceivers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSecurityPolicy","outputs":[{"components":[{"internalType":"enum TransferSecurityLevels","name":"transferSecurityLevel","type":"uint8"},{"internalType":"uint120","name":"operatorWhitelistId","type":"uint120"},{"internalType":"uint120","name":"permittedContractReceiversId","type":"uint120"}],"internalType":"struct CollectionSecurityPolicy","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransferValidator","outputs":[{"internalType":"contract ICreatorTokenTransferValidator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedOperators","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":[{"internalType":"address","name":"receiver","type":"address"}],"name":"isContractReceiverPermitted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"isOperatorWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"isTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAgentsMintedPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAgentsMintedPerAddressForWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTiersSupply","outputs":[{"components":[{"internalType":"uint24","name":"tier1","type":"uint24"},{"internalType":"uint24","name":"tier2","type":"uint24"},{"internalType":"uint24","name":"tier3","type":"uint24"}],"internalType":"struct SWAgents.SupplyType","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTiersSupplyForPublicPhase","outputs":[{"components":[{"internalType":"uint24","name":"tier1","type":"uint24"},{"internalType":"uint24","name":"tier2","type":"uint24"},{"internalType":"uint24","name":"tier3","type":"uint24"}],"internalType":"struct SWAgents.SupplyType","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amountForTier1","type":"uint16"},{"internalType":"uint16","name":"_amountForTier2","type":"uint16"},{"internalType":"uint16","name":"_amountForTier3","type":"uint16"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amountForTier1","type":"uint16"},{"internalType":"uint16","name":"_amountForTier2","type":"uint16"},{"internalType":"uint16","name":"_amountForTier3","type":"uint16"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeApprovedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetAgentsMintedPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"fee","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newHiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAgentsMintedPerAddress","type":"uint256"}],"name":"setMaxAgentsMintedPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAgentsMintedPerAddressForWL","type":"uint256"}],"name":"setMaxAgentsMintedPerAddressForWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"_tier1Supply","type":"uint24"},{"internalType":"uint24","name":"_tier2Supply","type":"uint24"},{"internalType":"uint24","name":"_tier3Supply","type":"uint24"}],"name":"setMaxTiersSupplyForPublicPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_tier1Price","type":"uint64"},{"internalType":"uint64","name":"_tier2Price","type":"uint64"},{"internalType":"uint64","name":"_tier3Price","type":"uint64"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setPublicMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TransferSecurityLevels","name":"level","type":"uint8"},{"internalType":"uint120","name":"operatorWhitelistId","type":"uint120"},{"internalType":"uint120","name":"permittedContractReceiversAllowlistId","type":"uint120"}],"name":"setToCustomSecurityPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"validator","type":"address"},{"internalType":"enum TransferSecurityLevels","name":"level","type":"uint8"},{"internalType":"uint120","name":"operatorWhitelistId","type":"uint120"},{"internalType":"uint120","name":"permittedContractReceiversAllowlistId","type":"uint120"}],"name":"setToCustomValidatorAndSecurityPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setToDefaultSecurityPolicy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[],"name":"tiersCost","outputs":[{"internalType":"uint64","name":"tier1","type":"uint64"},{"internalType":"uint64","name":"tier2","type":"uint64"},{"internalType":"uint64","name":"tier3","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tiersCurrentSupply","outputs":[{"components":[{"internalType":"uint24","name":"tier1","type":"uint24"},{"internalType":"uint24","name":"tier2","type":"uint24"},{"internalType":"uint24","name":"tier3","type":"uint24"}],"internalType":"struct SWAgents.SupplyType","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amountForTier1","type":"uint16"},{"internalType":"uint16","name":"_amountForTier2","type":"uint16"},{"internalType":"uint16","name":"_amountForTier3","type":"uint16"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600d90620000269082620003da565b506010805462ffffff60d81b1916600160d81b1790553480156200004957600080fd5b5060405162005035380380620050358339810160408190526200006c916200061a565b86866200007933620001de565b6003620000878382620003da565b506004620000968282620003da565b50600060015550508451600f80546020808901516040808b01516001600160401b03908116600160801b02600160801b600160c01b031993821668010000000000000000026001600160801b031990961691909716179390931716939093179091556013849055855191860151908601516200019e926200013f92909168ffffff000000000000603084901b1665ffffff000000601884901b161762ffffff8216179392505050565b84516020860151604087015168ffffff00000000000060309390931b9290921665ffffff00000060189290921b919091161762ffffff9091161760481b600160481b600160901b031660909190911b600160901b600160d81b03161790565b601080546001600160d81b0319166001600160d81b03929092169190911790556014819055620001d1336101f46200022e565b505050505050506200071c565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6127106001600160601b0382161115620002a25760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002fa5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000299565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200035e57607f821691505b6020821081036200037f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003d5576000816000526020600020601f850160051c81016020861015620003b05750805b601f850160051c820191505b81811015620003d157828155600101620003bc565b5050505b505050565b81516001600160401b03811115620003f657620003f662000333565b6200040e8162000407845462000349565b8462000385565b602080601f8311600181146200044657600084156200042d5750858301515b600019600386901b1c1916600185901b178555620003d1565b600085815260208120601f198616915b82811015620004775788860151825594840194600190910190840162000456565b5085821015620004965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b604051606081016001600160401b0381118282101715620004cb57620004cb62000333565b60405290565b604051601f8201601f191681016001600160401b0381118282101715620004fc57620004fc62000333565b604052919050565b600082601f8301126200051657600080fd5b81516001600160401b0381111562000532576200053262000333565b602062000548601f8301601f19168201620004d1565b82815285828487010111156200055d57600080fd5b60005b838110156200057d57858101830151828201840152820162000560565b506000928101909101919091529392505050565b80516001600160401b0381168114620005a957600080fd5b919050565b805162ffffff81168114620005a957600080fd5b600060608284031215620005d557600080fd5b620005df620004a6565b9050620005ec82620005ae565b8152620005fc60208301620005ae565b60208201526200060f60408301620005ae565b604082015292915050565b60008060008060008060008789036101a08112156200063857600080fd5b88516001600160401b03808211156200065057600080fd5b6200065e8c838d0162000504565b995060208b01519150808211156200067557600080fd5b50620006848b828c0162000504565b9750506060603f19820112156200069a57600080fd5b50620006a5620004a6565b620006b360408a0162000591565b8152620006c360608a0162000591565b6020820152620006d660808a0162000591565b60408201529450620006ec8960a08a01620005c2565b9350620006fe896101008a01620005c2565b92506101608801519150610180880151905092959891949750929550565b614909806200072c6000396000f3fe6080604052600436106104655760003560e01c80636c3b869911610243578063b88d4fde11610143578063d20f67f7116100bb578063f2fde38b1161008a578063fd762d921161006f578063fd762d9214610d2b578063fdea8e0b14610d4b578063ff721aba14610d6c57600080fd5b8063f2fde38b14610cf6578063f7eeb9e814610d1657600080fd5b8063d20f67f714610c80578063df69975914610ca0578063e0a8085314610cb6578063e985e9c514610cd657600080fd5b8063c23dc68f11610112578063c87b56dd116100f7578063c87b56dd14610c36578063d007af5c14610c56578063d18db8e714610c6b57600080fd5b8063c23dc68f14610be9578063c54e73e314610c1657600080fd5b8063b88d4fde14610b74578063bd32fb6614610b87578063be537f4314610ba7578063bff7094f14610bc957600080fd5b806395d89b41116101d65780639d645a44116101a5578063a22cb4651161018a578063a22cb46514610b1e578063a9fc664e14610b3e578063aa98e0c614610b5e57600080fd5b80639d645a4414610ade5780639f373bd414610afe57600080fd5b806395d89b4114610a7357806399a2557a14610a885780639b642de114610aa85780639d1d9aa614610ac857600080fd5b80638462151c116102125780638462151c146109f35780638857f2ad14610a205780638da5cb5b14610a35578063914f92ca14610a5357600080fd5b80636c3b86991461098957806370a082311461099e578063715018a6146109be578063720df494146109d357600080fd5b80632cdc5d291161036957806351830227116102e15780635dd60fce116102b057806361f283c61161029557806361f283c6146108ef5780636352211e1461095657806369af1eed1461097657600080fd5b80635dd60fce146108af57806361347162146108cf57600080fd5b806351830227146108135780635bbb2177146108345780635c975abb146108615780635d4c1d461461088257600080fd5b806342842e0e1161033857806347917a4b1161031d57806347917a4b146107bb578063495c8bf9146107d15780634fdd43cb146107f357600080fd5b806342842e0e1461076157806345fc63f11461077457600080fd5b80632cdc5d29146106df5780632e8da829146106ff57806331b31f361461071f5780633ccfd60b1461074c57600080fd5b8063098144d4116103fc57806318160ddd116103cb5780631c33b328116103b05780631c33b3281461066b57806323b872dd1461068d5780632a55205a146106a057600080fd5b806318160ddd146106285780631b25b0771461064b57600080fd5b8063098144d4146105b75780630d774054146105d557806316ba10e0146105e857806316c38b3c1461060857600080fd5b806304634d8d1161043857806304634d8d1461054257806306fdde0314610562578063081812fc14610584578063095ea7b3146105a457600080fd5b8063014635461461046a5780630146bcc5146104ad57806301ffc9a7146104cf57806303c408bb146104ff575b600080fd5b34801561047657600080fd5b5061049071721c310194ccfc01e523fc93c9cccfa2a0ac81565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156104b957600080fd5b506104cd6104c8366004613ba9565b610d9c565b005b3480156104db57600080fd5b506104ef6104ea366004613bdc565b610dc8565b60405190151581526020016104a4565b34801561050b57600080fd5b50610514610e40565b60408051825162ffffff908116825260208085015182169083015292820151909216908201526060016104a4565b34801561054e57600080fd5b506104cd61055d366004613bf9565b610ea3565b34801561056e57600080fd5b50610577610eb9565b6040516104a49190613c93565b34801561059057600080fd5b5061049061059f366004613ca6565b610f4b565b6104cd6105b2366004613cbf565b610fa8565b3480156105c357600080fd5b506009546001600160a01b0316610490565b6104cd6105e3366004613d47565b61106e565b3480156105f457600080fd5b506104cd610603366004613dcf565b6112ae565b34801561061457600080fd5b506104cd610623366004613e4f565b6112c8565b34801561063457600080fd5b50600254600154035b6040519081526020016104a4565b34801561065757600080fd5b506104ef610666366004613e6c565b611309565b34801561067757600080fd5b50610680600181565b6040516104a49190613ed9565b6104cd61069b366004613ee7565b6113a2565b3480156106ac57600080fd5b506106c06106bb366004613f28565b6115a0565b604080516001600160a01b0390931683526020830191909152016104a4565b3480156106eb57600080fd5b506104cd6106fa366004613ca6565b61165d565b34801561070b57600080fd5b506104ef61071a366004613ba9565b61166a565b34801561072b57600080fd5b5061063d61073a366004613ba9565b60176020526000908152604090205481565b34801561075857600080fd5b506104cd611776565b6104cd61076f366004613ee7565b6117e1565b34801561078057600080fd5b5061063d61078f366004613ba9565b60155460ff1660009081526016602090815260408083206001600160a01b039094168352929052205490565b3480156107c757600080fd5b5061063d60145481565b3480156107dd57600080fd5b506107e66117fc565b6040516104a49190613f4a565b3480156107ff57600080fd5b506104cd61080e366004613dcf565b61190d565b34801561081f57600080fd5b506010546104ef90600160e81b900460ff1681565b34801561084057600080fd5b5061085461084f366004613f8b565b611922565b6040516104a49190613fcd565b34801561086d57600080fd5b506010546104ef90600160d81b900460ff1681565b34801561088e57600080fd5b50610897600181565b6040516001600160781b0390911681526020016104a4565b3480156108bb57600080fd5b506104cd6108ca36600461405d565b6119ee565b3480156108db57600080fd5b506104cd6108ea3660046140c2565b611bf3565b3480156108fb57600080fd5b50600f5461092b9067ffffffffffffffff80821691680100000000000000008104821691600160801b9091041683565b6040805167ffffffffffffffff948516815292841660208401529216918101919091526060016104a4565b34801561096257600080fd5b50610490610971366004613ca6565b611d7e565b6104cd610984366004613d47565b611d89565b34801561099557600080fd5b506104cd611fe6565b3480156109aa57600080fd5b5061063d6109b9366004613ba9565b6120de565b3480156109ca57600080fd5b506104cd612146565b3480156109df57600080fd5b506104cd6109ee366004613ba9565b61215a565b3480156109ff57600080fd5b50610a13610a0e366004613ba9565b612183565b6040516104a49190614102565b348015610a2c57600080fd5b50610514612284565b348015610a4157600080fd5b506000546001600160a01b0316610490565b348015610a5f57600080fd5b506104cd610a6e366004614152565b6122e8565b348015610a7f57600080fd5b50610577612385565b348015610a9457600080fd5b50610a13610aa336600461418c565b612394565b348015610ab457600080fd5b506104cd610ac3366004613dcf565b612525565b348015610ad457600080fd5b5061063d60125481565b348015610aea57600080fd5b506104ef610af9366004613ba9565b61253a565b348015610b0a57600080fd5b506104cd610b19366004613ca6565b612602565b348015610b2a57600080fd5b506104cd610b393660046141c1565b61260f565b348015610b4a57600080fd5b506104cd610b59366004613ba9565b61267b565b348015610b6a57600080fd5b5061063d60115481565b6104cd610b82366004614236565b6127c2565b348015610b9357600080fd5b506104cd610ba2366004613ca6565b612806565b348015610bb357600080fd5b50610bbc612813565b6040516104a491906142fa565b348015610bd557600080fd5b506104cd610be4366004613ca6565b6128ce565b348015610bf557600080fd5b50610c09610c04366004613ca6565b6128db565b6040516104a49190614336565b348015610c2257600080fd5b506104cd610c31366004613e4f565b612953565b348015610c4257600080fd5b50610577610c51366004613ca6565b612994565b348015610c6257600080fd5b506107e6612b17565b348015610c7757600080fd5b506104cd612bd0565b348015610c8c57600080fd5b506104cd610c9b36600461437b565b612bf0565b348015610cac57600080fd5b5061063d60135481565b348015610cc257600080fd5b506104cd610cd1366004613e4f565b612c27565b348015610ce257600080fd5b506104ef610cf13660046143d1565b612c9f565b348015610d0257600080fd5b506104cd610d11366004613ba9565b612cf6565b348015610d2257600080fd5b50610514612d83565b348015610d3757600080fd5b506104cd610d463660046143ff565b612dda565b348015610d5757600080fd5b506010546104ef90600160e01b900460ff1681565b348015610d7857600080fd5b506104ef610d87366004613ba9565b60186020526000908152604090205460ff1681565b610da4612eee565b6001600160a01b03166000908152601860205260409020805460ff19166001179055565b60006001600160e01b031982167f86455d28000000000000000000000000000000000000000000000000000000001480610e2b57506001600160e01b031982167f2a55205a00000000000000000000000000000000000000000000000000000000145b80610e3a5750610e3a82612f48565b92915050565b6040805160608101825260008082526020820181905291810182905290610e65612fc8565b90506040518060600160405280826060015162ffffff168152602001826080015162ffffff1681526020018260a0015162ffffff1681525091505090565b610eab612eee565b610eb58282613090565b5050565b606060038054610ec890614450565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef490614450565b8015610f415780601f10610f1657610100808354040283529160200191610f41565b820191906000526020600020905b815481529060010190602001808311610f2457829003601f168201915b5050505050905090565b6000610f56826131aa565b610f8c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610fb382611d7e565b9050336001600160a01b0382161461100557610fcf8133612c9f565b611005576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601054600160e01b900460ff166110cc5760405162461bcd60e51b815260206004820152601660248201527f50726573616c65206973206e6f74206163746976652e0000000000000000000060448201526064015b60405180910390fd5b6110d78686866131d2565b34146111255760405162461bcd60e51b815260206004820152601060248201527f496e636f72726563742066756e6473210000000000000000000000000000000060448201526064016110c3565b60008461113287896144a0565b61113c91906144a0565b6014543360009081526017602052604090205461ffff929092169250906111649083906144c2565b11156111b25760405162461bcd60e51b815260206004820152601f60248201527f4d6178206d696e7473207065722061646472657373206578636565646564210060448201526064016110c3565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061122c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601154915084905061326d565b6112685760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016110c3565b6112758888886000613283565b33600090815260176020526040812080548492906112949084906144c2565b909155506112a4905085836134e4565b5050505050505050565b6112b6612eee565b600d6112c382848361451d565b505050565b6112d0612eee565b60108054911515600160d81b027fffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6009546000906001600160a01b0316156113975760095460405163050bf71960e31b81526001600160a01b038681166004830152858116602483015284811660448301529091169063285fb8c89060640160006040518083038186803b15801561137257600080fd5b505afa925050508015611383575060015b61138f5750600061139b565b50600161139b565b5060015b9392505050565b60006113ad826134fe565b9050836001600160a01b0316816001600160a01b0316146113fa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176114605761142a8633612c9f565b611460576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166114a0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ad868686600161357e565b80156114b857600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b8416900361154a576001840160008181526005602052604081205490036115485760015481146115485760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461159886868660016135a5565b505050505050565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff1692820192909252829161161f575060408051808201909152600a546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090611643906bffffffffffffffffffffffff16876145dd565b61164d91906145f4565b91519350909150505b9250929050565b611665612eee565b601455565b6009546000906001600160a01b03161561176e57600954604051635caaa2a960e11b81523060048201526001600160a01b039091169063d72dde5e90829063b955455290602401606060405180830381865afa1580156116ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f29190614616565b602001516040516001600160e01b031960e084901b1681526001600160781b0390911660048201526001600160a01b03851660248201526044015b602060405180830381865afa15801561174a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190614688565b506000919050565b61177e612eee565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146117cb576040519150601f19603f3d011682016040523d82523d6000602084013e6117d0565b606091505b50509050806117de57600080fd5b50565b6112c3838383604051806020016040528060008152506127c2565b6009546060906001600160a01b0316156118fa57600954604051635caaa2a960e11b81523060048201526001600160a01b0390911690633fe5df9990829063b955455290602401606060405180830381865afa158015611860573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118849190614616565b602001516040516001600160e01b031960e084901b1681526001600160781b0390911660048201526024015b600060405180830381865afa1580156118cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118f591908101906146a5565b905090565b5060408051600081526020810190915290565b611915612eee565b600e6112c382848361451d565b60608160008167ffffffffffffffff811115611940576119406141ef565b60405190808252806020026020018201604052801561199257816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161195e5790505b50905060005b8281146119e5576119c08686838181106119b4576119b4614757565b905060200201356128db565b8282815181106119d2576119d2614757565b6020908102919091010152600101611998565b50949350505050565b6119f6612eee565b6000611a00612fc8565b9050806000015162ffffff168462ffffff1611158015611a2e5750806020015162ffffff168362ffffff1611155b8015611a485750806040015162ffffff168262ffffff1611155b611aba5760405162461bcd60e51b815260206004820152603e60248201527f5075626c6963206d617820737570706c792063616e6e6f74206265206772656160448201527f746572207468616e2074686520676c6f62616c206d617820737570706c79000060648201526084016110c3565b805160208201516040830151611ba19262ffffff90911660189290921b65ffffff0000001660309190911b68ffffff00000000000016171762ffffff8416601886901b65ffffff00000016603088901b68ffffff0000000000001617175b60c084015160e085015161010086015162ffffff1660189190911b65ffffff0000001660309290921b68ffffff0000000000001691909117177affffffffffffffffff000000000000000000000000000000000000609084901b1671ffffffffffffffffff000000000000000000604884901b161768ffffffffffffffffff8216179392505050565b601080547fffffffffff000000000000000000000000000000000000000000000000000000167affffffffffffffffffffffffffffffffffffffffffffffffffffff9290921691909117905550505050565b611bfb6135c5565b6000611c0f6009546001600160a01b031690565b90506001600160a01b038116611c51576040517f39ffc7ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604051630368065360e61b81526001600160a01b0382169063da0194c090611c7f903090889060040161476d565b600060405180830381600087803b158015611c9957600080fd5b505af1158015611cad573d6000803e3d6000fd5b5050604051631182550160e11b81523060048201526001600160781b03861660248201526001600160a01b0384169250632304aa029150604401600060405180830381600087803b158015611d0157600080fd5b505af1158015611d15573d6000803e3d6000fd5b505060405163235d10c560e21b81523060048201526001600160781b03851660248201526001600160a01b0384169250638d74431491506044015b600060405180830381600087803b158015611d6a57600080fd5b505af11580156112a4573d6000803e3d6000fd5b6000610e3a826134fe565b601054600160d81b900460ff1615611de35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016110c3565b611dee8686866131d2565b3414611e3c5760405162461bcd60e51b815260206004820152601060248201527f496e636f72726563742066756e6473210000000000000000000000000000000060448201526064016110c3565b600084611e4987896144a0565b611e5391906144a0565b60155460135460ff909116600081815260166020908152604080832033845290915290205461ffff93909316935091611e8d9084906144c2565b1115611edb5760405162461bcd60e51b815260206004820152601f60248201527f4d6178206d696e7473207065722061646472657373206578636565646564210060448201526064016110c3565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611f5585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601254915084905061326d565b611f915760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016110c3565b611f9e8989896001613283565b60ff8216600090815260166020908152604080832033845290915281208054859290611fcb9084906144c2565b90915550611fdb905086846134e4565b505050505050505050565b611fee6135c5565b61200971721c310194ccfc01e523fc93c9cccfa2a0ac61267b565b604051630368065360e61b815271721c310194ccfc01e523fc93c9cccfa2a0ac9063da0194c09061204190309060019060040161476d565b600060405180830381600087803b15801561205b57600080fd5b505af115801561206f573d6000803e3d6000fd5b5050604051631182550160e11b81523060048201526001602482015271721c310194ccfc01e523fc93c9cccfa2a0ac9250632304aa029150604401600060405180830381600087803b1580156120c457600080fd5b505af11580156120d8573d6000803e3d6000fd5b50505050565b60006001600160a01b038216612120576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b61214e612eee565b61215860006135cd565b565b612162612eee565b6001600160a01b03166000908152601860205260409020805460ff19169055565b60606000806000612193856120de565b905060008167ffffffffffffffff8111156121b0576121b06141ef565b6040519080825280602002602001820160405280156121d9578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081018290529192505b838614612278576122118161362a565b915081604001516122705781516001600160a01b03161561223157815194505b876001600160a01b0316856001600160a01b031603612270578083878060010198508151811061226357612263614757565b6020026020010181815250505b600101612201565b50909695505050505050565b60408051606081018252600080825260208201819052918101829052906122a9612fc8565b905060405180606001604052808260c0015162ffffff1681526020018260e0015162ffffff16815260200182610100015162ffffff1681525091505090565b6122f0612eee565b6040805160608101825267ffffffffffffffff94851680825293851660208201819052929094169301839052600f80547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690921768010000000000000000909102177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b909202919091179055565b606060048054610ec890614450565b60608183106123cf576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806123db60015490565b9050808411156123e9578093505b60006123f4876120de565b905084861015612413578585038181101561240d578091505b50612417565b5060005b60008167ffffffffffffffff811115612432576124326141ef565b60405190808252806020026020018201604052801561245b578160200160208202803683370190505b5090508160000361247157935061139b92505050565b600061247c886128db565b90506000816040015161248d575080515b885b88811415801561249f5750848714155b15612514576124ad8161362a565b9250826040015161250c5782516001600160a01b0316156124cd57825191505b8a6001600160a01b0316826001600160a01b03160361250c57808488806001019950815181106124ff576124ff614757565b6020026020010181815250505b60010161248f565b505050928352509095945050505050565b61252d612eee565b600c6112c382848361451d565b6009546000906001600160a01b03161561176e57600954604051635caaa2a960e11b81523060048201526001600160a01b0390911690639445f53090829063b955455290602401606060405180830381865afa15801561259e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125c29190614616565b60409081015190516001600160e01b031960e084901b1681526001600160781b0390911660048201526001600160a01b038516602482015260440161172d565b61260a612eee565b601355565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6126836135c5565b60006001600160a01b0382163b156126fe576040516301ffc9a760e01b8152600060048201526001600160a01b038316906301ffc9a790602401602060405180830381865afa9250505080156126f6575060408051601f3d908101601f191682019092526126f391810190614688565b60015b156126fe5790505b6001600160a01b03821615801590612714575080155b1561274b576040517f32483afb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954604080516001600160a01b03928316815291841660208301527fcc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac910160405180910390a1506009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6127cd8484846113a2565b6001600160a01b0383163b156120d8576127e9848484846136a9565b6120d8576040516368d2bf6b60e11b815260040160405180910390fd5b61280e612eee565b601155565b60408051606081018252600080825260208201819052918101919091526009546001600160a01b0316156128ad57600954604051635caaa2a960e11b81523060048201526001600160a01b039091169063b955455290602401606060405180830381865afa158015612889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f59190614616565b50604080516060810182526000808252602082018190529181019190915290565b6128d6612eee565b601255565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600154831061292f5792915050565b6129388361362a565b905080604001511561294a5792915050565b61139b83613794565b61295b612eee565b60108054911515600160e01b027fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b606061299f826131aa565b612a115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016110c3565b601054600160e81b900460ff161515600003612ab957600e8054612a3490614450565b80601f0160208091040260200160405190810160405280929190818152602001828054612a6090614450565b8015612aad5780601f10612a8257610100808354040283529160200191612aad565b820191906000526020600020905b815481529060010190602001808311612a9057829003601f168201915b50505050509050919050565b6000612ac361380c565b90506000815111612ae3576040518060200160405280600081525061139b565b80612aed8461381b565b600d604051602001612b019392919061478a565b6040516020818303038152906040529392505050565b6009546060906001600160a01b0316156118fa57600954604051635caaa2a960e11b81523060048201526001600160a01b03909116906317e94a6c90829063b955455290602401606060405180830381865afa158015612b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9f9190614616565b60409081015190516001600160e01b031960e084901b1681526001600160781b0390911660048201526024016118b0565b612bd8612eee565b6015805460ff8082166001011660ff19909116179055565b612bf8612eee565b612c058484846001613283565b6120d88183612c1486886144a0565b612c1e91906144a0565b61ffff166134e4565b612c2f612eee565b601080547fffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b83151502179055604080516000815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6001600160a01b03811660009081526018602052604081205460ff1615612cc857506001610e3a565b6001600160a01b0380841660009081526008602090815260408083209386168352929052205460ff1661139b565b612cfe612eee565b6001600160a01b038116612d7a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016110c3565b6117de816135cd565b6040805160608101825260008082526020820181905291810182905290612da8612fc8565b60408051606081018252825162ffffff9081168252602080850151821690830152928201519092169082015292915050565b612de26135c5565b612deb8461267b565b604051630368065360e61b81526001600160a01b0385169063da0194c090612e19903090879060040161476d565b600060405180830381600087803b158015612e3357600080fd5b505af1158015612e47573d6000803e3d6000fd5b5050604051631182550160e11b81523060048201526001600160781b03851660248201526001600160a01b0387169250632304aa029150604401600060405180830381600087803b158015612e9b57600080fd5b505af1158015612eaf573d6000803e3d6000fd5b505060405163235d10c560e21b81523060048201526001600160781b03841660248201526001600160a01b0387169250638d7443149150604401611d50565b6000546001600160a01b031633146121585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110c3565b60006301ffc9a760e01b6001600160e01b031983161480612f9257507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610e3a5750506001600160e01b0319167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081019190915250601054604080516101208101825260c083811c62ffffff908116835260a885901c81166020840152609085901c811693830193909352607884901c831660608084019190915284901c83166080830152604884901c831660a0830152603084901c831690820152601883901c821660e0820152911661010082015290565b6127106bffffffffffffffffffffffff821611156131165760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c6550726963650000000000000000000000000000000000000000000060648201526084016110c3565b6001600160a01b03821661316c5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016110c3565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600a55565b600060015482108015610e3a575050600090815260056020526040902054600160e01b161590565b60408051606081018252600f5467ffffffffffffffff808216835268010000000000000000820481166020840152600160801b909104169181018290526000916132219061ffff85169061482d565b8461ffff168260200151613235919061482d565b82516132469061ffff89169061482d565b6132509190614859565b61325a9190614859565b67ffffffffffffffff1695945050505050565b60008261327a858461385f565b14949350505050565b600061328d612fc8565b60c08101805162ffffff61ffff898116909201811690925260e08301805188831601831690526101008301805191871690910190911690529050811561339257806060015162ffffff168160c0015162ffffff16111580156133015750806080015162ffffff168160e0015162ffffff1611155b801561332057508060a0015162ffffff1681610100015162ffffff1611155b6133925760405162461bcd60e51b815260206004820152602360248201527f5075626c6963206d617820737570706c7920666f72207469657220657863656560448201527f646564000000000000000000000000000000000000000000000000000000000060648201526084016110c3565b806000015162ffffff168160c0015162ffffff16111580156133c65750806020015162ffffff168160e0015162ffffff1611155b80156133e55750806040015162ffffff1681610100015162ffffff1611155b6134315760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c7920666f7220746965722065786365656465640000000060448201526064016110c3565b8051602082015160408301516060840151608085015160a08601516134919568ffffff000000000000603091821b811665ffffff000000601898891b81169190911762ffffff97881617979590921b169290931b90921617911617611b18565b601080547fffffffffff000000000000000000000000000000000000000000000000000000167affffffffffffffffffffffffffffffffffffffffffffffffffffff929092169190911790555050505050565b610eb58282604051806020016040528060008152506138a2565b60008160015481101561354c5760008181526005602052604081205490600160e01b8216900361354a575b8060000361139b575060001901600081815260056020526040902054613529565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8181101561359e576135968585838601613908565b600101613581565b5050505050565b60005b8181101561359e576135bd858583860161395e565b6001016135a8565b612158612eee565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260056020526040902054610e3a90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906136de90339089908890889060040161487a565b6020604051808303816000875af1925050508015613719575060408051601f3d908101601f19168201909252613716918101906148b6565b60015b613777573d808015613747576040519150601f19603f3d011682016040523d82523d6000602084013e61374c565b606091505b50805160000361376f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610e3a6137c4836134fe565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600c8054610ec890614450565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806138355750819003601f19909101908152919050565b600081815b845181101561389a576138908286838151811061388357613883614757565b60200260200101516139a5565b9150600101613864565b509392505050565b6138ac83836139d4565b6001600160a01b0383163b156112c3576001548281035b6138d660008683806001019450866136a9565b6138f3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106138c357816001541461359e57600080fd5b6001600160a01b0383811615908316158180156139225750805b1561394057604051635cbd944160e01b815260040160405180910390fd5b811561394c575b61359e565b806139475761359e3386868634613b1a565b6001600160a01b0383811615908316158180156139785750805b1561399657604051635cbd944160e01b815260040160405180910390fd5b8161394757806139475761359e565b60008183106139c157600082815260208490526040902061139b565b600083815260208390526040902061139b565b6001546000829003613a12576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a1f600084838561357e565b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114613ace57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613a96565b5081600003613b09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600155506112c360008483856135a5565b6009546001600160a01b03161561359e5760095460405163050bf71960e31b81526001600160a01b038781166004830152868116602483015285811660448301529091169063285fb8c89060640160006040518083038186803b158015613b8057600080fd5b505afa158015611fdb573d6000803e3d6000fd5b6001600160a01b03811681146117de57600080fd5b600060208284031215613bbb57600080fd5b813561139b81613b94565b6001600160e01b0319811681146117de57600080fd5b600060208284031215613bee57600080fd5b813561139b81613bc6565b60008060408385031215613c0c57600080fd5b8235613c1781613b94565b915060208301356bffffffffffffffffffffffff81168114613c3857600080fd5b809150509250929050565b60005b83811015613c5e578181015183820152602001613c46565b50506000910152565b60008151808452613c7f816020860160208601613c43565b601f01601f19169290920160200192915050565b60208152600061139b6020830184613c67565b600060208284031215613cb857600080fd5b5035919050565b60008060408385031215613cd257600080fd5b8235613cdd81613b94565b946020939093013593505050565b803561ffff81168114613cfd57600080fd5b919050565b60008083601f840112613d1457600080fd5b50813567ffffffffffffffff811115613d2c57600080fd5b6020830191508360208260051b850101111561165657600080fd5b60008060008060008060a08789031215613d6057600080fd5b613d6987613ceb565b9550613d7760208801613ceb565b9450613d8560408801613ceb565b93506060870135613d9581613b94565b9250608087013567ffffffffffffffff811115613db157600080fd5b613dbd89828a01613d02565b979a9699509497509295939492505050565b60008060208385031215613de257600080fd5b823567ffffffffffffffff80821115613dfa57600080fd5b818501915085601f830112613e0e57600080fd5b813581811115613e1d57600080fd5b866020828501011115613e2f57600080fd5b60209290920196919550909350505050565b80151581146117de57600080fd5b600060208284031215613e6157600080fd5b813561139b81613e41565b600080600060608486031215613e8157600080fd5b8335613e8c81613b94565b92506020840135613e9c81613b94565b91506040840135613eac81613b94565b809150509250925092565b60078110613ed557634e487b7160e01b600052602160045260246000fd5b9052565b60208101610e3a8284613eb7565b600080600060608486031215613efc57600080fd5b8335613f0781613b94565b92506020840135613f1781613b94565b929592945050506040919091013590565b60008060408385031215613f3b57600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156122785783516001600160a01b031683529284019291840191600101613f66565b60008060208385031215613f9e57600080fd5b823567ffffffffffffffff811115613fb557600080fd5b613fc185828601613d02565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015612278576140378385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101613fe9565b803562ffffff81168114613cfd57600080fd5b60008060006060848603121561407257600080fd5b61407b8461404a565b92506140896020850161404a565b91506140976040850161404a565b90509250925092565b600781106117de57600080fd5b6001600160781b03811681146117de57600080fd5b6000806000606084860312156140d757600080fd5b83356140e2816140a0565b925060208401356140f2816140ad565b91506040840135613eac816140ad565b6020808252825182820181905260009190848201906040850190845b818110156122785783518352928401929184019160010161411e565b803567ffffffffffffffff81168114613cfd57600080fd5b60008060006060848603121561416757600080fd5b6141708461413a565b925061417e6020850161413a565b91506140976040850161413a565b6000806000606084860312156141a157600080fd5b83356141ac81613b94565b95602085013595506040909401359392505050565b600080604083850312156141d457600080fd5b82356141df81613b94565b91506020830135613c3881613e41565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561422e5761422e6141ef565b604052919050565b6000806000806080858703121561424c57600080fd5b843561425781613b94565b935060208581013561426881613b94565b935060408601359250606086013567ffffffffffffffff8082111561428c57600080fd5b818801915088601f8301126142a057600080fd5b8135818111156142b2576142b26141ef565b6142c4601f8201601f19168501614205565b915080825289848285010111156142da57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600060608201905061430d828451613eb7565b60208301516001600160781b038082166020850152806040860151166040850152505092915050565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610e3a565b6000806000806080858703121561439157600080fd5b61439a85613ceb565b93506143a860208601613ceb565b92506143b660408601613ceb565b915060608501356143c681613b94565b939692955090935050565b600080604083850312156143e457600080fd5b82356143ef81613b94565b91506020830135613c3881613b94565b6000806000806080858703121561441557600080fd5b843561442081613b94565b93506020850135614430816140a0565b92506040850135614440816140ad565b915060608501356143c6816140ad565b600181811c9082168061446457607f821691505b60208210810361448457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156144bb576144bb61448a565b5092915050565b80820180821115610e3a57610e3a61448a565b601f8211156112c3576000816000526020600020601f850160051c810160208610156144fe5750805b601f850160051c820191505b818110156115985782815560010161450a565b67ffffffffffffffff831115614535576145356141ef565b614549836145438354614450565b836144d5565b6000601f84116001811461457d57600085156145655750838201355b600019600387901b1c1916600186901b17835561359e565b600083815260209020601f19861690835b828110156145ae578685013582556020948501946001909201910161458e565b50868210156145cb5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082028115828204841417610e3a57610e3a61448a565b60008261461157634e487b7160e01b600052601260045260246000fd5b500490565b60006060828403121561462857600080fd5b6040516060810181811067ffffffffffffffff8211171561464b5761464b6141ef565b6040528251614659816140a0565b81526020830151614669816140ad565b6020820152604083015161467c816140ad565b60408201529392505050565b60006020828403121561469a57600080fd5b815161139b81613e41565b600060208083850312156146b857600080fd5b825167ffffffffffffffff808211156146d057600080fd5b818501915085601f8301126146e457600080fd5b8151818111156146f6576146f66141ef565b8060051b9150614707848301614205565b818152918301840191848101908884111561472157600080fd5b938501935b8385101561474b578451925061473b83613b94565b8282529385019390850190614726565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03831681526040810161139b6020830184613eb7565b60008451602061479e828560208a01613c43565b8551918401916147b2818460208a01613c43565b85549201916000906147c381614450565b600182811680156147db57600181146147f05761481d565b60ff198416875282151583028701945061481d565b89600052602060002060005b84811015614815578154898201529083019087016147fc565b505082870194505b50929a9950505050505050505050565b67ffffffffffffffff8181168382160280821691908281146148515761485161448a565b505092915050565b67ffffffffffffffff8181168382160190808211156144bb576144bb61448a565b60006001600160a01b038087168352808616602084015250836040830152608060608301526148ac6080830184613c67565b9695505050505050565b6000602082840312156148c857600080fd5b815161139b81613bc656fea2646970667358221220e8fbff430cc3074ed665c1d625d94c469342b211db6bf478d552d420c378599164736f6c6343000816003300000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000000000853a0d2313c00000000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000d060000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000a6a0000000000000000000000000000000000000000000000000000000000000a6c0000000000000000000000000000000000000000000000000000000000000a6a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000011536861646f7720576172204167656e747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035357410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106104655760003560e01c80636c3b869911610243578063b88d4fde11610143578063d20f67f7116100bb578063f2fde38b1161008a578063fd762d921161006f578063fd762d9214610d2b578063fdea8e0b14610d4b578063ff721aba14610d6c57600080fd5b8063f2fde38b14610cf6578063f7eeb9e814610d1657600080fd5b8063d20f67f714610c80578063df69975914610ca0578063e0a8085314610cb6578063e985e9c514610cd657600080fd5b8063c23dc68f11610112578063c87b56dd116100f7578063c87b56dd14610c36578063d007af5c14610c56578063d18db8e714610c6b57600080fd5b8063c23dc68f14610be9578063c54e73e314610c1657600080fd5b8063b88d4fde14610b74578063bd32fb6614610b87578063be537f4314610ba7578063bff7094f14610bc957600080fd5b806395d89b41116101d65780639d645a44116101a5578063a22cb4651161018a578063a22cb46514610b1e578063a9fc664e14610b3e578063aa98e0c614610b5e57600080fd5b80639d645a4414610ade5780639f373bd414610afe57600080fd5b806395d89b4114610a7357806399a2557a14610a885780639b642de114610aa85780639d1d9aa614610ac857600080fd5b80638462151c116102125780638462151c146109f35780638857f2ad14610a205780638da5cb5b14610a35578063914f92ca14610a5357600080fd5b80636c3b86991461098957806370a082311461099e578063715018a6146109be578063720df494146109d357600080fd5b80632cdc5d291161036957806351830227116102e15780635dd60fce116102b057806361f283c61161029557806361f283c6146108ef5780636352211e1461095657806369af1eed1461097657600080fd5b80635dd60fce146108af57806361347162146108cf57600080fd5b806351830227146108135780635bbb2177146108345780635c975abb146108615780635d4c1d461461088257600080fd5b806342842e0e1161033857806347917a4b1161031d57806347917a4b146107bb578063495c8bf9146107d15780634fdd43cb146107f357600080fd5b806342842e0e1461076157806345fc63f11461077457600080fd5b80632cdc5d29146106df5780632e8da829146106ff57806331b31f361461071f5780633ccfd60b1461074c57600080fd5b8063098144d4116103fc57806318160ddd116103cb5780631c33b328116103b05780631c33b3281461066b57806323b872dd1461068d5780632a55205a146106a057600080fd5b806318160ddd146106285780631b25b0771461064b57600080fd5b8063098144d4146105b75780630d774054146105d557806316ba10e0146105e857806316c38b3c1461060857600080fd5b806304634d8d1161043857806304634d8d1461054257806306fdde0314610562578063081812fc14610584578063095ea7b3146105a457600080fd5b8063014635461461046a5780630146bcc5146104ad57806301ffc9a7146104cf57806303c408bb146104ff575b600080fd5b34801561047657600080fd5b5061049071721c310194ccfc01e523fc93c9cccfa2a0ac81565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156104b957600080fd5b506104cd6104c8366004613ba9565b610d9c565b005b3480156104db57600080fd5b506104ef6104ea366004613bdc565b610dc8565b60405190151581526020016104a4565b34801561050b57600080fd5b50610514610e40565b60408051825162ffffff908116825260208085015182169083015292820151909216908201526060016104a4565b34801561054e57600080fd5b506104cd61055d366004613bf9565b610ea3565b34801561056e57600080fd5b50610577610eb9565b6040516104a49190613c93565b34801561059057600080fd5b5061049061059f366004613ca6565b610f4b565b6104cd6105b2366004613cbf565b610fa8565b3480156105c357600080fd5b506009546001600160a01b0316610490565b6104cd6105e3366004613d47565b61106e565b3480156105f457600080fd5b506104cd610603366004613dcf565b6112ae565b34801561061457600080fd5b506104cd610623366004613e4f565b6112c8565b34801561063457600080fd5b50600254600154035b6040519081526020016104a4565b34801561065757600080fd5b506104ef610666366004613e6c565b611309565b34801561067757600080fd5b50610680600181565b6040516104a49190613ed9565b6104cd61069b366004613ee7565b6113a2565b3480156106ac57600080fd5b506106c06106bb366004613f28565b6115a0565b604080516001600160a01b0390931683526020830191909152016104a4565b3480156106eb57600080fd5b506104cd6106fa366004613ca6565b61165d565b34801561070b57600080fd5b506104ef61071a366004613ba9565b61166a565b34801561072b57600080fd5b5061063d61073a366004613ba9565b60176020526000908152604090205481565b34801561075857600080fd5b506104cd611776565b6104cd61076f366004613ee7565b6117e1565b34801561078057600080fd5b5061063d61078f366004613ba9565b60155460ff1660009081526016602090815260408083206001600160a01b039094168352929052205490565b3480156107c757600080fd5b5061063d60145481565b3480156107dd57600080fd5b506107e66117fc565b6040516104a49190613f4a565b3480156107ff57600080fd5b506104cd61080e366004613dcf565b61190d565b34801561081f57600080fd5b506010546104ef90600160e81b900460ff1681565b34801561084057600080fd5b5061085461084f366004613f8b565b611922565b6040516104a49190613fcd565b34801561086d57600080fd5b506010546104ef90600160d81b900460ff1681565b34801561088e57600080fd5b50610897600181565b6040516001600160781b0390911681526020016104a4565b3480156108bb57600080fd5b506104cd6108ca36600461405d565b6119ee565b3480156108db57600080fd5b506104cd6108ea3660046140c2565b611bf3565b3480156108fb57600080fd5b50600f5461092b9067ffffffffffffffff80821691680100000000000000008104821691600160801b9091041683565b6040805167ffffffffffffffff948516815292841660208401529216918101919091526060016104a4565b34801561096257600080fd5b50610490610971366004613ca6565b611d7e565b6104cd610984366004613d47565b611d89565b34801561099557600080fd5b506104cd611fe6565b3480156109aa57600080fd5b5061063d6109b9366004613ba9565b6120de565b3480156109ca57600080fd5b506104cd612146565b3480156109df57600080fd5b506104cd6109ee366004613ba9565b61215a565b3480156109ff57600080fd5b50610a13610a0e366004613ba9565b612183565b6040516104a49190614102565b348015610a2c57600080fd5b50610514612284565b348015610a4157600080fd5b506000546001600160a01b0316610490565b348015610a5f57600080fd5b506104cd610a6e366004614152565b6122e8565b348015610a7f57600080fd5b50610577612385565b348015610a9457600080fd5b50610a13610aa336600461418c565b612394565b348015610ab457600080fd5b506104cd610ac3366004613dcf565b612525565b348015610ad457600080fd5b5061063d60125481565b348015610aea57600080fd5b506104ef610af9366004613ba9565b61253a565b348015610b0a57600080fd5b506104cd610b19366004613ca6565b612602565b348015610b2a57600080fd5b506104cd610b393660046141c1565b61260f565b348015610b4a57600080fd5b506104cd610b59366004613ba9565b61267b565b348015610b6a57600080fd5b5061063d60115481565b6104cd610b82366004614236565b6127c2565b348015610b9357600080fd5b506104cd610ba2366004613ca6565b612806565b348015610bb357600080fd5b50610bbc612813565b6040516104a491906142fa565b348015610bd557600080fd5b506104cd610be4366004613ca6565b6128ce565b348015610bf557600080fd5b50610c09610c04366004613ca6565b6128db565b6040516104a49190614336565b348015610c2257600080fd5b506104cd610c31366004613e4f565b612953565b348015610c4257600080fd5b50610577610c51366004613ca6565b612994565b348015610c6257600080fd5b506107e6612b17565b348015610c7757600080fd5b506104cd612bd0565b348015610c8c57600080fd5b506104cd610c9b36600461437b565b612bf0565b348015610cac57600080fd5b5061063d60135481565b348015610cc257600080fd5b506104cd610cd1366004613e4f565b612c27565b348015610ce257600080fd5b506104ef610cf13660046143d1565b612c9f565b348015610d0257600080fd5b506104cd610d11366004613ba9565b612cf6565b348015610d2257600080fd5b50610514612d83565b348015610d3757600080fd5b506104cd610d463660046143ff565b612dda565b348015610d5757600080fd5b506010546104ef90600160e01b900460ff1681565b348015610d7857600080fd5b506104ef610d87366004613ba9565b60186020526000908152604090205460ff1681565b610da4612eee565b6001600160a01b03166000908152601860205260409020805460ff19166001179055565b60006001600160e01b031982167f86455d28000000000000000000000000000000000000000000000000000000001480610e2b57506001600160e01b031982167f2a55205a00000000000000000000000000000000000000000000000000000000145b80610e3a5750610e3a82612f48565b92915050565b6040805160608101825260008082526020820181905291810182905290610e65612fc8565b90506040518060600160405280826060015162ffffff168152602001826080015162ffffff1681526020018260a0015162ffffff1681525091505090565b610eab612eee565b610eb58282613090565b5050565b606060038054610ec890614450565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef490614450565b8015610f415780601f10610f1657610100808354040283529160200191610f41565b820191906000526020600020905b815481529060010190602001808311610f2457829003601f168201915b5050505050905090565b6000610f56826131aa565b610f8c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610fb382611d7e565b9050336001600160a01b0382161461100557610fcf8133612c9f565b611005576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260076020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601054600160e01b900460ff166110cc5760405162461bcd60e51b815260206004820152601660248201527f50726573616c65206973206e6f74206163746976652e0000000000000000000060448201526064015b60405180910390fd5b6110d78686866131d2565b34146111255760405162461bcd60e51b815260206004820152601060248201527f496e636f72726563742066756e6473210000000000000000000000000000000060448201526064016110c3565b60008461113287896144a0565b61113c91906144a0565b6014543360009081526017602052604090205461ffff929092169250906111649083906144c2565b11156111b25760405162461bcd60e51b815260206004820152601f60248201527f4d6178206d696e7473207065722061646472657373206578636565646564210060448201526064016110c3565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061122c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601154915084905061326d565b6112685760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016110c3565b6112758888886000613283565b33600090815260176020526040812080548492906112949084906144c2565b909155506112a4905085836134e4565b5050505050505050565b6112b6612eee565b600d6112c382848361451d565b505050565b6112d0612eee565b60108054911515600160d81b027fffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6009546000906001600160a01b0316156113975760095460405163050bf71960e31b81526001600160a01b038681166004830152858116602483015284811660448301529091169063285fb8c89060640160006040518083038186803b15801561137257600080fd5b505afa925050508015611383575060015b61138f5750600061139b565b50600161139b565b5060015b9392505050565b60006113ad826134fe565b9050836001600160a01b0316816001600160a01b0316146113fa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176114605761142a8633612c9f565b611460576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0385166114a0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ad868686600161357e565b80156114b857600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b8416900361154a576001840160008181526005602052604081205490036115485760015481146115485760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461159886868660016135a5565b505050505050565b6000828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff1692820192909252829161161f575060408051808201909152600a546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090611643906bffffffffffffffffffffffff16876145dd565b61164d91906145f4565b91519350909150505b9250929050565b611665612eee565b601455565b6009546000906001600160a01b03161561176e57600954604051635caaa2a960e11b81523060048201526001600160a01b039091169063d72dde5e90829063b955455290602401606060405180830381865afa1580156116ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116f29190614616565b602001516040516001600160e01b031960e084901b1681526001600160781b0390911660048201526001600160a01b03851660248201526044015b602060405180830381865afa15801561174a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3a9190614688565b506000919050565b61177e612eee565b600080546040516001600160a01b039091169047908381818185875af1925050503d80600081146117cb576040519150601f19603f3d011682016040523d82523d6000602084013e6117d0565b606091505b50509050806117de57600080fd5b50565b6112c3838383604051806020016040528060008152506127c2565b6009546060906001600160a01b0316156118fa57600954604051635caaa2a960e11b81523060048201526001600160a01b0390911690633fe5df9990829063b955455290602401606060405180830381865afa158015611860573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118849190614616565b602001516040516001600160e01b031960e084901b1681526001600160781b0390911660048201526024015b600060405180830381865afa1580156118cd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526118f591908101906146a5565b905090565b5060408051600081526020810190915290565b611915612eee565b600e6112c382848361451d565b60608160008167ffffffffffffffff811115611940576119406141ef565b60405190808252806020026020018201604052801561199257816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161195e5790505b50905060005b8281146119e5576119c08686838181106119b4576119b4614757565b905060200201356128db565b8282815181106119d2576119d2614757565b6020908102919091010152600101611998565b50949350505050565b6119f6612eee565b6000611a00612fc8565b9050806000015162ffffff168462ffffff1611158015611a2e5750806020015162ffffff168362ffffff1611155b8015611a485750806040015162ffffff168262ffffff1611155b611aba5760405162461bcd60e51b815260206004820152603e60248201527f5075626c6963206d617820737570706c792063616e6e6f74206265206772656160448201527f746572207468616e2074686520676c6f62616c206d617820737570706c79000060648201526084016110c3565b805160208201516040830151611ba19262ffffff90911660189290921b65ffffff0000001660309190911b68ffffff00000000000016171762ffffff8416601886901b65ffffff00000016603088901b68ffffff0000000000001617175b60c084015160e085015161010086015162ffffff1660189190911b65ffffff0000001660309290921b68ffffff0000000000001691909117177affffffffffffffffff000000000000000000000000000000000000609084901b1671ffffffffffffffffff000000000000000000604884901b161768ffffffffffffffffff8216179392505050565b601080547fffffffffff000000000000000000000000000000000000000000000000000000167affffffffffffffffffffffffffffffffffffffffffffffffffffff9290921691909117905550505050565b611bfb6135c5565b6000611c0f6009546001600160a01b031690565b90506001600160a01b038116611c51576040517f39ffc7ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604051630368065360e61b81526001600160a01b0382169063da0194c090611c7f903090889060040161476d565b600060405180830381600087803b158015611c9957600080fd5b505af1158015611cad573d6000803e3d6000fd5b5050604051631182550160e11b81523060048201526001600160781b03861660248201526001600160a01b0384169250632304aa029150604401600060405180830381600087803b158015611d0157600080fd5b505af1158015611d15573d6000803e3d6000fd5b505060405163235d10c560e21b81523060048201526001600160781b03851660248201526001600160a01b0384169250638d74431491506044015b600060405180830381600087803b158015611d6a57600080fd5b505af11580156112a4573d6000803e3d6000fd5b6000610e3a826134fe565b601054600160d81b900460ff1615611de35760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016110c3565b611dee8686866131d2565b3414611e3c5760405162461bcd60e51b815260206004820152601060248201527f496e636f72726563742066756e6473210000000000000000000000000000000060448201526064016110c3565b600084611e4987896144a0565b611e5391906144a0565b60155460135460ff909116600081815260166020908152604080832033845290915290205461ffff93909316935091611e8d9084906144c2565b1115611edb5760405162461bcd60e51b815260206004820152601f60248201527f4d6178206d696e7473207065722061646472657373206578636565646564210060448201526064016110c3565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611f5585858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601254915084905061326d565b611f915760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016110c3565b611f9e8989896001613283565b60ff8216600090815260166020908152604080832033845290915281208054859290611fcb9084906144c2565b90915550611fdb905086846134e4565b505050505050505050565b611fee6135c5565b61200971721c310194ccfc01e523fc93c9cccfa2a0ac61267b565b604051630368065360e61b815271721c310194ccfc01e523fc93c9cccfa2a0ac9063da0194c09061204190309060019060040161476d565b600060405180830381600087803b15801561205b57600080fd5b505af115801561206f573d6000803e3d6000fd5b5050604051631182550160e11b81523060048201526001602482015271721c310194ccfc01e523fc93c9cccfa2a0ac9250632304aa029150604401600060405180830381600087803b1580156120c457600080fd5b505af11580156120d8573d6000803e3d6000fd5b50505050565b60006001600160a01b038216612120576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b61214e612eee565b61215860006135cd565b565b612162612eee565b6001600160a01b03166000908152601860205260409020805460ff19169055565b60606000806000612193856120de565b905060008167ffffffffffffffff8111156121b0576121b06141ef565b6040519080825280602002602001820160405280156121d9578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081018290529192505b838614612278576122118161362a565b915081604001516122705781516001600160a01b03161561223157815194505b876001600160a01b0316856001600160a01b031603612270578083878060010198508151811061226357612263614757565b6020026020010181815250505b600101612201565b50909695505050505050565b60408051606081018252600080825260208201819052918101829052906122a9612fc8565b905060405180606001604052808260c0015162ffffff1681526020018260e0015162ffffff16815260200182610100015162ffffff1681525091505090565b6122f0612eee565b6040805160608101825267ffffffffffffffff94851680825293851660208201819052929094169301839052600f80547fffffffffffffffffffffffffffffffff000000000000000000000000000000001690921768010000000000000000909102177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff16600160801b909202919091179055565b606060048054610ec890614450565b60608183106123cf576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806123db60015490565b9050808411156123e9578093505b60006123f4876120de565b905084861015612413578585038181101561240d578091505b50612417565b5060005b60008167ffffffffffffffff811115612432576124326141ef565b60405190808252806020026020018201604052801561245b578160200160208202803683370190505b5090508160000361247157935061139b92505050565b600061247c886128db565b90506000816040015161248d575080515b885b88811415801561249f5750848714155b15612514576124ad8161362a565b9250826040015161250c5782516001600160a01b0316156124cd57825191505b8a6001600160a01b0316826001600160a01b03160361250c57808488806001019950815181106124ff576124ff614757565b6020026020010181815250505b60010161248f565b505050928352509095945050505050565b61252d612eee565b600c6112c382848361451d565b6009546000906001600160a01b03161561176e57600954604051635caaa2a960e11b81523060048201526001600160a01b0390911690639445f53090829063b955455290602401606060405180830381865afa15801561259e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125c29190614616565b60409081015190516001600160e01b031960e084901b1681526001600160781b0390911660048201526001600160a01b038516602482015260440161172d565b61260a612eee565b601355565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6126836135c5565b60006001600160a01b0382163b156126fe576040516301ffc9a760e01b8152600060048201526001600160a01b038316906301ffc9a790602401602060405180830381865afa9250505080156126f6575060408051601f3d908101601f191682019092526126f391810190614688565b60015b156126fe5790505b6001600160a01b03821615801590612714575080155b1561274b576040517f32483afb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600954604080516001600160a01b03928316815291841660208301527fcc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac910160405180910390a1506009805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6127cd8484846113a2565b6001600160a01b0383163b156120d8576127e9848484846136a9565b6120d8576040516368d2bf6b60e11b815260040160405180910390fd5b61280e612eee565b601155565b60408051606081018252600080825260208201819052918101919091526009546001600160a01b0316156128ad57600954604051635caaa2a960e11b81523060048201526001600160a01b039091169063b955455290602401606060405180830381865afa158015612889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118f59190614616565b50604080516060810182526000808252602082018190529181019190915290565b6128d6612eee565b601255565b604080516080808201835260008083526020808401829052838501829052606080850183905285519384018652828452908301829052938201819052928101839052909150600154831061292f5792915050565b6129388361362a565b905080604001511561294a5792915050565b61139b83613794565b61295b612eee565b60108054911515600160e01b027fffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b606061299f826131aa565b612a115760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016110c3565b601054600160e81b900460ff161515600003612ab957600e8054612a3490614450565b80601f0160208091040260200160405190810160405280929190818152602001828054612a6090614450565b8015612aad5780601f10612a8257610100808354040283529160200191612aad565b820191906000526020600020905b815481529060010190602001808311612a9057829003601f168201915b50505050509050919050565b6000612ac361380c565b90506000815111612ae3576040518060200160405280600081525061139b565b80612aed8461381b565b600d604051602001612b019392919061478a565b6040516020818303038152906040529392505050565b6009546060906001600160a01b0316156118fa57600954604051635caaa2a960e11b81523060048201526001600160a01b03909116906317e94a6c90829063b955455290602401606060405180830381865afa158015612b7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9f9190614616565b60409081015190516001600160e01b031960e084901b1681526001600160781b0390911660048201526024016118b0565b612bd8612eee565b6015805460ff8082166001011660ff19909116179055565b612bf8612eee565b612c058484846001613283565b6120d88183612c1486886144a0565b612c1e91906144a0565b61ffff166134e4565b612c2f612eee565b601080547fffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff16600160e81b83151502179055604080516000815260001960208201527f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c910160405180910390a150565b6001600160a01b03811660009081526018602052604081205460ff1615612cc857506001610e3a565b6001600160a01b0380841660009081526008602090815260408083209386168352929052205460ff1661139b565b612cfe612eee565b6001600160a01b038116612d7a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016110c3565b6117de816135cd565b6040805160608101825260008082526020820181905291810182905290612da8612fc8565b60408051606081018252825162ffffff9081168252602080850151821690830152928201519092169082015292915050565b612de26135c5565b612deb8461267b565b604051630368065360e61b81526001600160a01b0385169063da0194c090612e19903090879060040161476d565b600060405180830381600087803b158015612e3357600080fd5b505af1158015612e47573d6000803e3d6000fd5b5050604051631182550160e11b81523060048201526001600160781b03851660248201526001600160a01b0387169250632304aa029150604401600060405180830381600087803b158015612e9b57600080fd5b505af1158015612eaf573d6000803e3d6000fd5b505060405163235d10c560e21b81523060048201526001600160781b03841660248201526001600160a01b0387169250638d7443149150604401611d50565b6000546001600160a01b031633146121585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110c3565b60006301ffc9a760e01b6001600160e01b031983161480612f9257507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610e3a5750506001600160e01b0319167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081019190915250601054604080516101208101825260c083811c62ffffff908116835260a885901c81166020840152609085901c811693830193909352607884901c831660608084019190915284901c83166080830152604884901c831660a0830152603084901c831690820152601883901c821660e0820152911661010082015290565b6127106bffffffffffffffffffffffff821611156131165760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c6550726963650000000000000000000000000000000000000000000060648201526084016110c3565b6001600160a01b03821661316c5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016110c3565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600a55565b600060015482108015610e3a575050600090815260056020526040902054600160e01b161590565b60408051606081018252600f5467ffffffffffffffff808216835268010000000000000000820481166020840152600160801b909104169181018290526000916132219061ffff85169061482d565b8461ffff168260200151613235919061482d565b82516132469061ffff89169061482d565b6132509190614859565b61325a9190614859565b67ffffffffffffffff1695945050505050565b60008261327a858461385f565b14949350505050565b600061328d612fc8565b60c08101805162ffffff61ffff898116909201811690925260e08301805188831601831690526101008301805191871690910190911690529050811561339257806060015162ffffff168160c0015162ffffff16111580156133015750806080015162ffffff168160e0015162ffffff1611155b801561332057508060a0015162ffffff1681610100015162ffffff1611155b6133925760405162461bcd60e51b815260206004820152602360248201527f5075626c6963206d617820737570706c7920666f72207469657220657863656560448201527f646564000000000000000000000000000000000000000000000000000000000060648201526084016110c3565b806000015162ffffff168160c0015162ffffff16111580156133c65750806020015162ffffff168160e0015162ffffff1611155b80156133e55750806040015162ffffff1681610100015162ffffff1611155b6134315760405162461bcd60e51b815260206004820152601c60248201527f4d617820737570706c7920666f7220746965722065786365656465640000000060448201526064016110c3565b8051602082015160408301516060840151608085015160a08601516134919568ffffff000000000000603091821b811665ffffff000000601898891b81169190911762ffffff97881617979590921b169290931b90921617911617611b18565b601080547fffffffffff000000000000000000000000000000000000000000000000000000167affffffffffffffffffffffffffffffffffffffffffffffffffffff929092169190911790555050505050565b610eb58282604051806020016040528060008152506138a2565b60008160015481101561354c5760008181526005602052604081205490600160e01b8216900361354a575b8060000361139b575060001901600081815260056020526040902054613529565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8181101561359e576135968585838601613908565b600101613581565b5050505050565b60005b8181101561359e576135bd858583860161395e565b6001016135a8565b612158612eee565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260056020526040902054610e3a90604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906136de90339089908890889060040161487a565b6020604051808303816000875af1925050508015613719575060408051601f3d908101601f19168201909252613716918101906148b6565b60015b613777573d808015613747576040519150601f19603f3d011682016040523d82523d6000602084013e61374c565b606091505b50805160000361376f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610e3a6137c4836134fe565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600c8054610ec890614450565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806138355750819003601f19909101908152919050565b600081815b845181101561389a576138908286838151811061388357613883614757565b60200260200101516139a5565b9150600101613864565b509392505050565b6138ac83836139d4565b6001600160a01b0383163b156112c3576001548281035b6138d660008683806001019450866136a9565b6138f3576040516368d2bf6b60e11b815260040160405180910390fd5b8181106138c357816001541461359e57600080fd5b6001600160a01b0383811615908316158180156139225750805b1561394057604051635cbd944160e01b815260040160405180910390fd5b811561394c575b61359e565b806139475761359e3386868634613b1a565b6001600160a01b0383811615908316158180156139785750805b1561399657604051635cbd944160e01b815260040160405180910390fd5b8161394757806139475761359e565b60008183106139c157600082815260208490526040902061139b565b600083815260208390526040902061139b565b6001546000829003613a12576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613a1f600084838561357e565b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114613ace57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613a96565b5081600003613b09576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600155506112c360008483856135a5565b6009546001600160a01b03161561359e5760095460405163050bf71960e31b81526001600160a01b038781166004830152868116602483015285811660448301529091169063285fb8c89060640160006040518083038186803b158015613b8057600080fd5b505afa158015611fdb573d6000803e3d6000fd5b6001600160a01b03811681146117de57600080fd5b600060208284031215613bbb57600080fd5b813561139b81613b94565b6001600160e01b0319811681146117de57600080fd5b600060208284031215613bee57600080fd5b813561139b81613bc6565b60008060408385031215613c0c57600080fd5b8235613c1781613b94565b915060208301356bffffffffffffffffffffffff81168114613c3857600080fd5b809150509250929050565b60005b83811015613c5e578181015183820152602001613c46565b50506000910152565b60008151808452613c7f816020860160208601613c43565b601f01601f19169290920160200192915050565b60208152600061139b6020830184613c67565b600060208284031215613cb857600080fd5b5035919050565b60008060408385031215613cd257600080fd5b8235613cdd81613b94565b946020939093013593505050565b803561ffff81168114613cfd57600080fd5b919050565b60008083601f840112613d1457600080fd5b50813567ffffffffffffffff811115613d2c57600080fd5b6020830191508360208260051b850101111561165657600080fd5b60008060008060008060a08789031215613d6057600080fd5b613d6987613ceb565b9550613d7760208801613ceb565b9450613d8560408801613ceb565b93506060870135613d9581613b94565b9250608087013567ffffffffffffffff811115613db157600080fd5b613dbd89828a01613d02565b979a9699509497509295939492505050565b60008060208385031215613de257600080fd5b823567ffffffffffffffff80821115613dfa57600080fd5b818501915085601f830112613e0e57600080fd5b813581811115613e1d57600080fd5b866020828501011115613e2f57600080fd5b60209290920196919550909350505050565b80151581146117de57600080fd5b600060208284031215613e6157600080fd5b813561139b81613e41565b600080600060608486031215613e8157600080fd5b8335613e8c81613b94565b92506020840135613e9c81613b94565b91506040840135613eac81613b94565b809150509250925092565b60078110613ed557634e487b7160e01b600052602160045260246000fd5b9052565b60208101610e3a8284613eb7565b600080600060608486031215613efc57600080fd5b8335613f0781613b94565b92506020840135613f1781613b94565b929592945050506040919091013590565b60008060408385031215613f3b57600080fd5b50508035926020909101359150565b6020808252825182820181905260009190848201906040850190845b818110156122785783516001600160a01b031683529284019291840191600101613f66565b60008060208385031215613f9e57600080fd5b823567ffffffffffffffff811115613fb557600080fd5b613fc185828601613d02565b90969095509350505050565b6020808252825182820181905260009190848201906040850190845b81811015612278576140378385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101613fe9565b803562ffffff81168114613cfd57600080fd5b60008060006060848603121561407257600080fd5b61407b8461404a565b92506140896020850161404a565b91506140976040850161404a565b90509250925092565b600781106117de57600080fd5b6001600160781b03811681146117de57600080fd5b6000806000606084860312156140d757600080fd5b83356140e2816140a0565b925060208401356140f2816140ad565b91506040840135613eac816140ad565b6020808252825182820181905260009190848201906040850190845b818110156122785783518352928401929184019160010161411e565b803567ffffffffffffffff81168114613cfd57600080fd5b60008060006060848603121561416757600080fd5b6141708461413a565b925061417e6020850161413a565b91506140976040850161413a565b6000806000606084860312156141a157600080fd5b83356141ac81613b94565b95602085013595506040909401359392505050565b600080604083850312156141d457600080fd5b82356141df81613b94565b91506020830135613c3881613e41565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561422e5761422e6141ef565b604052919050565b6000806000806080858703121561424c57600080fd5b843561425781613b94565b935060208581013561426881613b94565b935060408601359250606086013567ffffffffffffffff8082111561428c57600080fd5b818801915088601f8301126142a057600080fd5b8135818111156142b2576142b26141ef565b6142c4601f8201601f19168501614205565b915080825289848285010111156142da57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600060608201905061430d828451613eb7565b60208301516001600160781b038082166020850152806040860151166040850152505092915050565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610e3a565b6000806000806080858703121561439157600080fd5b61439a85613ceb565b93506143a860208601613ceb565b92506143b660408601613ceb565b915060608501356143c681613b94565b939692955090935050565b600080604083850312156143e457600080fd5b82356143ef81613b94565b91506020830135613c3881613b94565b6000806000806080858703121561441557600080fd5b843561442081613b94565b93506020850135614430816140a0565b92506040850135614440816140ad565b915060608501356143c6816140ad565b600181811c9082168061446457607f821691505b60208210810361448457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61ffff8181168382160190808211156144bb576144bb61448a565b5092915050565b80820180821115610e3a57610e3a61448a565b601f8211156112c3576000816000526020600020601f850160051c810160208610156144fe5750805b601f850160051c820191505b818110156115985782815560010161450a565b67ffffffffffffffff831115614535576145356141ef565b614549836145438354614450565b836144d5565b6000601f84116001811461457d57600085156145655750838201355b600019600387901b1c1916600186901b17835561359e565b600083815260209020601f19861690835b828110156145ae578685013582556020948501946001909201910161458e565b50868210156145cb5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b8082028115828204841417610e3a57610e3a61448a565b60008261461157634e487b7160e01b600052601260045260246000fd5b500490565b60006060828403121561462857600080fd5b6040516060810181811067ffffffffffffffff8211171561464b5761464b6141ef565b6040528251614659816140a0565b81526020830151614669816140ad565b6020820152604083015161467c816140ad565b60408201529392505050565b60006020828403121561469a57600080fd5b815161139b81613e41565b600060208083850312156146b857600080fd5b825167ffffffffffffffff808211156146d057600080fd5b818501915085601f8301126146e457600080fd5b8151818111156146f6576146f66141ef565b8060051b9150614707848301614205565b818152918301840191848101908884111561472157600080fd5b938501935b8385101561474b578451925061473b83613b94565b8282529385019390850190614726565b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03831681526040810161139b6020830184613eb7565b60008451602061479e828560208a01613c43565b8551918401916147b2818460208a01613c43565b85549201916000906147c381614450565b600182811680156147db57600181146147f05761481d565b60ff198416875282151583028701945061481d565b89600052602060002060005b84811015614815578154898201529083019087016147fc565b505082870194505b50929a9950505050505050505050565b67ffffffffffffffff8181168382160280821691908281146148515761485161448a565b505092915050565b67ffffffffffffffff8181168382160190808211156144bb576144bb61448a565b60006001600160a01b038087168352808616602084015250836040830152608060608301526148ac6080830184613c67565b9695505050505050565b6000602082840312156148c857600080fd5b815161139b81613bc656fea2646970667358221220e8fbff430cc3074ed665c1d625d94c469342b211db6bf478d552d420c378599164736f6c63430008160033

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

00000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000002c68af0bb140000000000000000000000000000000000000000000000000000058d15e1762800000000000000000000000000000000000000000000000000000853a0d2313c00000000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000d060000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000a6a0000000000000000000000000000000000000000000000000000000000000a6c0000000000000000000000000000000000000000000000000000000000000a6a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000011536861646f7720576172204167656e747300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035357410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Shadow War Agents
Arg [1] : _symbol (string): SWA
Arg [2] : _tiersCost (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [3] : _tiersMaxSupply (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [4] : _maxTiersSupplyForPublicPhase (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : _maxAgentsMintedPerAddress (uint256): 2
Arg [6] : _maxAgentsMintedPerAddressForWL (uint256): 1

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [2] : 00000000000000000000000000000000000000000000000002c68af0bb140000
Arg [3] : 000000000000000000000000000000000000000000000000058d15e176280000
Arg [4] : 0000000000000000000000000000000000000000000000000853a0d2313c0000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000d06
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000a6a
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000a6c
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000a6a
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [14] : 536861646f7720576172204167656e7473000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [16] : 5357410000000000000000000000000000000000000000000000000000000000


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.