ETH Price: $3,383.99 (-1.56%)
Gas: 1 Gwei

Token

Alienbirds (AB)
 

Overview

Max Total Supply

10,000 AB

Holders

2,984

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 AB
0xb83efee0aad06a8f7bceb9eef660b1a3663b2116
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:
Alienbirds

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// 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();

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

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

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

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

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

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

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

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

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

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

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

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

    // =============================================================
    //                            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;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](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);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


/**
 * @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 {
    // Reference type for token approval.
    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 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 {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _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]`.
        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 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 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 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.
            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`.
                )

                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 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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


pragma solidity ^0.8.11;



contract Alienbirds is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isActive = false;

  uint256 public mintPrice = 0 ether;
  uint256 public MAX_SUPPLY = 10000;
  uint256 public FREE_MAX_SUPPLY = 0;
  uint256 private reserveAtATime = 150;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 150;
  uint256 public maxAllowedTokensPerPurchase = 3;
  uint256 public maxAllowedTokensPerWallet = 3;
  uint256 public FREE_AllowedTokensPerWallet = 0;

  address private Address1 = 0xdc8EE98b9b12F88f835bFBbF21a469444143eCFe;


  constructor(string memory baseURI) ERC721A("Alienbirds", "AB") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function setPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }
  
  function toggleSale() public onlyAuthorized {
    isActive = !isActive;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

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

  function setMaximumAllowedTokensPerTx(uint256 _count) public onlyAuthorized {
    maxAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    maxAllowedTokensPerWallet = _count;
  }

  function setFreeMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    FREE_AllowedTokensPerWallet = _count;
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    MAX_SUPPLY = maxMintSupply;
  }

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");

     _safeMint(msg.sender, reserveAtATime);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyAuthorized {
    uint256 supply = totalSupply();

    require(supply <= MAX_SUPPLY, "Total supply spent.");
    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i],_count);
    }
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
      require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
      require(_count <= maxAllowedTokensPerPurchase,"Exceeds maximum allowed tokens");
      require(balanceOf(msg.sender) + _count <= maxAllowedTokensPerWallet,"Exceeds maximum tokens allowed per wallet");

      if(balanceOf(msg.sender) < FREE_AllowedTokensPerWallet && mintIndex < FREE_MAX_SUPPLY) {
          require(msg.value >= mintPrice*(_count - FREE_AllowedTokensPerWallet), "insufficient funds");
      } else {
        require(msg.value >= mintPrice * _count, "Insufficient ETH amount sent.");
      }
    }

    _safeMint(msg.sender, _count);
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(Address1).transfer((balance * 10000) / 10000);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_AllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","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":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600b55612710600c556000600d556096600e556000600f55609660105560036011556003601255600060135573dc8ee98b9b12f88f835bfbbf21a469444143ecfe601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000af57600080fd5b5060405162003c1638038062003c168339818101604052810190620000d5919062000571565b6040518060400160405280600a81526020017f416c69656e6269726473000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f414200000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015992919062000324565b5080600390805190602001906200017292919062000324565b5062000183620001c360201b60201c565b6000819055505050620001ab6200019f620001c860201b60201c565b620001d060201b60201c565b620001bc816200029660201b60201c565b5062000627565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002bd620002fa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002de57600080fd5b8060099080519060200190620002f692919062000324565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200033290620005f1565b90600052602060002090601f016020900481019282620003565760008555620003a2565b82601f106200037157805160ff1916838001178555620003a2565b82800160010185558215620003a2579182015b82811115620003a157825182559160200191906001019062000384565b5b509050620003b19190620003b5565b5090565b5b80821115620003d0576000816000905550600101620003b6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200043d82620003f2565b810181811067ffffffffffffffff821117156200045f576200045e62000403565b5b80604052505050565b600062000474620003d4565b905062000482828262000432565b919050565b600067ffffffffffffffff821115620004a557620004a462000403565b5b620004b082620003f2565b9050602081019050919050565b60005b83811015620004dd578082015181840152602081019050620004c0565b83811115620004ed576000848401525b50505050565b60006200050a620005048462000487565b62000468565b905082815260208101848484011115620005295762000528620003ed565b5b62000536848285620004bd565b509392505050565b600082601f830112620005565762000555620003e8565b5b815162000568848260208601620004f3565b91505092915050565b6000602082840312156200058a5762000589620003de565b5b600082015167ffffffffffffffff811115620005ab57620005aa620003e3565b5b620005b9848285016200053e565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060a57607f821691505b60208210811415620006215762000620620005c2565b5b50919050565b6135df80620006376000396000f3fe60806040526004361061021a5760003560e01c80637389fbb711610123578063b88d4fde116100ab578063ea6eb8361161006f578063ea6eb83614610778578063ee0781b8146107a1578063f2fde38b146107ca578063f6c9d9e3146107f3578063fb7e6ccb1461081c5761021a565b8063b88d4fde14610681578063bbb7438d146106aa578063c87b56dd146106d3578063e0a7051514610710578063e985e9c51461073b5761021a565b80638da5cb5b116100f25780638da5cb5b146105bd57806391b7f5ed146105e857806395d89b4114610611578063a0712d681461063c578063a22cb465146106585761021a565b80637389fbb7146105275780637d8966e4146105505780638069876d1461056757806384939ac2146105925761021a565b80633ccfd60b116101a65780636352211e116101755780636352211e146104545780636817c76c1461049157806370a08231146104bc578063715018a6146104f957806371e3500c146105105761021a565b80633ccfd60b146103c257806342842e0e146103d957806355f804b31461040257806356a87caa1461042b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806322f3e2d41461034357806323b872dd1461036e57806332cb6b0c146103975761021a565b806301ffc9a71461021f5780630691987b1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906125bd565b610845565b6040516102539190612605565b60405180910390f35b34801561026857600080fd5b506102716108d7565b60405161027e9190612639565b60405180910390f35b34801561029357600080fd5b5061029c6108dd565b6040516102a991906126ed565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061273b565b61096f565b6040516102e691906127a9565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906127f0565b6109ee565b005b34801561032457600080fd5b5061032d610b32565b60405161033a9190612639565b60405180910390f35b34801561034f57600080fd5b50610358610b49565b6040516103659190612605565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612830565b610b5c565b005b3480156103a357600080fd5b506103ac610e81565b6040516103b99190612639565b60405180910390f35b3480156103ce57600080fd5b506103d7610e87565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612830565b610f4f565b005b34801561040e57600080fd5b50610429600480360381019061042491906129b8565b610f6f565b005b34801561043757600080fd5b50610452600480360381019061044d919061273b565b610fc8565b005b34801561046057600080fd5b5061047b6004803603810190610476919061273b565b611011565b60405161048891906127a9565b60405180910390f35b34801561049d57600080fd5b506104a6611023565b6040516104b39190612639565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190612a01565b611029565b6040516104f09190612639565b60405180910390f35b34801561050557600080fd5b5061050e6110e2565b005b34801561051c57600080fd5b506105256110f6565b005b34801561053357600080fd5b5061054e6004803603810190610549919061273b565b61118a565b005b34801561055c57600080fd5b506105656111d3565b005b34801561057357600080fd5b5061057c61123e565b6040516105899190612639565b60405180910390f35b34801561059e57600080fd5b506105a7611244565b6040516105b49190612639565b60405180910390f35b3480156105c957600080fd5b506105d261124a565b6040516105df91906127a9565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a919061273b565b611274565b005b34801561061d57600080fd5b506106266112bd565b60405161063391906126ed565b60405180910390f35b6106566004803603810190610651919061273b565b61134f565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612a5a565b6115fe565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612b3b565b611776565b005b3480156106b657600080fd5b506106d160048036038101906106cc919061273b565b6117e9565b005b3480156106df57600080fd5b506106fa60048036038101906106f5919061273b565b611832565b60405161070791906126ed565b60405180910390f35b34801561071c57600080fd5b506107256118d1565b6040516107329190612639565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612bbe565b6118d7565b60405161076f9190612605565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a919061273b565b61196b565b005b3480156107ad57600080fd5b506107c860048036038101906107c3919061273b565b6119b4565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190612a01565b6119fd565b005b3480156107ff57600080fd5b5061081a6004803603810190610815919061273b565b611a81565b005b34801561082857600080fd5b50610843600480360381019061083e9190612c5e565b611aca565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b6060600280546108ec90612ced565b80601f016020809104026020016040519081016040528092919081815260200182805461091890612ced565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611c9a565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f982611011565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1a611cf9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d57610a4681610a41611cf9565b6118d7565b610a7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b3c611d01565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6000610b6782611d06565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bda84611dd4565b91509150610bf08187610beb611cf9565b611dfb565b610c3c57610c0586610c00611cf9565b6118d7565b610c3b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb08686866001611e3f565b8015610cbb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8985610d65888887611e45565b7c020000000000000000000000000000000000000000000000000000000017611e6d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e11576000600185019050600060046000838152602001908152602001600020541415610e0f576000548114610e0e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e798686866001611e98565b505050505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16610ea661124a565b73ffffffffffffffffffffffffffffffffffffffff1614610ec657600080fd5b6000479050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127108084610f169190612d4e565b610f209190612dd7565b9081150290604051600060405180830381858888f19350505050158015610f4b573d6000803e3d6000fd5b5050565b610f6a83838360405180602001604052806000815250611776565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610f8e61124a565b73ffffffffffffffffffffffffffffffffffffffff1614610fae57600080fd5b8060099080519060200190610fc49291906124ae565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16610fe761124a565b73ffffffffffffffffffffffffffffffffffffffff161461100757600080fd5b8060108190555050565b600061101c82611d06565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ea611e9e565b6110f46000611f1c565b565b3373ffffffffffffffffffffffffffffffffffffffff1661111561124a565b73ffffffffffffffffffffffffffffffffffffffff161461113557600080fd5b601054600f54111561117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612e54565b60405180910390fd5b61118833600e54611fe2565b565b3373ffffffffffffffffffffffffffffffffffffffff166111a961124a565b73ffffffffffffffffffffffffffffffffffffffff16146111c957600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166111f261124a565b73ffffffffffffffffffffffffffffffffffffffff161461121257600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600d5481565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661129361124a565b73ffffffffffffffffffffffffffffffffffffffff16146112b357600080fd5b80600b8190555050565b6060600380546112cc90612ced565b80601f01602080910402602001604051908101604052809291908181526020018280546112f890612ced565b80156113455780601f1061131a57610100808354040283529160200191611345565b820191906000526020600020905b81548152906001019060200180831161132857829003601f168201915b5050505050905090565b600c5461135a610b32565b111561139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290612ec0565b60405180910390fd5b60006113a5610b32565b90506113af61124a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f057600a60009054906101000a900460ff16611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790612f2c565b60405180910390fd5b600c54828261143f9190612f4c565b1115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790612fee565b60405180910390fd5b6011548211156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc9061305a565b60405180910390fd5b601254826114d233611029565b6114dc9190612f4c565b111561151d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611514906130ec565b60405180910390fd5b60135461152933611029565b1080156115375750600d5481105b1561159e576013548261154a919061310c565b600b546115579190612d4e565b341015611599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115909061318c565b60405180910390fd5b6115ef565b81600b546115ac9190612d4e565b3410156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e5906131f8565b60405180910390fd5b5b5b6115fa3383611fe2565b5050565b611606611cf9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611678611cf9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611725611cf9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176a9190612605565b60405180910390a35050565b611781848484610b5c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e3576117ac84848484612000565b6117e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff1661180861124a565b73ffffffffffffffffffffffffffffffffffffffff161461182857600080fd5b8060118190555050565b606061183d82611c9a565b611873576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061187d612151565b905060008151141561189e57604051806020016040528060008152506118c9565b806118a8846121e3565b6040516020016118b9929190613254565b6040516020818303038152906040525b915050919050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661198a61124a565b73ffffffffffffffffffffffffffffffffffffffff16146119aa57600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff166119d361124a565b73ffffffffffffffffffffffffffffffffffffffff16146119f357600080fd5b8060138190555050565b611a05611e9e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c906132ea565b60405180910390fd5b611a7e81611f1c565b50565b3373ffffffffffffffffffffffffffffffffffffffff16611aa061124a565b73ffffffffffffffffffffffffffffffffffffffff1614611ac057600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611ae961124a565b73ffffffffffffffffffffffffffffffffffffffff1614611b0957600080fd5b6000611b13610b32565b9050600c54811115611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190613356565b60405180910390fd5b600c548482611b699190612f4c565b1115611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190612fee565b60405180910390fd5b60005b83839050811015611c9357600073ffffffffffffffffffffffffffffffffffffffff16848483818110611be357611be2613376565b5b9050602002016020810190611bf89190612a01565b73ffffffffffffffffffffffffffffffffffffffff161415611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c46906133f1565b60405180910390fd5b611c80848483818110611c6557611c64613376565b5b9050602002016020810190611c7a9190612a01565b86611fe2565b8080611c8b90613411565b915050611bad565b5050505050565b600081611ca5611d01565b11158015611cb4575060005482105b8015611cf2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d15611d01565b11611d9d57600054811015611d9c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d9a575b6000811415611d90576004600083600190039350838152602001908152602001600020549050611d65565b8092505050611dcf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5c868684612233565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ea661223c565b73ffffffffffffffffffffffffffffffffffffffff16611ec461124a565b73ffffffffffffffffffffffffffffffffffffffff1614611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f11906134a6565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ffc828260405180602001604052806000815250612244565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612026611cf9565b8786866040518563ffffffff1660e01b8152600401612048949392919061351b565b6020604051808303816000875af192505050801561208457506040513d601f19601f82011682018060405250810190612081919061357c565b60015b6120fe573d80600081146120b4576040519150601f19603f3d011682016040523d82523d6000602084013e6120b9565b606091505b506000815114156120f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461216090612ced565b80601f016020809104026020016040519081016040528092919081815260200182805461218c90612ced565b80156121d95780601f106121ae576101008083540402835291602001916121d9565b820191906000526020600020905b8154815290600101906020018083116121bc57829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561221f57600183039250600a81066030018353600a810490508061221a5761221f565b6121f4565b508181036020830392508083525050919050565b60009392505050565b600033905090565b61224e83836122e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122dc57600080549050600083820390505b61228e6000868380600101945086612000565b6122c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061227b5781600054146122d957600080fd5b50505b505050565b6000805490506000821415612322576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232f6000848385611e3f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a6836123976000866000611e45565b6123a08561249e565b17611e6d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061240c565b506000821415612483576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124996000848385611e98565b505050565b60006001821460e11b9050919050565b8280546124ba90612ced565b90600052602060002090601f0160209004810192826124dc5760008555612523565b82601f106124f557805160ff1916838001178555612523565b82800160010185558215612523579182015b82811115612522578251825591602001919060010190612507565b5b5090506125309190612534565b5090565b5b8082111561254d576000816000905550600101612535565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61259a81612565565b81146125a557600080fd5b50565b6000813590506125b781612591565b92915050565b6000602082840312156125d3576125d261255b565b5b60006125e1848285016125a8565b91505092915050565b60008115159050919050565b6125ff816125ea565b82525050565b600060208201905061261a60008301846125f6565b92915050565b6000819050919050565b61263381612620565b82525050565b600060208201905061264e600083018461262a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561268e578082015181840152602081019050612673565b8381111561269d576000848401525b50505050565b6000601f19601f8301169050919050565b60006126bf82612654565b6126c9818561265f565b93506126d9818560208601612670565b6126e2816126a3565b840191505092915050565b6000602082019050818103600083015261270781846126b4565b905092915050565b61271881612620565b811461272357600080fd5b50565b6000813590506127358161270f565b92915050565b6000602082840312156127515761275061255b565b5b600061275f84828501612726565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061279382612768565b9050919050565b6127a381612788565b82525050565b60006020820190506127be600083018461279a565b92915050565b6127cd81612788565b81146127d857600080fd5b50565b6000813590506127ea816127c4565b92915050565b600080604083850312156128075761280661255b565b5b6000612815858286016127db565b925050602061282685828601612726565b9150509250929050565b6000806000606084860312156128495761284861255b565b5b6000612857868287016127db565b9350506020612868868287016127db565b925050604061287986828701612726565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128c5826126a3565b810181811067ffffffffffffffff821117156128e4576128e361288d565b5b80604052505050565b60006128f7612551565b905061290382826128bc565b919050565b600067ffffffffffffffff8211156129235761292261288d565b5b61292c826126a3565b9050602081019050919050565b82818337600083830152505050565b600061295b61295684612908565b6128ed565b90508281526020810184848401111561297757612976612888565b5b612982848285612939565b509392505050565b600082601f83011261299f5761299e612883565b5b81356129af848260208601612948565b91505092915050565b6000602082840312156129ce576129cd61255b565b5b600082013567ffffffffffffffff8111156129ec576129eb612560565b5b6129f88482850161298a565b91505092915050565b600060208284031215612a1757612a1661255b565b5b6000612a25848285016127db565b91505092915050565b612a37816125ea565b8114612a4257600080fd5b50565b600081359050612a5481612a2e565b92915050565b60008060408385031215612a7157612a7061255b565b5b6000612a7f858286016127db565b9250506020612a9085828601612a45565b9150509250929050565b600067ffffffffffffffff821115612ab557612ab461288d565b5b612abe826126a3565b9050602081019050919050565b6000612ade612ad984612a9a565b6128ed565b905082815260208101848484011115612afa57612af9612888565b5b612b05848285612939565b509392505050565b600082601f830112612b2257612b21612883565b5b8135612b32848260208601612acb565b91505092915050565b60008060008060808587031215612b5557612b5461255b565b5b6000612b63878288016127db565b9450506020612b74878288016127db565b9350506040612b8587828801612726565b925050606085013567ffffffffffffffff811115612ba657612ba5612560565b5b612bb287828801612b0d565b91505092959194509250565b60008060408385031215612bd557612bd461255b565b5b6000612be3858286016127db565b9250506020612bf4858286016127db565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612c1e57612c1d612883565b5b8235905067ffffffffffffffff811115612c3b57612c3a612bfe565b5b602083019150836020820283011115612c5757612c56612c03565b5b9250929050565b600080600060408486031215612c7757612c7661255b565b5b6000612c8586828701612726565b935050602084013567ffffffffffffffff811115612ca657612ca5612560565b5b612cb286828701612c08565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0557607f821691505b60208210811415612d1957612d18612cbe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5982612620565b9150612d6483612620565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d9d57612d9c612d1f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612de282612620565b9150612ded83612620565b925082612dfd57612dfc612da8565b5b828204905092915050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000612e3e601b8361265f565b9150612e4982612e08565b602082019050919050565b60006020820190508181036000830152612e6d81612e31565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612eaa600f8361265f565b9150612eb582612e74565b602082019050919050565b60006020820190508181036000830152612ed981612e9d565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612f16601d8361265f565b9150612f2182612ee0565b602082019050919050565b60006020820190508181036000830152612f4581612f09565b9050919050565b6000612f5782612620565b9150612f6283612620565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9757612f96612d1f565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612fd860168361265f565b9150612fe382612fa2565b602082019050919050565b6000602082019050818103600083015261300781612fcb565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000613044601e8361265f565b915061304f8261300e565b602082019050919050565b6000602082019050818103600083015261307381613037565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e7320616c6c6f776564207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b60006130d660298361265f565b91506130e18261307a565b604082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b600061311782612620565b915061312283612620565b92508282101561313557613134612d1f565b5b828203905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061317660128361265f565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006131e2601d8361265f565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b600081905092915050565b600061322e82612654565b6132388185613218565b9350613248818560208601612670565b80840191505092915050565b60006132608285613223565b915061326c8284613223565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132d460268361265f565b91506132df82613278565b604082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b600061334060138361265f565b915061334b8261330a565b602082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006133db60188361265f565b91506133e6826133a5565b602082019050919050565b6000602082019050818103600083015261340a816133ce565b9050919050565b600061341c82612620565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344f5761344e612d1f565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061349060208361265f565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134ed826134c6565b6134f781856134d1565b9350613507818560208601612670565b613510816126a3565b840191505092915050565b6000608082019050613530600083018761279a565b61353d602083018661279a565b61354a604083018561262a565b818103606083015261355c81846134e2565b905095945050505050565b60008151905061357681612591565b92915050565b6000602082840312156135925761359161255b565b5b60006135a084828501613567565b9150509291505056fea264697066735822122025e92729d44e734fb69ad31a6e77792d798bab45048069daec18c7632d58922864736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637389fbb711610123578063b88d4fde116100ab578063ea6eb8361161006f578063ea6eb83614610778578063ee0781b8146107a1578063f2fde38b146107ca578063f6c9d9e3146107f3578063fb7e6ccb1461081c5761021a565b8063b88d4fde14610681578063bbb7438d146106aa578063c87b56dd146106d3578063e0a7051514610710578063e985e9c51461073b5761021a565b80638da5cb5b116100f25780638da5cb5b146105bd57806391b7f5ed146105e857806395d89b4114610611578063a0712d681461063c578063a22cb465146106585761021a565b80637389fbb7146105275780637d8966e4146105505780638069876d1461056757806384939ac2146105925761021a565b80633ccfd60b116101a65780636352211e116101755780636352211e146104545780636817c76c1461049157806370a08231146104bc578063715018a6146104f957806371e3500c146105105761021a565b80633ccfd60b146103c257806342842e0e146103d957806355f804b31461040257806356a87caa1461042b5761021a565b8063095ea7b3116101ed578063095ea7b3146102ef57806318160ddd1461031857806322f3e2d41461034357806323b872dd1461036e57806332cb6b0c146103975761021a565b806301ffc9a71461021f5780630691987b1461025c57806306fdde0314610287578063081812fc146102b2575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906125bd565b610845565b6040516102539190612605565b60405180910390f35b34801561026857600080fd5b506102716108d7565b60405161027e9190612639565b60405180910390f35b34801561029357600080fd5b5061029c6108dd565b6040516102a991906126ed565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d4919061273b565b61096f565b6040516102e691906127a9565b60405180910390f35b3480156102fb57600080fd5b50610316600480360381019061031191906127f0565b6109ee565b005b34801561032457600080fd5b5061032d610b32565b60405161033a9190612639565b60405180910390f35b34801561034f57600080fd5b50610358610b49565b6040516103659190612605565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612830565b610b5c565b005b3480156103a357600080fd5b506103ac610e81565b6040516103b99190612639565b60405180910390f35b3480156103ce57600080fd5b506103d7610e87565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612830565b610f4f565b005b34801561040e57600080fd5b50610429600480360381019061042491906129b8565b610f6f565b005b34801561043757600080fd5b50610452600480360381019061044d919061273b565b610fc8565b005b34801561046057600080fd5b5061047b6004803603810190610476919061273b565b611011565b60405161048891906127a9565b60405180910390f35b34801561049d57600080fd5b506104a6611023565b6040516104b39190612639565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190612a01565b611029565b6040516104f09190612639565b60405180910390f35b34801561050557600080fd5b5061050e6110e2565b005b34801561051c57600080fd5b506105256110f6565b005b34801561053357600080fd5b5061054e6004803603810190610549919061273b565b61118a565b005b34801561055c57600080fd5b506105656111d3565b005b34801561057357600080fd5b5061057c61123e565b6040516105899190612639565b60405180910390f35b34801561059e57600080fd5b506105a7611244565b6040516105b49190612639565b60405180910390f35b3480156105c957600080fd5b506105d261124a565b6040516105df91906127a9565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a919061273b565b611274565b005b34801561061d57600080fd5b506106266112bd565b60405161063391906126ed565b60405180910390f35b6106566004803603810190610651919061273b565b61134f565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612a5a565b6115fe565b005b34801561068d57600080fd5b506106a860048036038101906106a39190612b3b565b611776565b005b3480156106b657600080fd5b506106d160048036038101906106cc919061273b565b6117e9565b005b3480156106df57600080fd5b506106fa60048036038101906106f5919061273b565b611832565b60405161070791906126ed565b60405180910390f35b34801561071c57600080fd5b506107256118d1565b6040516107329190612639565b60405180910390f35b34801561074757600080fd5b50610762600480360381019061075d9190612bbe565b6118d7565b60405161076f9190612605565b60405180910390f35b34801561078457600080fd5b5061079f600480360381019061079a919061273b565b61196b565b005b3480156107ad57600080fd5b506107c860048036038101906107c3919061273b565b6119b4565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190612a01565b6119fd565b005b3480156107ff57600080fd5b5061081a6004803603810190610815919061273b565b611a81565b005b34801561082857600080fd5b50610843600480360381019061083e9190612c5e565b611aca565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60135481565b6060600280546108ec90612ced565b80601f016020809104026020016040519081016040528092919081815260200182805461091890612ced565b80156109655780601f1061093a57610100808354040283529160200191610965565b820191906000526020600020905b81548152906001019060200180831161094857829003601f168201915b5050505050905090565b600061097a82611c9a565b6109b0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109f982611011565b90508073ffffffffffffffffffffffffffffffffffffffff16610a1a611cf9565b73ffffffffffffffffffffffffffffffffffffffff1614610a7d57610a4681610a41611cf9565b6118d7565b610a7c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b3c611d01565b6001546000540303905090565b600a60009054906101000a900460ff1681565b6000610b6782611d06565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bce576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bda84611dd4565b91509150610bf08187610beb611cf9565b611dfb565b610c3c57610c0586610c00611cf9565b6118d7565b610c3b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ca3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb08686866001611e3f565b8015610cbb57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8985610d65888887611e45565b7c020000000000000000000000000000000000000000000000000000000017611e6d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e11576000600185019050600060046000838152602001908152602001600020541415610e0f576000548114610e0e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e798686866001611e98565b505050505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16610ea661124a565b73ffffffffffffffffffffffffffffffffffffffff1614610ec657600080fd5b6000479050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6127108084610f169190612d4e565b610f209190612dd7565b9081150290604051600060405180830381858888f19350505050158015610f4b573d6000803e3d6000fd5b5050565b610f6a83838360405180602001604052806000815250611776565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16610f8e61124a565b73ffffffffffffffffffffffffffffffffffffffff1614610fae57600080fd5b8060099080519060200190610fc49291906124ae565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16610fe761124a565b73ffffffffffffffffffffffffffffffffffffffff161461100757600080fd5b8060108190555050565b600061101c82611d06565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611091576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110ea611e9e565b6110f46000611f1c565b565b3373ffffffffffffffffffffffffffffffffffffffff1661111561124a565b73ffffffffffffffffffffffffffffffffffffffff161461113557600080fd5b601054600f54111561117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612e54565b60405180910390fd5b61118833600e54611fe2565b565b3373ffffffffffffffffffffffffffffffffffffffff166111a961124a565b73ffffffffffffffffffffffffffffffffffffffff16146111c957600080fd5b80600c8190555050565b3373ffffffffffffffffffffffffffffffffffffffff166111f261124a565b73ffffffffffffffffffffffffffffffffffffffff161461121257600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b600d5481565b60125481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff1661129361124a565b73ffffffffffffffffffffffffffffffffffffffff16146112b357600080fd5b80600b8190555050565b6060600380546112cc90612ced565b80601f01602080910402602001604051908101604052809291908181526020018280546112f890612ced565b80156113455780601f1061131a57610100808354040283529160200191611345565b820191906000526020600020905b81548152906001019060200180831161132857829003601f168201915b5050505050905090565b600c5461135a610b32565b111561139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290612ec0565b60405180910390fd5b60006113a5610b32565b90506113af61124a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115f057600a60009054906101000a900460ff16611430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142790612f2c565b60405180910390fd5b600c54828261143f9190612f4c565b1115611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790612fee565b60405180910390fd5b6011548211156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc9061305a565b60405180910390fd5b601254826114d233611029565b6114dc9190612f4c565b111561151d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611514906130ec565b60405180910390fd5b60135461152933611029565b1080156115375750600d5481105b1561159e576013548261154a919061310c565b600b546115579190612d4e565b341015611599576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115909061318c565b60405180910390fd5b6115ef565b81600b546115ac9190612d4e565b3410156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e5906131f8565b60405180910390fd5b5b5b6115fa3383611fe2565b5050565b611606611cf9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561166b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611678611cf9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611725611cf9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176a9190612605565b60405180910390a35050565b611781848484610b5c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e3576117ac84848484612000565b6117e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff1661180861124a565b73ffffffffffffffffffffffffffffffffffffffff161461182857600080fd5b8060118190555050565b606061183d82611c9a565b611873576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061187d612151565b905060008151141561189e57604051806020016040528060008152506118c9565b806118a8846121e3565b6040516020016118b9929190613254565b6040516020818303038152906040525b915050919050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff1661198a61124a565b73ffffffffffffffffffffffffffffffffffffffff16146119aa57600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff166119d361124a565b73ffffffffffffffffffffffffffffffffffffffff16146119f357600080fd5b8060138190555050565b611a05611e9e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6c906132ea565b60405180910390fd5b611a7e81611f1c565b50565b3373ffffffffffffffffffffffffffffffffffffffff16611aa061124a565b73ffffffffffffffffffffffffffffffffffffffff1614611ac057600080fd5b80600e8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611ae961124a565b73ffffffffffffffffffffffffffffffffffffffff1614611b0957600080fd5b6000611b13610b32565b9050600c54811115611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190613356565b60405180910390fd5b600c548482611b699190612f4c565b1115611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190612fee565b60405180910390fd5b60005b83839050811015611c9357600073ffffffffffffffffffffffffffffffffffffffff16848483818110611be357611be2613376565b5b9050602002016020810190611bf89190612a01565b73ffffffffffffffffffffffffffffffffffffffff161415611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c46906133f1565b60405180910390fd5b611c80848483818110611c6557611c64613376565b5b9050602002016020810190611c7a9190612a01565b86611fe2565b8080611c8b90613411565b915050611bad565b5050505050565b600081611ca5611d01565b11158015611cb4575060005482105b8015611cf2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d15611d01565b11611d9d57600054811015611d9c5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d9a575b6000811415611d90576004600083600190039350838152602001908152602001600020549050611d65565b8092505050611dcf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5c868684612233565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611ea661223c565b73ffffffffffffffffffffffffffffffffffffffff16611ec461124a565b73ffffffffffffffffffffffffffffffffffffffff1614611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f11906134a6565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ffc828260405180602001604052806000815250612244565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612026611cf9565b8786866040518563ffffffff1660e01b8152600401612048949392919061351b565b6020604051808303816000875af192505050801561208457506040513d601f19601f82011682018060405250810190612081919061357c565b60015b6120fe573d80600081146120b4576040519150601f19603f3d011682016040523d82523d6000602084013e6120b9565b606091505b506000815114156120f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461216090612ced565b80601f016020809104026020016040519081016040528092919081815260200182805461218c90612ced565b80156121d95780601f106121ae576101008083540402835291602001916121d9565b820191906000526020600020905b8154815290600101906020018083116121bc57829003601f168201915b5050505050905090565b606060806040510190508060405280825b60011561221f57600183039250600a81066030018353600a810490508061221a5761221f565b6121f4565b508181036020830392508083525050919050565b60009392505050565b600033905090565b61224e83836122e1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122dc57600080549050600083820390505b61228e6000868380600101945086612000565b6122c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061227b5781600054146122d957600080fd5b50505b505050565b6000805490506000821415612322576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61232f6000848385611e3f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123a6836123976000866000611e45565b6123a08561249e565b17611e6d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461244757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061240c565b506000821415612483576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124996000848385611e98565b505050565b60006001821460e11b9050919050565b8280546124ba90612ced565b90600052602060002090601f0160209004810192826124dc5760008555612523565b82601f106124f557805160ff1916838001178555612523565b82800160010185558215612523579182015b82811115612522578251825591602001919060010190612507565b5b5090506125309190612534565b5090565b5b8082111561254d576000816000905550600101612535565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61259a81612565565b81146125a557600080fd5b50565b6000813590506125b781612591565b92915050565b6000602082840312156125d3576125d261255b565b5b60006125e1848285016125a8565b91505092915050565b60008115159050919050565b6125ff816125ea565b82525050565b600060208201905061261a60008301846125f6565b92915050565b6000819050919050565b61263381612620565b82525050565b600060208201905061264e600083018461262a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561268e578082015181840152602081019050612673565b8381111561269d576000848401525b50505050565b6000601f19601f8301169050919050565b60006126bf82612654565b6126c9818561265f565b93506126d9818560208601612670565b6126e2816126a3565b840191505092915050565b6000602082019050818103600083015261270781846126b4565b905092915050565b61271881612620565b811461272357600080fd5b50565b6000813590506127358161270f565b92915050565b6000602082840312156127515761275061255b565b5b600061275f84828501612726565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061279382612768565b9050919050565b6127a381612788565b82525050565b60006020820190506127be600083018461279a565b92915050565b6127cd81612788565b81146127d857600080fd5b50565b6000813590506127ea816127c4565b92915050565b600080604083850312156128075761280661255b565b5b6000612815858286016127db565b925050602061282685828601612726565b9150509250929050565b6000806000606084860312156128495761284861255b565b5b6000612857868287016127db565b9350506020612868868287016127db565b925050604061287986828701612726565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128c5826126a3565b810181811067ffffffffffffffff821117156128e4576128e361288d565b5b80604052505050565b60006128f7612551565b905061290382826128bc565b919050565b600067ffffffffffffffff8211156129235761292261288d565b5b61292c826126a3565b9050602081019050919050565b82818337600083830152505050565b600061295b61295684612908565b6128ed565b90508281526020810184848401111561297757612976612888565b5b612982848285612939565b509392505050565b600082601f83011261299f5761299e612883565b5b81356129af848260208601612948565b91505092915050565b6000602082840312156129ce576129cd61255b565b5b600082013567ffffffffffffffff8111156129ec576129eb612560565b5b6129f88482850161298a565b91505092915050565b600060208284031215612a1757612a1661255b565b5b6000612a25848285016127db565b91505092915050565b612a37816125ea565b8114612a4257600080fd5b50565b600081359050612a5481612a2e565b92915050565b60008060408385031215612a7157612a7061255b565b5b6000612a7f858286016127db565b9250506020612a9085828601612a45565b9150509250929050565b600067ffffffffffffffff821115612ab557612ab461288d565b5b612abe826126a3565b9050602081019050919050565b6000612ade612ad984612a9a565b6128ed565b905082815260208101848484011115612afa57612af9612888565b5b612b05848285612939565b509392505050565b600082601f830112612b2257612b21612883565b5b8135612b32848260208601612acb565b91505092915050565b60008060008060808587031215612b5557612b5461255b565b5b6000612b63878288016127db565b9450506020612b74878288016127db565b9350506040612b8587828801612726565b925050606085013567ffffffffffffffff811115612ba657612ba5612560565b5b612bb287828801612b0d565b91505092959194509250565b60008060408385031215612bd557612bd461255b565b5b6000612be3858286016127db565b9250506020612bf4858286016127db565b9150509250929050565b600080fd5b600080fd5b60008083601f840112612c1e57612c1d612883565b5b8235905067ffffffffffffffff811115612c3b57612c3a612bfe565b5b602083019150836020820283011115612c5757612c56612c03565b5b9250929050565b600080600060408486031215612c7757612c7661255b565b5b6000612c8586828701612726565b935050602084013567ffffffffffffffff811115612ca657612ca5612560565b5b612cb286828701612c08565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d0557607f821691505b60208210811415612d1957612d18612cbe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d5982612620565b9150612d6483612620565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d9d57612d9c612d1f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612de282612620565b9150612ded83612620565b925082612dfd57612dfc612da8565b5b828204905092915050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000612e3e601b8361265f565b9150612e4982612e08565b602082019050919050565b60006020820190508181036000830152612e6d81612e31565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612eaa600f8361265f565b9150612eb582612e74565b602082019050919050565b60006020820190508181036000830152612ed981612e9d565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b6000612f16601d8361265f565b9150612f2182612ee0565b602082019050919050565b60006020820190508181036000830152612f4581612f09565b9050919050565b6000612f5782612620565b9150612f6283612620565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9757612f96612d1f565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612fd860168361265f565b9150612fe382612fa2565b602082019050919050565b6000602082019050818103600083015261300781612fcb565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000613044601e8361265f565b915061304f8261300e565b602082019050919050565b6000602082019050818103600083015261307381613037565b9050919050565b7f45786365656473206d6178696d756d20746f6b656e7320616c6c6f776564207060008201527f65722077616c6c65740000000000000000000000000000000000000000000000602082015250565b60006130d660298361265f565b91506130e18261307a565b604082019050919050565b60006020820190508181036000830152613105816130c9565b9050919050565b600061311782612620565b915061312283612620565b92508282101561313557613134612d1f565b5b828203905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061317660128361265f565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b60006131e2601d8361265f565b91506131ed826131ac565b602082019050919050565b60006020820190508181036000830152613211816131d5565b9050919050565b600081905092915050565b600061322e82612654565b6132388185613218565b9350613248818560208601612670565b80840191505092915050565b60006132608285613223565b915061326c8284613223565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132d460268361265f565b91506132df82613278565b604082019050919050565b60006020820190508181036000830152613303816132c7565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b600061334060138361265f565b915061334b8261330a565b602082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006133db60188361265f565b91506133e6826133a5565b602082019050919050565b6000602082019050818103600083015261340a816133ce565b9050919050565b600061341c82612620565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561344f5761344e612d1f565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061349060208361265f565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134ed826134c6565b6134f781856134d1565b9350613507818560208601612670565b613510816126a3565b840191505092915050565b6000608082019050613530600083018761279a565b61353d602083018661279a565b61354a604083018561262a565b818103606083015261355c81846134e2565b905095945050505050565b60008151905061357681612591565b92915050565b6000602082840312156135925761359161255b565b5b60006135a084828501613567565b9150509291505056fea264697066735822122025e92729d44e734fb69ad31a6e77792d798bab45048069daec18c7632d58922864736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54490:3613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54936:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18681:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54564:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54638:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57947:153;;;;;;;;;;;;;:::i;:::-;;36033:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55531:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55739:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24323:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54599:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19865:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;56473:176;;;;;;;;;;;;;:::i;:::-;;56354:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55448:77;;;;;;;;;;;;;:::i;:::-;;54676:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54887:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23106:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57102:839;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29971:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36816:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55951:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23316:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54836:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56082:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56215:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55638:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56655:441;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22028:639;22113:4;22452:10;22437:25;;:11;:25;;;;:102;;;;22529:10;22514:25;;:11;:25;;;;22437:102;:179;;;;22606:10;22591:25;;:11;:25;;;;22437:179;22417:199;;22028:639;;;:::o;54936:46::-;;;;:::o;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;;;;;;;;;;;;;29509:64;29593:15;:24;29609:7;29593:24;;;;;;;;;;;:30;;;;;;;;;;;;29586:37;;29413:218;;;:::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;;29007:5;28984:28;;:19;:17;:19::i;:::-;:28;;;28980:175;;29032:44;29049:5;29056:19;:17;:19::i;:::-;29032:16;:44::i;:::-;29027:128;;29104:35;;;;;;;;;;;;;;29027:128;28980:175;29200:2;29167:15;:24;29183:7;29167:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29238:7;29234:2;29218:28;;29227:5;29218:28;;;;;;;;;;;;28924:330;28854:400;;:::o;18681:323::-;18742:7;18970:15;:13;:15::i;:::-;18955:12;;18939:13;;:28;:46;18932:53;;18681:323;:::o;54564:28::-;;;;;;;;;;;;;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;33328:45;;33344:19;33328:45;;;33324:86;;33382:28;;;;;;;;;;;;;;33324:86;33424:27;33453:23;33480:35;33507:7;33480:26;:35::i;:::-;33423:92;;;;33615:68;33640:15;33657:4;33663:19;:17;:19::i;:::-;33615:24;:68::i;:::-;33610:180;;33703:43;33720:4;33726:19;:17;:19::i;:::-;33703:16;:43::i;:::-;33698:92;;33755:35;;;;;;;;;;;;;;33698:92;33610:180;33821:1;33807:16;;:2;:16;;;33803:52;;;33832:23;;;;;;;;;;;;;;33803:52;33868:43;33890:4;33896:2;33900:7;33909:1;33868:21;:43::i;:::-;34004:15;34001:160;;;34144:1;34123:19;34116:30;34001:160;34541:18;:24;34560:4;34541:24;;;;;;;;;;;;;;;;34539:26;;;;;;;;;;;;34610:18;:22;34629:2;34610:22;;;;;;;;;;;;;;;;34608:24;;;;;;;;;;;34932:146;34969:2;35018:45;35033:4;35039:2;35043:19;35018:14;:45::i;:::-;15080:8;34990:73;34932:18;:146::i;:::-;34903:17;:26;34921:7;34903:26;;;;;;;;;;;:175;;;;35249:1;15080:8;35198:19;:47;:52;35194:627;;;35271:19;35303:1;35293:7;:11;35271:33;;35460:1;35426:17;:30;35444:11;35426:30;;;;;;;;;;;;:35;35422:384;;;35564:13;;35549:11;:28;35545:242;;35744:19;35711:17;:30;35729:11;35711:30;;;;;;;;;;;:52;;;;35545:242;35422:384;35252:569;35194:627;35868:7;35864:2;35849:27;;35858:4;35849:27;;;;;;;;;;;;35887:42;35908:4;35914:2;35918:7;35927:1;35887:20;:42::i;:::-;33243:2694;;;33120:2817;;;:::o;54638:33::-;;;;:::o;57947:153::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;57998:12:::1;58013:21;57998:36;;58049:8;;;;;;;;;;;58041:26;;:53;58088:5;58079::::0;58069:7:::1;:15;;;;:::i;:::-;58068:25;;;;:::i;:::-;58041:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57991:109;57947:153::o:0;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;55531:101::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;55619:7:::1;55603:13;:23;;;;;;;;;;;;:::i;:::-;;55531:101:::0;:::o;55739:92::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;55822:3:::1;55804:15;:21;;;;55739:92:::0;:::o;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;:::-;24415:52;;24323:152;;;:::o;54599:34::-;;;;:::o;19865:233::-;19937:7;19978:1;19961:19;;:5;:19;;;19957:60;;;19989:28;;;;;;;;;;;;;;19957:60;14024:13;20035:18;:25;20054:5;20035:25;;;;;;;;;;;;;;;;:55;20028:62;;19865:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;56473:176::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;56549:15:::1;;56532:13;;:32;;56524:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;56606:37;56616:10;56628:14;;56606:9;:37::i;:::-;56473:176::o:0;56354:113::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;56448:13:::1;56435:10;:26;;;;56354:113:::0;:::o;55448:77::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;55511:8:::1;;;;;;;;;;;55510:9;55499:8;;:20;;;;;;;;;;;;;;;;;;55448:77::o:0;54676:34::-;;;;:::o;54887:44::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;55353:::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;55428:6:::1;55416:9;:18;;;;55353:87:::0;:::o;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:104;:::o;57102:839::-;55220:10;;55203:13;:11;:13::i;:::-;:27;;55195:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57165:17:::1;57185:13;:11;:13::i;:::-;57165:33;;57225:7;:5;:7::i;:::-;57211:21;;:10;:21;;;57207:691;;57251:8;;;;;;;;;;;57243:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;57332:10;;57322:6;57310:9;:18;;;;:::i;:::-;:32;;57302:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;57396:27;;57386:6;:37;;57378:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;57508:25;;57498:6;57474:21;57484:10;57474:9;:21::i;:::-;:30;;;;:::i;:::-;:59;;57466:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;57616:27;;57592:21;57602:10;57592:9;:21::i;:::-;:51;:82;;;;;57659:15;;57647:9;:27;57592:82;57589:302;;;57730:27;;57721:6;:36;;;;:::i;:::-;57710:9;;:48;;;;:::i;:::-;57697:9;:61;;57689:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;57589:302;;;57841:6;57829:9;;:18;;;;:::i;:::-;57816:9;:31;;57808:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57589:302;57207:691;57906:29;57916:10;57928:6;57906:9;:29::i;:::-;57158:783;57102:839:::0;:::o;29971:308::-;30082:19;:17;:19::i;:::-;30070:31;;:8;:31;;;30066:61;;;30110:17;;;;;;;;;;;;;;30066:61;30192:8;30140:18;:39;30159:19;:17;:19::i;:::-;30140:39;;;;;;;;;;;;;;;:49;30180:8;30140:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30252:8;30216:55;;30231:19;:17;:19::i;:::-;30216:55;;;30262:8;30216:55;;;;;;:::i;:::-;;;;;;;;29971:308;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;37047:1;37029:2;:14;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;;;;;;;;;;;;;37063:145;37025:183;36816:399;;;;:::o;55951:125::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;56064:6:::1;56034:27;:36;;;;55951:125:::0;:::o;23316:318::-;23389:13;23420:16;23428:7;23420;:16::i;:::-;23415:59;;23445:29;;;;;;;;;;;;;;23415:59;23487:21;23511:10;:8;:10::i;:::-;23487:34;;23564:1;23545:7;23539:21;:26;;:87;;;;;;;;;;;;;;;;;23592:7;23601:18;23611:7;23601:9;:18::i;:::-;23575:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23539:87;23532:94;;;23316:318;;;:::o;54836:46::-;;;;:::o;30436:164::-;30533:4;30557:18;:25;30576:5;30557:25;;;;;;;;;;;;;;;:35;30583:8;30557:35;;;;;;;;;;;;;;;;;;;;;;;;;30550:42;;30436:164;;;;:::o;56082:127::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;56197:6:::1;56169:25;:34;;;;56082:127:::0;:::o;56215:133::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;56336:6:::1;56306:27;:36;;;;56215:133:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;55638:95::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;55724:3:::1;55707:14;:20;;;;55638:95:::0;:::o;56655:441::-;55322:10;55311:21;;:7;:5;:7::i;:::-;:21;;;55303:30;;;;;;56754:14:::1;56771:13;:11;:13::i;:::-;56754:30;;56811:10;;56801:6;:20;;56793:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;56879:10;;56869:6;56860;:15;;;;:::i;:::-;:29;;56852:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;56930:9;56925:166;56949:9;;:16;;56945:1;:20;56925:166;;;57013:1;56989:26;;:9;;56999:1;56989:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;56981:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;57053:30;57063:9;;57073:1;57063:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57076:6;57053:9;:30::i;:::-;56967:3;;;;;:::i;:::-;;;;56925:166;;;;56747:349;56655:441:::0;;;:::o;30858:282::-;30923:4;30979:7;30960:15;:13;:15::i;:::-;:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;;31112:1;14800:8;31064:17;:26;31082:7;31064:26;;;;;;;;;;;;:44;:49;30960:153;30940:173;;30858:282;;;:::o;52624:105::-;52684:7;52711:10;52704:17;;52624:105;:::o;18197:92::-;18253:7;18197:92;:::o;25478:1275::-;25545:7;25565:12;25580:7;25565:22;;25648:4;25629:15;:13;:15::i;:::-;:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:17;:23;25755:4;25737:23;;;;;;;;;;;;25720:40;;25854:1;14800:8;25826:6;:24;:29;25822:845;;;26491:113;26508:1;26498:6;:11;26491:113;;;26551:17;:25;26569:6;;;;;;;26551:25;;;;;;;;;;;;26542:34;;26491:113;;;26637:6;26630:13;;;;;;25822:845;25697:989;25671:1015;25625:1061;26714:31;;;;;;;;;;;;;;25478:1275;;;;:::o;32021:479::-;32123:27;32152:23;32193:38;32234:15;:24;32250:7;32234:24;;;;;;;;;;;32193:65;;32405:18;32382:41;;32462:19;32456:26;32437:45;;32367:126;32021:479;;;:::o;31249:659::-;31398:11;31563:16;31556:5;31552:28;31543:37;;31723:16;31712:9;31708:32;31695:45;;31873:15;31862:9;31859:30;31851:5;31840:9;31837:20;31834:56;31824:66;;31249:659;;;;;:::o;37877:159::-;;;;;:::o;51933:311::-;52068:7;52088:16;15204:3;52114:19;:41;;52088:68;;15204:3;52182:31;52193:4;52199:2;52203:9;52182:10;:31::i;:::-;52174:40;;:62;;52167:69;;;51933:311;;;;;:::o;27301:450::-;27381:14;27549:16;27542:5;27538:28;27529:37;;27726:5;27712:11;27687:23;27683:41;27680:52;27673:5;27670:63;27660:73;;27301:450;;;;:::o;38701:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;46456:112::-;46533:27;46543:2;46547:8;46533:27;;;;;;;;;;;;:9;:27::i;:::-;46456:112;;:::o;39299:716::-;39462:4;39508:2;39483:45;;;39529:19;:17;:19::i;:::-;39550:4;39556:7;39565:5;39483:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39783:1;39766:6;:13;:18;39762:235;;;39812:40;;;;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;39652:54;;;39642:64;;;:6;:64;;;;39635:71;;;39299:716;;;;;;:::o;55837:108::-;55897:13;55926;55919:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55837:108;:::o;52831:1581::-;52896:17;53321:4;53314;53308:11;53304:22;53297:29;;53413:3;53407:4;53400:17;53519:3;53758:5;53740:428;53766:1;53740:428;;;53806:1;53801:3;53797:11;53790:18;;53977:2;53971:4;53967:13;53963:2;53959:22;53954:3;53946:36;54071:2;54065:4;54061:13;54053:21;;54138:4;54128:25;;54146:5;;54128:25;53740:428;;;53744:21;54207:3;54202;54198:13;54322:4;54317:3;54313:14;54306:21;;54387:6;54382:3;54375:19;52935:1470;;52831:1581;;;:::o;51634:147::-;51771:6;51634:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;45683:689::-;45814:19;45820:2;45824:8;45814:5;:19::i;:::-;45893:1;45875:2;:14;;;:19;45871:483;;45915:11;45929:13;;45915:27;;45961:13;45983:8;45977:3;:14;45961:30;;46010:233;46041:62;46080:1;46084:2;46088:7;;;;;;46097:5;46041:30;:62::i;:::-;46036:167;;46139:40;;;;;;;;;;;;;;46036:167;46238:3;46230:5;:11;46010:233;;46325:3;46308:13;;:20;46304:34;;46330:8;;;46304:34;45896:458;;45871:483;45683:689;;;:::o;40477:2454::-;40550:20;40573:13;;40550:36;;40613:1;40601:8;:13;40597:44;;;40623:18;;;;;;;;;;;;;;40597:44;40654:61;40684:1;40688:2;40692:12;40706:8;40654:21;:61::i;:::-;41198:1;14162:2;41168:1;:26;;41167:32;41155:8;:45;41129:18;:22;41148:2;41129:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41477:139;41514:2;41568:33;41591:1;41595:2;41599:1;41568:14;:33::i;:::-;41535:30;41556:8;41535:20;:30::i;:::-;:66;41477:18;:139::i;:::-;41443:17;:31;41461:12;41443:31;;;;;;;;;;;:173;;;;41633:16;41664:11;41693:8;41678:12;:23;41664:37;;41948:16;41944:2;41940:25;41928:37;;42320:12;42280:8;42239:1;42177:25;42118:1;42057;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42530:7;42526:15;42515:26;;42385:346;;;42389:77;42776:1;42764:8;:13;42760:45;;;42786:19;;;;;;;;;;;;;;42760:45;42838:3;42822:13;:19;;;;40903:1950;;42863:60;42892:1;42896:2;42900:12;42914:8;42863:20;:60::i;:::-;40539:2392;40477:2454;;:::o;27853:324::-;27923:14;28156:1;28146:8;28143:15;28117:24;28113:46;28103:56;;27853:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:117::-;12230:1;12227;12220:12;12244:117;12353:1;12350;12343:12;12384:568;12457:8;12467:6;12517:3;12510:4;12502:6;12498:17;12494:27;12484:122;;12525:79;;:::i;:::-;12484:122;12638:6;12625:20;12615:30;;12668:18;12660:6;12657:30;12654:117;;;12690:79;;:::i;:::-;12654:117;12804:4;12796:6;12792:17;12780:29;;12858:3;12850:4;12842:6;12838:17;12828:8;12824:32;12821:41;12818:128;;;12865:79;;:::i;:::-;12818:128;12384:568;;;;;:::o;12958:704::-;13053:6;13061;13069;13118:2;13106:9;13097:7;13093:23;13089:32;13086:119;;;13124:79;;:::i;:::-;13086:119;13244:1;13269:53;13314:7;13305:6;13294:9;13290:22;13269:53;:::i;:::-;13259:63;;13215:117;13399:2;13388:9;13384:18;13371:32;13430:18;13422:6;13419:30;13416:117;;;13452:79;;:::i;:::-;13416:117;13565:80;13637:7;13628:6;13617:9;13613:22;13565:80;:::i;:::-;13547:98;;;;13342:313;12958:704;;;;;:::o;13668:180::-;13716:77;13713:1;13706:88;13813:4;13810:1;13803:15;13837:4;13834:1;13827:15;13854:320;13898:6;13935:1;13929:4;13925:12;13915:22;;13982:1;13976:4;13972:12;14003:18;13993:81;;14059:4;14051:6;14047:17;14037:27;;13993:81;14121:2;14113:6;14110:14;14090:18;14087:38;14084:84;;;14140:18;;:::i;:::-;14084:84;13905:269;13854:320;;;:::o;14180:180::-;14228:77;14225:1;14218:88;14325:4;14322:1;14315:15;14349:4;14346:1;14339:15;14366:348;14406:7;14429:20;14447:1;14429:20;:::i;:::-;14424:25;;14463:20;14481:1;14463:20;:::i;:::-;14458:25;;14651:1;14583:66;14579:74;14576:1;14573:81;14568:1;14561:9;14554:17;14550:105;14547:131;;;14658:18;;:::i;:::-;14547:131;14706:1;14703;14699:9;14688:20;;14366:348;;;;:::o;14720:180::-;14768:77;14765:1;14758:88;14865:4;14862:1;14855:15;14889:4;14886:1;14879:15;14906:185;14946:1;14963:20;14981:1;14963:20;:::i;:::-;14958:25;;14997:20;15015:1;14997:20;:::i;:::-;14992:25;;15036:1;15026:35;;15041:18;;:::i;:::-;15026:35;15083:1;15080;15076:9;15071:14;;14906:185;;;;:::o;15097:177::-;15237:29;15233:1;15225:6;15221:14;15214:53;15097:177;:::o;15280:366::-;15422:3;15443:67;15507:2;15502:3;15443:67;:::i;:::-;15436:74;;15519:93;15608:3;15519:93;:::i;:::-;15637:2;15632:3;15628:12;15621:19;;15280:366;;;:::o;15652:419::-;15818:4;15856:2;15845:9;15841:18;15833:26;;15905:9;15899:4;15895:20;15891:1;15880:9;15876:17;15869:47;15933:131;16059:4;15933:131;:::i;:::-;15925:139;;15652:419;;;:::o;16077:165::-;16217:17;16213:1;16205:6;16201:14;16194:41;16077:165;:::o;16248:366::-;16390:3;16411:67;16475:2;16470:3;16411:67;:::i;:::-;16404:74;;16487:93;16576:3;16487:93;:::i;:::-;16605:2;16600:3;16596:12;16589:19;;16248:366;;;:::o;16620:419::-;16786:4;16824:2;16813:9;16809:18;16801:26;;16873:9;16867:4;16863:20;16859:1;16848:9;16844:17;16837:47;16901:131;17027:4;16901:131;:::i;:::-;16893:139;;16620:419;;;:::o;17045:179::-;17185:31;17181:1;17173:6;17169:14;17162:55;17045:179;:::o;17230:366::-;17372:3;17393:67;17457:2;17452:3;17393:67;:::i;:::-;17386:74;;17469:93;17558:3;17469:93;:::i;:::-;17587:2;17582:3;17578:12;17571:19;;17230:366;;;:::o;17602:419::-;17768:4;17806:2;17795:9;17791:18;17783:26;;17855:9;17849:4;17845:20;17841:1;17830:9;17826:17;17819:47;17883:131;18009:4;17883:131;:::i;:::-;17875:139;;17602:419;;;:::o;18027:305::-;18067:3;18086:20;18104:1;18086:20;:::i;:::-;18081:25;;18120:20;18138:1;18120:20;:::i;:::-;18115:25;;18274:1;18206:66;18202:74;18199:1;18196:81;18193:107;;;18280:18;;:::i;:::-;18193:107;18324:1;18321;18317:9;18310:16;;18027:305;;;;:::o;18338:172::-;18478:24;18474:1;18466:6;18462:14;18455:48;18338:172;:::o;18516:366::-;18658:3;18679:67;18743:2;18738:3;18679:67;:::i;:::-;18672:74;;18755:93;18844:3;18755:93;:::i;:::-;18873:2;18868:3;18864:12;18857:19;;18516:366;;;:::o;18888:419::-;19054:4;19092:2;19081:9;19077:18;19069:26;;19141:9;19135:4;19131:20;19127:1;19116:9;19112:17;19105:47;19169:131;19295:4;19169:131;:::i;:::-;19161:139;;18888:419;;;:::o;19313:180::-;19453:32;19449:1;19441:6;19437:14;19430:56;19313:180;:::o;19499:366::-;19641:3;19662:67;19726:2;19721:3;19662:67;:::i;:::-;19655:74;;19738:93;19827:3;19738:93;:::i;:::-;19856:2;19851:3;19847:12;19840:19;;19499:366;;;:::o;19871:419::-;20037:4;20075:2;20064:9;20060:18;20052:26;;20124:9;20118:4;20114:20;20110:1;20099:9;20095:17;20088:47;20152:131;20278:4;20152:131;:::i;:::-;20144:139;;19871:419;;;:::o;20296:228::-;20436:34;20432:1;20424:6;20420:14;20413:58;20505:11;20500:2;20492:6;20488:15;20481:36;20296:228;:::o;20530:366::-;20672:3;20693:67;20757:2;20752:3;20693:67;:::i;:::-;20686:74;;20769:93;20858:3;20769:93;:::i;:::-;20887:2;20882:3;20878:12;20871:19;;20530:366;;;:::o;20902:419::-;21068:4;21106:2;21095:9;21091:18;21083:26;;21155:9;21149:4;21145:20;21141:1;21130:9;21126:17;21119:47;21183:131;21309:4;21183:131;:::i;:::-;21175:139;;20902:419;;;:::o;21327:191::-;21367:4;21387:20;21405:1;21387:20;:::i;:::-;21382:25;;21421:20;21439:1;21421:20;:::i;:::-;21416:25;;21460:1;21457;21454:8;21451:34;;;21465:18;;:::i;:::-;21451:34;21510:1;21507;21503:9;21495:17;;21327:191;;;;:::o;21524:168::-;21664:20;21660:1;21652:6;21648:14;21641:44;21524:168;:::o;21698:366::-;21840:3;21861:67;21925:2;21920:3;21861:67;:::i;:::-;21854:74;;21937:93;22026:3;21937:93;:::i;:::-;22055:2;22050:3;22046:12;22039:19;;21698:366;;;:::o;22070:419::-;22236:4;22274:2;22263:9;22259:18;22251:26;;22323:9;22317:4;22313:20;22309:1;22298:9;22294:17;22287:47;22351:131;22477:4;22351:131;:::i;:::-;22343:139;;22070:419;;;:::o;22495:179::-;22635:31;22631:1;22623:6;22619:14;22612:55;22495:179;:::o;22680:366::-;22822:3;22843:67;22907:2;22902:3;22843:67;:::i;:::-;22836:74;;22919:93;23008:3;22919:93;:::i;:::-;23037:2;23032:3;23028:12;23021:19;;22680:366;;;:::o;23052:419::-;23218:4;23256:2;23245:9;23241:18;23233:26;;23305:9;23299:4;23295:20;23291:1;23280:9;23276:17;23269:47;23333:131;23459:4;23333:131;:::i;:::-;23325:139;;23052:419;;;:::o;23477:148::-;23579:11;23616:3;23601:18;;23477:148;;;;:::o;23631:377::-;23737:3;23765:39;23798:5;23765:39;:::i;:::-;23820:89;23902:6;23897:3;23820:89;:::i;:::-;23813:96;;23918:52;23963:6;23958:3;23951:4;23944:5;23940:16;23918:52;:::i;:::-;23995:6;23990:3;23986:16;23979:23;;23741:267;23631:377;;;;:::o;24014:435::-;24194:3;24216:95;24307:3;24298:6;24216:95;:::i;:::-;24209:102;;24328:95;24419:3;24410:6;24328:95;:::i;:::-;24321:102;;24440:3;24433:10;;24014:435;;;;;:::o;24455:225::-;24595:34;24591:1;24583:6;24579:14;24572:58;24664:8;24659:2;24651:6;24647:15;24640:33;24455:225;:::o;24686:366::-;24828:3;24849:67;24913:2;24908:3;24849:67;:::i;:::-;24842:74;;24925:93;25014:3;24925:93;:::i;:::-;25043:2;25038:3;25034:12;25027:19;;24686:366;;;:::o;25058:419::-;25224:4;25262:2;25251:9;25247:18;25239:26;;25311:9;25305:4;25301:20;25297:1;25286:9;25282:17;25275:47;25339:131;25465:4;25339:131;:::i;:::-;25331:139;;25058:419;;;:::o;25483:169::-;25623:21;25619:1;25611:6;25607:14;25600:45;25483:169;:::o;25658:366::-;25800:3;25821:67;25885:2;25880:3;25821:67;:::i;:::-;25814:74;;25897:93;25986:3;25897:93;:::i;:::-;26015:2;26010:3;26006:12;25999:19;;25658:366;;;:::o;26030:419::-;26196:4;26234:2;26223:9;26219:18;26211:26;;26283:9;26277:4;26273:20;26269:1;26258:9;26254:17;26247:47;26311:131;26437:4;26311:131;:::i;:::-;26303:139;;26030:419;;;:::o;26455:180::-;26503:77;26500:1;26493:88;26600:4;26597:1;26590:15;26624:4;26621:1;26614:15;26641:174;26781:26;26777:1;26769:6;26765:14;26758:50;26641:174;:::o;26821:366::-;26963:3;26984:67;27048:2;27043:3;26984:67;:::i;:::-;26977:74;;27060:93;27149:3;27060:93;:::i;:::-;27178:2;27173:3;27169:12;27162:19;;26821:366;;;:::o;27193:419::-;27359:4;27397:2;27386:9;27382:18;27374:26;;27446:9;27440:4;27436:20;27432:1;27421:9;27417:17;27410:47;27474:131;27600:4;27474:131;:::i;:::-;27466:139;;27193:419;;;:::o;27618:233::-;27657:3;27680:24;27698:5;27680:24;:::i;:::-;27671:33;;27726:66;27719:5;27716:77;27713:103;;;27796:18;;:::i;:::-;27713:103;27843:1;27836:5;27832:13;27825:20;;27618:233;;;:::o;27857:182::-;27997:34;27993:1;27985:6;27981:14;27974:58;27857:182;:::o;28045:366::-;28187:3;28208:67;28272:2;28267:3;28208:67;:::i;:::-;28201:74;;28284:93;28373:3;28284:93;:::i;:::-;28402:2;28397:3;28393:12;28386:19;;28045:366;;;:::o;28417:419::-;28583:4;28621:2;28610:9;28606:18;28598:26;;28670:9;28664:4;28660:20;28656:1;28645:9;28641:17;28634:47;28698:131;28824:4;28698:131;:::i;:::-;28690:139;;28417:419;;;:::o;28842:98::-;28893:6;28927:5;28921:12;28911:22;;28842:98;;;:::o;28946:168::-;29029:11;29063:6;29058:3;29051:19;29103:4;29098:3;29094:14;29079:29;;28946:168;;;;:::o;29120:360::-;29206:3;29234:38;29266:5;29234:38;:::i;:::-;29288:70;29351:6;29346:3;29288:70;:::i;:::-;29281:77;;29367:52;29412:6;29407:3;29400:4;29393:5;29389:16;29367:52;:::i;:::-;29444:29;29466:6;29444:29;:::i;:::-;29439:3;29435:39;29428:46;;29210:270;29120:360;;;;:::o;29486:640::-;29681:4;29719:3;29708:9;29704:19;29696:27;;29733:71;29801:1;29790:9;29786:17;29777:6;29733:71;:::i;:::-;29814:72;29882:2;29871:9;29867:18;29858:6;29814:72;:::i;:::-;29896;29964:2;29953:9;29949:18;29940:6;29896:72;:::i;:::-;30015:9;30009:4;30005:20;30000:2;29989:9;29985:18;29978:48;30043:76;30114:4;30105:6;30043:76;:::i;:::-;30035:84;;29486:640;;;;;;;:::o;30132:141::-;30188:5;30219:6;30213:13;30204:22;;30235:32;30261:5;30235:32;:::i;:::-;30132:141;;;;:::o;30279:349::-;30348:6;30397:2;30385:9;30376:7;30372:23;30368:32;30365:119;;;30403:79;;:::i;:::-;30365:119;30523:1;30548:63;30603:7;30594:6;30583:9;30579:22;30548:63;:::i;:::-;30538:73;;30494:127;30279:349;;;;:::o

Swarm Source

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