ETH Price: $3,324.81 (+2.00%)
Gas: 3 Gwei

Token

AntiGiraffeGiraffeClub (AGGC)
 

Overview

Max Total Supply

2,518 AGGC

Holders

290

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 AGGC
0xDffF6c439b1D87f1DFbfC7A127a8DC0e82289933
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:
AntiGiraffeGiraffeClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// 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/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: contracts/AntiGiraffeGiraffeClub.sol

pragma solidity ^0.8.0;

contract AntiGiraffeGiraffeClub is ERC721A, Pausable, Ownable {

  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";

  uint256 public cost = 0 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmount = 10;

  bool public hasCostBeenUpdatedDynamically = false;

  constructor() ERC721A("AntiGiraffeGiraffeClub", "AGGC") {
    setBaseURI("ipfs://QmYKhKCNCMTPaD6CtjCnDCuUEd9w9z3BFPfPayS7bDBrSC/");
  }

  function updateCostDynamically(uint256 _supply) internal {
    if (_supply >= 2500) {
      cost = 0.0069 ether;
      hasCostBeenUpdatedDynamically = true;
    }
  }

  function mint(uint256 _tokenCount) public payable mintCompliance(_tokenCount) mintPriceCompliance(_tokenCount) {
    _mint(msg.sender, _tokenCount);

    if (!hasCostBeenUpdatedDynamically) {
      uint256 newSupply = totalSupply();
      updateCostDynamically(newSupply);
    }
  }
  
  modifier mintCompliance(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(tx.origin == msg.sender, "The caller is another contract");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmount && _numberMinted(msg.sender) + _mintAmount <= maxMintAmount, "Invalid mint amount!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _;
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

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

  function pause() public onlyOwner {
    _pause();
  }

  function unpause() public onlyOwner {
    _unpause();
  }

  function withdraw() external payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasCostBeenUpdatedDynamically","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenCount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000358565b506000600b55611388600c55600a600d556000600e60006101000a81548160ff0219169083151502179055503480156200008a57600080fd5b506040518060400160405280601681526020017f416e74694769726166666547697261666665436c7562000000000000000000008152506040518060400160405280600481526020017f414747430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010f92919062000358565b5080600390805190602001906200012892919062000358565b5062000139620001ac60201b60201c565b60008190555050506000600860006101000a81548160ff0219169083151502179055506200017c62000170620001b560201b60201c565b620001bd60201b60201c565b620001a6604051806060016040528060368152602001620038b0603691396200028360201b60201c565b620004f0565b60006001905090565b600033905090565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000293620001b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b96200032e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000309906200042f565b60405180910390fd5b80600990805190602001906200032a92919062000358565b5050565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003669062000462565b90600052602060002090601f0160209004810192826200038a5760008555620003d6565b82601f10620003a557805160ff1916838001178555620003d6565b82800160010185558215620003d6579182015b82811115620003d5578251825591602001919060010190620003b8565b5b509050620003e59190620003e9565b5090565b5b8082111562000404576000816000905550600101620003ea565b5090565b60006200041760208362000451565b91506200042482620004c7565b602082019050919050565b600060208201905081810360008301526200044a8162000408565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200047b57607f821691505b6020821081141562000492576200049162000498565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6133b080620005006000396000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610612578063da3ef23f1461063d578063e985e9c514610666578063f2fde38b146106a3576101cd565b8063a22cb46514610558578063b88d4fde14610581578063c6682862146105aa578063c87b56dd146105d5576101cd565b80638456cb59116100d15780638456cb59146104cf5780638da5cb5b146104e657806395d89b4114610511578063a0712d681461053c576101cd565b80636c0360eb1461045057806370a082311461047b578063715018a6146104b8576101cd565b806323b872dd1161016f57806350ea497a1161013e57806350ea497a1461039457806355f804b3146103bf5780635c975abb146103e85780636352211e14610413576101cd565b806323b872dd146103215780633ccfd60b1461034a5780633f4ba83a1461035457806342842e0e1461036b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806313faede6146102a057806318160ddd146102cb578063239c70ae146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061271a565b6106cc565b6040516102069190612b44565b60405180910390f35b34801561021b57600080fd5b5061022461075e565b6040516102319190612b5f565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906127bd565b6107f0565b60405161026e9190612add565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906126da565b61086c565b005b3480156102ac57600080fd5b506102b56109ad565b6040516102c29190612ca1565b60405180910390f35b3480156102d757600080fd5b506102e06109b3565b6040516102ed9190612ca1565b60405180910390f35b34801561030257600080fd5b5061030b6109ca565b6040516103189190612ca1565b60405180910390f35b34801561032d57600080fd5b50610348600480360381019061034391906125c4565b6109d0565b005b610352610cf5565b005b34801561036057600080fd5b50610369610df1565b005b34801561037757600080fd5b50610392600480360381019061038d91906125c4565b610e77565b005b3480156103a057600080fd5b506103a9610e97565b6040516103b69190612b44565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612774565b610eaa565b005b3480156103f457600080fd5b506103fd610f40565b60405161040a9190612b44565b60405180910390f35b34801561041f57600080fd5b5061043a600480360381019061043591906127bd565b610f57565b6040516104479190612add565b60405180910390f35b34801561045c57600080fd5b50610465610f69565b6040516104729190612b5f565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612557565b610ff7565b6040516104af9190612ca1565b60405180910390f35b3480156104c457600080fd5b506104cd6110b0565b005b3480156104db57600080fd5b506104e4611138565b005b3480156104f257600080fd5b506104fb6111be565b6040516105089190612add565b60405180910390f35b34801561051d57600080fd5b506105266111e8565b6040516105339190612b5f565b60405180910390f35b610556600480360381019061055191906127bd565b61127a565b005b34801561056457600080fd5b5061057f600480360381019061057a919061269a565b61143d565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612617565b6115b5565b005b3480156105b657600080fd5b506105bf611628565b6040516105cc9190612b5f565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906127bd565b6116b6565b6040516106099190612b5f565b60405180910390f35b34801561061e57600080fd5b50610627611760565b6040516106349190612ca1565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190612774565b611766565b005b34801561067257600080fd5b5061068d60048036038101906106889190612584565b6117fc565b60405161069a9190612b44565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612557565b611890565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107575750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076d90612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461079990612f71565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b60006107fb82611988565b610831576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087782610f57565b90508073ffffffffffffffffffffffffffffffffffffffff166108986119e7565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576108c4816108bf6119e7565b6117fc565b6108fa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b60006109bd6119ef565b6001546000540303905090565b600d5481565b60006109db826119f8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a42576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a4e84611ac6565b91509150610a648187610a5f6119e7565b611ae8565b610ab057610a7986610a746119e7565b6117fc565b610aaf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b17576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b248686866001611b2c565b8015610b2f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bfd85610bd9888887611b32565b7c020000000000000000000000000000000000000000000000000000000017611b5a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c85576000600185019050600060046000838152602001908152602001600020541415610c83576000548114610c82578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ced8686866001611b85565b505050505050565b610cfd611b8b565b73ffffffffffffffffffffffffffffffffffffffff16610d1b6111be565b73ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612c21565b60405180910390fd5b6000610d7b6111be565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d9e90612ac8565b60006040518083038185875af1925050503d8060008114610ddb576040519150601f19603f3d011682016040523d82523d6000602084013e610de0565b606091505b5050905080610dee57600080fd5b50565b610df9611b8b565b73ffffffffffffffffffffffffffffffffffffffff16610e176111be565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490612c21565b60405180910390fd5b610e75611b93565b565b610e92838383604051806020016040528060008152506115b5565b505050565b600e60009054906101000a900460ff1681565b610eb2611b8b565b73ffffffffffffffffffffffffffffffffffffffff16610ed06111be565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90612c21565b60405180910390fd5b8060099080519060200190610f3c92919061236b565b5050565b6000600860009054906101000a900460ff16905090565b6000610f62826119f8565b9050919050565b60098054610f7690612f71565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa290612f71565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b8611b8b565b73ffffffffffffffffffffffffffffffffffffffff166110d66111be565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612c21565b60405180910390fd5b6111366000611c35565b565b611140611b8b565b73ffffffffffffffffffffffffffffffffffffffff1661115e6111be565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612c21565b60405180910390fd5b6111bc611cfb565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111f790612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461122390612f71565b80156112705780601f1061124557610100808354040283529160200191611270565b820191906000526020600020905b81548152906001019060200180831161125357829003601f168201915b5050505050905090565b80600c54816112876109b3565b6112919190612da6565b11156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612c61565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790612be1565b60405180910390fd5b6000811180156113525750600d548111155b80156113735750600d548161136633611d9e565b6113709190612da6565b11155b6113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990612bc1565b60405180910390fd5b8180600b546113c19190612e2d565b341015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90612c81565b60405180910390fd5b61140d3384611df5565b600e60009054906101000a900460ff1661143857600061142b6109b3565b905061143681611fc9565b505b505050565b6114456119e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114aa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b76119e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115646119e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a99190612b44565b60405180910390a35050565b6115c08484846109d0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611622576115eb84848484611fff565b611621576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461163590612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461166190612f71565b80156116ae5780601f10611683576101008083540402835291602001916116ae565b820191906000526020600020905b81548152906001019060200180831161169157829003601f168201915b505050505081565b60606116c182611988565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790612c41565b60405180910390fd5b600061170a61215f565b9050600081511161172a5760405180602001604052806000815250611758565b80611734846121f1565b600a60405160200161174893929190612a97565b6040516020818303038152906040525b915050919050565b600c5481565b61176e611b8b565b73ffffffffffffffffffffffffffffffffffffffff1661178c6111be565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990612c21565b60405180910390fd5b80600a90805190602001906117f892919061236b565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611898611b8b565b73ffffffffffffffffffffffffffffffffffffffff166118b66111be565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390612c21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612ba1565b60405180910390fd5b61198581611c35565b50565b6000816119936119ef565b111580156119a2575060005482105b80156119e0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a076119ef565b11611a8f57600054811015611a8e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a8c575b6000811415611a82576004600083600190039350838152602001908152602001600020549050611a57565b8092505050611ac1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b49868684612352565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611b9b610f40565b611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190612b81565b60405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c1e611b8b565b604051611c2b9190612add565b60405180910390a1565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d03610f40565b15611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90612c01565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d87611b8b565b604051611d949190612add565b60405180910390a1565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eaa6000848385611b2c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2183611f126000866000611b32565b611f1b8561235b565b17611b5a565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f4557806000819055505050611fc46000848385611b85565b505050565b6109c48110611ffc576618838370f34000600b819055506001600e60006101000a81548160ff0219169083151502179055505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120256119e7565b8786866040518563ffffffff1660e01b81526004016120479493929190612af8565b602060405180830381600087803b15801561206157600080fd5b505af192505050801561209257506040513d601f19601f8201168201806040525081019061208f9190612747565b60015b61210c573d80600081146120c2576040519150601f19603f3d011682016040523d82523d6000602084013e6120c7565b606091505b50600081511415612104576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461216e90612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461219a90612f71565b80156121e75780601f106121bc576101008083540402835291602001916121e7565b820191906000526020600020905b8154815290600101906020018083116121ca57829003601f168201915b5050505050905090565b60606000821415612239576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234d565b600082905060005b6000821461226b57808061225490612fd4565b915050600a826122649190612dfc565b9150612241565b60008167ffffffffffffffff8111156122875761228661310a565b5b6040519080825280601f01601f1916602001820160405280156122b95781602001600182028036833780820191505090505b5090505b60008514612346576001826122d29190612e87565b9150600a856122e1919061301d565b60306122ed9190612da6565b60f81b818381518110612303576123026130db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561233f9190612dfc565b94506122bd565b8093505050505b919050565b60009392505050565b60006001821460e11b9050919050565b82805461237790612f71565b90600052602060002090601f01602090048101928261239957600085556123e0565b82601f106123b257805160ff19168380011785556123e0565b828001600101855582156123e0579182015b828111156123df5782518255916020019190600101906123c4565b5b5090506123ed91906123f1565b5090565b5b8082111561240a5760008160009055506001016123f2565b5090565b600061242161241c84612ce1565b612cbc565b90508281526020810184848401111561243d5761243c61313e565b5b612448848285612f2f565b509392505050565b600061246361245e84612d12565b612cbc565b90508281526020810184848401111561247f5761247e61313e565b5b61248a848285612f2f565b509392505050565b6000813590506124a18161331e565b92915050565b6000813590506124b681613335565b92915050565b6000813590506124cb8161334c565b92915050565b6000815190506124e08161334c565b92915050565b600082601f8301126124fb576124fa613139565b5b813561250b84826020860161240e565b91505092915050565b600082601f83011261252957612528613139565b5b8135612539848260208601612450565b91505092915050565b60008135905061255181613363565b92915050565b60006020828403121561256d5761256c613148565b5b600061257b84828501612492565b91505092915050565b6000806040838503121561259b5761259a613148565b5b60006125a985828601612492565b92505060206125ba85828601612492565b9150509250929050565b6000806000606084860312156125dd576125dc613148565b5b60006125eb86828701612492565b93505060206125fc86828701612492565b925050604061260d86828701612542565b9150509250925092565b6000806000806080858703121561263157612630613148565b5b600061263f87828801612492565b945050602061265087828801612492565b935050604061266187828801612542565b925050606085013567ffffffffffffffff81111561268257612681613143565b5b61268e878288016124e6565b91505092959194509250565b600080604083850312156126b1576126b0613148565b5b60006126bf85828601612492565b92505060206126d0858286016124a7565b9150509250929050565b600080604083850312156126f1576126f0613148565b5b60006126ff85828601612492565b925050602061271085828601612542565b9150509250929050565b6000602082840312156127305761272f613148565b5b600061273e848285016124bc565b91505092915050565b60006020828403121561275d5761275c613148565b5b600061276b848285016124d1565b91505092915050565b60006020828403121561278a57612789613148565b5b600082013567ffffffffffffffff8111156127a8576127a7613143565b5b6127b484828501612514565b91505092915050565b6000602082840312156127d3576127d2613148565b5b60006127e184828501612542565b91505092915050565b6127f381612ebb565b82525050565b61280281612ecd565b82525050565b600061281382612d58565b61281d8185612d6e565b935061282d818560208601612f3e565b6128368161314d565b840191505092915050565b600061284c82612d63565b6128568185612d8a565b9350612866818560208601612f3e565b61286f8161314d565b840191505092915050565b600061288582612d63565b61288f8185612d9b565b935061289f818560208601612f3e565b80840191505092915050565b600081546128b881612f71565b6128c28186612d9b565b945060018216600081146128dd57600181146128ee57612921565b60ff19831686528186019350612921565b6128f785612d43565b60005b83811015612919578154818901526001820191506020810190506128fa565b838801955050505b50505092915050565b6000612937601483612d8a565b91506129428261315e565b602082019050919050565b600061295a602683612d8a565b915061296582613187565b604082019050919050565b600061297d601483612d8a565b9150612988826131d6565b602082019050919050565b60006129a0601e83612d8a565b91506129ab826131ff565b602082019050919050565b60006129c3601083612d8a565b91506129ce82613228565b602082019050919050565b60006129e6602083612d8a565b91506129f182613251565b602082019050919050565b6000612a09602f83612d8a565b9150612a148261327a565b604082019050919050565b6000612a2c600083612d7f565b9150612a37826132c9565b600082019050919050565b6000612a4f601483612d8a565b9150612a5a826132cc565b602082019050919050565b6000612a72601383612d8a565b9150612a7d826132f5565b602082019050919050565b612a9181612f25565b82525050565b6000612aa3828661287a565b9150612aaf828561287a565b9150612abb82846128ab565b9150819050949350505050565b6000612ad382612a1f565b9150819050919050565b6000602082019050612af260008301846127ea565b92915050565b6000608082019050612b0d60008301876127ea565b612b1a60208301866127ea565b612b276040830185612a88565b8181036060830152612b398184612808565b905095945050505050565b6000602082019050612b5960008301846127f9565b92915050565b60006020820190508181036000830152612b798184612841565b905092915050565b60006020820190508181036000830152612b9a8161292a565b9050919050565b60006020820190508181036000830152612bba8161294d565b9050919050565b60006020820190508181036000830152612bda81612970565b9050919050565b60006020820190508181036000830152612bfa81612993565b9050919050565b60006020820190508181036000830152612c1a816129b6565b9050919050565b60006020820190508181036000830152612c3a816129d9565b9050919050565b60006020820190508181036000830152612c5a816129fc565b9050919050565b60006020820190508181036000830152612c7a81612a42565b9050919050565b60006020820190508181036000830152612c9a81612a65565b9050919050565b6000602082019050612cb66000830184612a88565b92915050565b6000612cc6612cd7565b9050612cd28282612fa3565b919050565b6000604051905090565b600067ffffffffffffffff821115612cfc57612cfb61310a565b5b612d058261314d565b9050602081019050919050565b600067ffffffffffffffff821115612d2d57612d2c61310a565b5b612d368261314d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612db182612f25565b9150612dbc83612f25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df157612df061304e565b5b828201905092915050565b6000612e0782612f25565b9150612e1283612f25565b925082612e2257612e2161307d565b5b828204905092915050565b6000612e3882612f25565b9150612e4383612f25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7c57612e7b61304e565b5b828202905092915050565b6000612e9282612f25565b9150612e9d83612f25565b925082821015612eb057612eaf61304e565b5b828203905092915050565b6000612ec682612f05565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f5c578082015181840152602081019050612f41565b83811115612f6b576000848401525b50505050565b60006002820490506001821680612f8957607f821691505b60208210811415612f9d57612f9c6130ac565b5b50919050565b612fac8261314d565b810181811067ffffffffffffffff82111715612fcb57612fca61310a565b5b80604052505050565b6000612fdf82612f25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130125761301161304e565b5b600182019050919050565b600061302882612f25565b915061303383612f25565b9250826130435761304261307d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61332781612ebb565b811461333257600080fd5b50565b61333e81612ecd565b811461334957600080fd5b50565b61335581612ed9565b811461336057600080fd5b50565b61336c81612f25565b811461337757600080fd5b5056fea2646970667358221220dc58143440e6ed3f1b329d987f9cf072e103f32b5d54d8d8a3358ef6b8027a2f64736f6c63430008070033697066733a2f2f516d594b684b434e434d545061443643746a436e4443755545643977397a334246506650617953376244427253432f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610612578063da3ef23f1461063d578063e985e9c514610666578063f2fde38b146106a3576101cd565b8063a22cb46514610558578063b88d4fde14610581578063c6682862146105aa578063c87b56dd146105d5576101cd565b80638456cb59116100d15780638456cb59146104cf5780638da5cb5b146104e657806395d89b4114610511578063a0712d681461053c576101cd565b80636c0360eb1461045057806370a082311461047b578063715018a6146104b8576101cd565b806323b872dd1161016f57806350ea497a1161013e57806350ea497a1461039457806355f804b3146103bf5780635c975abb146103e85780636352211e14610413576101cd565b806323b872dd146103215780633ccfd60b1461034a5780633f4ba83a1461035457806342842e0e1461036b576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806313faede6146102a057806318160ddd146102cb578063239c70ae146102f6576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061271a565b6106cc565b6040516102069190612b44565b60405180910390f35b34801561021b57600080fd5b5061022461075e565b6040516102319190612b5f565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906127bd565b6107f0565b60405161026e9190612add565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906126da565b61086c565b005b3480156102ac57600080fd5b506102b56109ad565b6040516102c29190612ca1565b60405180910390f35b3480156102d757600080fd5b506102e06109b3565b6040516102ed9190612ca1565b60405180910390f35b34801561030257600080fd5b5061030b6109ca565b6040516103189190612ca1565b60405180910390f35b34801561032d57600080fd5b50610348600480360381019061034391906125c4565b6109d0565b005b610352610cf5565b005b34801561036057600080fd5b50610369610df1565b005b34801561037757600080fd5b50610392600480360381019061038d91906125c4565b610e77565b005b3480156103a057600080fd5b506103a9610e97565b6040516103b69190612b44565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190612774565b610eaa565b005b3480156103f457600080fd5b506103fd610f40565b60405161040a9190612b44565b60405180910390f35b34801561041f57600080fd5b5061043a600480360381019061043591906127bd565b610f57565b6040516104479190612add565b60405180910390f35b34801561045c57600080fd5b50610465610f69565b6040516104729190612b5f565b60405180910390f35b34801561048757600080fd5b506104a2600480360381019061049d9190612557565b610ff7565b6040516104af9190612ca1565b60405180910390f35b3480156104c457600080fd5b506104cd6110b0565b005b3480156104db57600080fd5b506104e4611138565b005b3480156104f257600080fd5b506104fb6111be565b6040516105089190612add565b60405180910390f35b34801561051d57600080fd5b506105266111e8565b6040516105339190612b5f565b60405180910390f35b610556600480360381019061055191906127bd565b61127a565b005b34801561056457600080fd5b5061057f600480360381019061057a919061269a565b61143d565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612617565b6115b5565b005b3480156105b657600080fd5b506105bf611628565b6040516105cc9190612b5f565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f791906127bd565b6116b6565b6040516106099190612b5f565b60405180910390f35b34801561061e57600080fd5b50610627611760565b6040516106349190612ca1565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f9190612774565b611766565b005b34801561067257600080fd5b5061068d60048036038101906106889190612584565b6117fc565b60405161069a9190612b44565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612557565b611890565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107575750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076d90612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461079990612f71565b80156107e65780601f106107bb576101008083540402835291602001916107e6565b820191906000526020600020905b8154815290600101906020018083116107c957829003601f168201915b5050505050905090565b60006107fb82611988565b610831576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087782610f57565b90508073ffffffffffffffffffffffffffffffffffffffff166108986119e7565b73ffffffffffffffffffffffffffffffffffffffff16146108fb576108c4816108bf6119e7565b6117fc565b6108fa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b60006109bd6119ef565b6001546000540303905090565b600d5481565b60006109db826119f8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a42576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a4e84611ac6565b91509150610a648187610a5f6119e7565b611ae8565b610ab057610a7986610a746119e7565b6117fc565b610aaf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b17576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b248686866001611b2c565b8015610b2f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bfd85610bd9888887611b32565b7c020000000000000000000000000000000000000000000000000000000017611b5a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c85576000600185019050600060046000838152602001908152602001600020541415610c83576000548114610c82578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ced8686866001611b85565b505050505050565b610cfd611b8b565b73ffffffffffffffffffffffffffffffffffffffff16610d1b6111be565b73ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612c21565b60405180910390fd5b6000610d7b6111be565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d9e90612ac8565b60006040518083038185875af1925050503d8060008114610ddb576040519150601f19603f3d011682016040523d82523d6000602084013e610de0565b606091505b5050905080610dee57600080fd5b50565b610df9611b8b565b73ffffffffffffffffffffffffffffffffffffffff16610e176111be565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490612c21565b60405180910390fd5b610e75611b93565b565b610e92838383604051806020016040528060008152506115b5565b505050565b600e60009054906101000a900460ff1681565b610eb2611b8b565b73ffffffffffffffffffffffffffffffffffffffff16610ed06111be565b73ffffffffffffffffffffffffffffffffffffffff1614610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90612c21565b60405180910390fd5b8060099080519060200190610f3c92919061236b565b5050565b6000600860009054906101000a900460ff16905090565b6000610f62826119f8565b9050919050565b60098054610f7690612f71565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa290612f71565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b8611b8b565b73ffffffffffffffffffffffffffffffffffffffff166110d66111be565b73ffffffffffffffffffffffffffffffffffffffff161461112c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112390612c21565b60405180910390fd5b6111366000611c35565b565b611140611b8b565b73ffffffffffffffffffffffffffffffffffffffff1661115e6111be565b73ffffffffffffffffffffffffffffffffffffffff16146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612c21565b60405180910390fd5b6111bc611cfb565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111f790612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461122390612f71565b80156112705780601f1061124557610100808354040283529160200191611270565b820191906000526020600020905b81548152906001019060200180831161125357829003601f168201915b5050505050905090565b80600c54816112876109b3565b6112919190612da6565b11156112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990612c61565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133790612be1565b60405180910390fd5b6000811180156113525750600d548111155b80156113735750600d548161136633611d9e565b6113709190612da6565b11155b6113b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a990612bc1565b60405180910390fd5b8180600b546113c19190612e2d565b341015611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90612c81565b60405180910390fd5b61140d3384611df5565b600e60009054906101000a900460ff1661143857600061142b6109b3565b905061143681611fc9565b505b505050565b6114456119e7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114aa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b76119e7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115646119e7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a99190612b44565b60405180910390a35050565b6115c08484846109d0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611622576115eb84848484611fff565b611621576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461163590612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461166190612f71565b80156116ae5780601f10611683576101008083540402835291602001916116ae565b820191906000526020600020905b81548152906001019060200180831161169157829003601f168201915b505050505081565b60606116c182611988565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790612c41565b60405180910390fd5b600061170a61215f565b9050600081511161172a5760405180602001604052806000815250611758565b80611734846121f1565b600a60405160200161174893929190612a97565b6040516020818303038152906040525b915050919050565b600c5481565b61176e611b8b565b73ffffffffffffffffffffffffffffffffffffffff1661178c6111be565b73ffffffffffffffffffffffffffffffffffffffff16146117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990612c21565b60405180910390fd5b80600a90805190602001906117f892919061236b565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611898611b8b565b73ffffffffffffffffffffffffffffffffffffffff166118b66111be565b73ffffffffffffffffffffffffffffffffffffffff161461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390612c21565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197390612ba1565b60405180910390fd5b61198581611c35565b50565b6000816119936119ef565b111580156119a2575060005482105b80156119e0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611a076119ef565b11611a8f57600054811015611a8e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a8c575b6000811415611a82576004600083600190039350838152602001908152602001600020549050611a57565b8092505050611ac1565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b49868684612352565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611b9b610f40565b611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd190612b81565b60405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c1e611b8b565b604051611c2b9190612add565b60405180910390a1565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d03610f40565b15611d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3a90612c01565b60405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d87611b8b565b604051611d949190612add565b60405180910390a1565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611e9d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eaa6000848385611b2c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f2183611f126000866000611b32565b611f1b8561235b565b17611b5a565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f4557806000819055505050611fc46000848385611b85565b505050565b6109c48110611ffc576618838370f34000600b819055506001600e60006101000a81548160ff0219169083151502179055505b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120256119e7565b8786866040518563ffffffff1660e01b81526004016120479493929190612af8565b602060405180830381600087803b15801561206157600080fd5b505af192505050801561209257506040513d601f19601f8201168201806040525081019061208f9190612747565b60015b61210c573d80600081146120c2576040519150601f19603f3d011682016040523d82523d6000602084013e6120c7565b606091505b50600081511415612104576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461216e90612f71565b80601f016020809104026020016040519081016040528092919081815260200182805461219a90612f71565b80156121e75780601f106121bc576101008083540402835291602001916121e7565b820191906000526020600020905b8154815290600101906020018083116121ca57829003601f168201915b5050505050905090565b60606000821415612239576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061234d565b600082905060005b6000821461226b57808061225490612fd4565b915050600a826122649190612dfc565b9150612241565b60008167ffffffffffffffff8111156122875761228661310a565b5b6040519080825280601f01601f1916602001820160405280156122b95781602001600182028036833780820191505090505b5090505b60008514612346576001826122d29190612e87565b9150600a856122e1919061301d565b60306122ed9190612da6565b60f81b818381518110612303576123026130db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561233f9190612dfc565b94506122bd565b8093505050505b919050565b60009392505050565b60006001821460e11b9050919050565b82805461237790612f71565b90600052602060002090601f01602090048101928261239957600085556123e0565b82601f106123b257805160ff19168380011785556123e0565b828001600101855582156123e0579182015b828111156123df5782518255916020019190600101906123c4565b5b5090506123ed91906123f1565b5090565b5b8082111561240a5760008160009055506001016123f2565b5090565b600061242161241c84612ce1565b612cbc565b90508281526020810184848401111561243d5761243c61313e565b5b612448848285612f2f565b509392505050565b600061246361245e84612d12565b612cbc565b90508281526020810184848401111561247f5761247e61313e565b5b61248a848285612f2f565b509392505050565b6000813590506124a18161331e565b92915050565b6000813590506124b681613335565b92915050565b6000813590506124cb8161334c565b92915050565b6000815190506124e08161334c565b92915050565b600082601f8301126124fb576124fa613139565b5b813561250b84826020860161240e565b91505092915050565b600082601f83011261252957612528613139565b5b8135612539848260208601612450565b91505092915050565b60008135905061255181613363565b92915050565b60006020828403121561256d5761256c613148565b5b600061257b84828501612492565b91505092915050565b6000806040838503121561259b5761259a613148565b5b60006125a985828601612492565b92505060206125ba85828601612492565b9150509250929050565b6000806000606084860312156125dd576125dc613148565b5b60006125eb86828701612492565b93505060206125fc86828701612492565b925050604061260d86828701612542565b9150509250925092565b6000806000806080858703121561263157612630613148565b5b600061263f87828801612492565b945050602061265087828801612492565b935050604061266187828801612542565b925050606085013567ffffffffffffffff81111561268257612681613143565b5b61268e878288016124e6565b91505092959194509250565b600080604083850312156126b1576126b0613148565b5b60006126bf85828601612492565b92505060206126d0858286016124a7565b9150509250929050565b600080604083850312156126f1576126f0613148565b5b60006126ff85828601612492565b925050602061271085828601612542565b9150509250929050565b6000602082840312156127305761272f613148565b5b600061273e848285016124bc565b91505092915050565b60006020828403121561275d5761275c613148565b5b600061276b848285016124d1565b91505092915050565b60006020828403121561278a57612789613148565b5b600082013567ffffffffffffffff8111156127a8576127a7613143565b5b6127b484828501612514565b91505092915050565b6000602082840312156127d3576127d2613148565b5b60006127e184828501612542565b91505092915050565b6127f381612ebb565b82525050565b61280281612ecd565b82525050565b600061281382612d58565b61281d8185612d6e565b935061282d818560208601612f3e565b6128368161314d565b840191505092915050565b600061284c82612d63565b6128568185612d8a565b9350612866818560208601612f3e565b61286f8161314d565b840191505092915050565b600061288582612d63565b61288f8185612d9b565b935061289f818560208601612f3e565b80840191505092915050565b600081546128b881612f71565b6128c28186612d9b565b945060018216600081146128dd57600181146128ee57612921565b60ff19831686528186019350612921565b6128f785612d43565b60005b83811015612919578154818901526001820191506020810190506128fa565b838801955050505b50505092915050565b6000612937601483612d8a565b91506129428261315e565b602082019050919050565b600061295a602683612d8a565b915061296582613187565b604082019050919050565b600061297d601483612d8a565b9150612988826131d6565b602082019050919050565b60006129a0601e83612d8a565b91506129ab826131ff565b602082019050919050565b60006129c3601083612d8a565b91506129ce82613228565b602082019050919050565b60006129e6602083612d8a565b91506129f182613251565b602082019050919050565b6000612a09602f83612d8a565b9150612a148261327a565b604082019050919050565b6000612a2c600083612d7f565b9150612a37826132c9565b600082019050919050565b6000612a4f601483612d8a565b9150612a5a826132cc565b602082019050919050565b6000612a72601383612d8a565b9150612a7d826132f5565b602082019050919050565b612a9181612f25565b82525050565b6000612aa3828661287a565b9150612aaf828561287a565b9150612abb82846128ab565b9150819050949350505050565b6000612ad382612a1f565b9150819050919050565b6000602082019050612af260008301846127ea565b92915050565b6000608082019050612b0d60008301876127ea565b612b1a60208301866127ea565b612b276040830185612a88565b8181036060830152612b398184612808565b905095945050505050565b6000602082019050612b5960008301846127f9565b92915050565b60006020820190508181036000830152612b798184612841565b905092915050565b60006020820190508181036000830152612b9a8161292a565b9050919050565b60006020820190508181036000830152612bba8161294d565b9050919050565b60006020820190508181036000830152612bda81612970565b9050919050565b60006020820190508181036000830152612bfa81612993565b9050919050565b60006020820190508181036000830152612c1a816129b6565b9050919050565b60006020820190508181036000830152612c3a816129d9565b9050919050565b60006020820190508181036000830152612c5a816129fc565b9050919050565b60006020820190508181036000830152612c7a81612a42565b9050919050565b60006020820190508181036000830152612c9a81612a65565b9050919050565b6000602082019050612cb66000830184612a88565b92915050565b6000612cc6612cd7565b9050612cd28282612fa3565b919050565b6000604051905090565b600067ffffffffffffffff821115612cfc57612cfb61310a565b5b612d058261314d565b9050602081019050919050565b600067ffffffffffffffff821115612d2d57612d2c61310a565b5b612d368261314d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612db182612f25565b9150612dbc83612f25565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612df157612df061304e565b5b828201905092915050565b6000612e0782612f25565b9150612e1283612f25565b925082612e2257612e2161307d565b5b828204905092915050565b6000612e3882612f25565b9150612e4383612f25565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e7c57612e7b61304e565b5b828202905092915050565b6000612e9282612f25565b9150612e9d83612f25565b925082821015612eb057612eaf61304e565b5b828203905092915050565b6000612ec682612f05565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f5c578082015181840152602081019050612f41565b83811115612f6b576000848401525b50505050565b60006002820490506001821680612f8957607f821691505b60208210811415612f9d57612f9c6130ac565b5b50919050565b612fac8261314d565b810181811067ffffffffffffffff82111715612fcb57612fca61310a565b5b80604052505050565b6000612fdf82612f25565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130125761301161304e565b5b600182019050919050565b600061302882612f25565b915061303383612f25565b9250826130435761304261307d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61332781612ebb565b811461333257600080fd5b50565b61333e81612ecd565b811461334957600080fd5b50565b61335581612ed9565b811461336057600080fd5b50565b61336c81612f25565b811461337757600080fd5b5056fea2646970667358221220dc58143440e6ed3f1b329d987f9cf072e103f32b5d54d8d8a3358ef6b8027a2f64736f6c63430008070033

Deployed Bytecode Sourcemap

52704:2548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22494:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28141:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30087:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29635:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52875:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21548:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52945:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39352:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55102:147;;;:::i;:::-;;55037:59;;;;;;;;;;;;;:::i;:::-;;30977:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52985:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54543:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4186:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27930:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52805:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23173:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7085:103;;;;;;;;;;;;;:::i;:::-;;54976:55;;;;;;;;;;;;;:::i;:::-;;6434:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28310:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53361:289;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30363:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31233:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52831:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54163:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52909:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54647:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30742:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7343:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22494:615;22579:4;22894:10;22879:25;;:11;:25;;;;:102;;;;22971:10;22956:25;;:11;:25;;;;22879:102;:179;;;;23048:10;23033:25;;:11;:25;;;;22879:179;22859:199;;22494:615;;;:::o;28141:100::-;28195:13;28228:5;28221:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28141:100;:::o;30087:204::-;30155:7;30180:16;30188:7;30180;:16::i;:::-;30175:64;;30205:34;;;;;;;;;;;;;;30175:64;30259:15;:24;30275:7;30259:24;;;;;;;;;;;;;;;;;;;;;30252:31;;30087:204;;;:::o;29635:386::-;29708:13;29724:16;29732:7;29724;:16::i;:::-;29708:32;;29780:5;29757:28;;:19;:17;:19::i;:::-;:28;;;29753:175;;29805:44;29822:5;29829:19;:17;:19::i;:::-;29805:16;:44::i;:::-;29800:128;;29877:35;;;;;;;;;;;;;;29800:128;29753:175;29967:2;29940:15;:24;29956:7;29940:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30005:7;30001:2;29985:28;;29994:5;29985:28;;;;;;;;;;;;29697:324;29635:386;;:::o;52875:29::-;;;;:::o;21548:315::-;21601:7;21829:15;:13;:15::i;:::-;21814:12;;21798:13;;:28;:46;21791:53;;21548:315;:::o;52945:33::-;;;;:::o;39352:2800::-;39486:27;39516;39535:7;39516:18;:27::i;:::-;39486:57;;39601:4;39560:45;;39576:19;39560:45;;;39556:86;;39614:28;;;;;;;;;;;;;;39556:86;39656:27;39685:23;39712:28;39732:7;39712:19;:28::i;:::-;39655:85;;;;39840:62;39859:15;39876:4;39882:19;:17;:19::i;:::-;39840:18;:62::i;:::-;39835:174;;39922:43;39939:4;39945:19;:17;:19::i;:::-;39922:16;:43::i;:::-;39917:92;;39974:35;;;;;;;;;;;;;;39917:92;39835:174;40040:1;40026:16;;:2;:16;;;40022:52;;;40051:23;;;;;;;;;;;;;;40022:52;40087:43;40109:4;40115:2;40119:7;40128:1;40087:21;:43::i;:::-;40223:15;40220:160;;;40363:1;40342:19;40335:30;40220:160;40758:18;:24;40777:4;40758:24;;;;;;;;;;;;;;;;40756:26;;;;;;;;;;;;40827:18;:22;40846:2;40827:22;;;;;;;;;;;;;;;;40825:24;;;;;;;;;;;41149:145;41186:2;41234:45;41249:4;41255:2;41259:19;41234:14;:45::i;:::-;18776:8;41207:72;41149:18;:145::i;:::-;41120:17;:26;41138:7;41120:26;;;;;;;;;;;:174;;;;41464:1;18776:8;41414:19;:46;:51;41410:626;;;41486:19;41518:1;41508:7;:11;41486:33;;41675:1;41641:17;:30;41659:11;41641:30;;;;;;;;;;;;:35;41637:384;;;41779:13;;41764:11;:28;41760:242;;41959:19;41926:17;:30;41944:11;41926:30;;;;;;;;;;;:52;;;;41760:242;41637:384;41467:569;41410:626;42083:7;42079:2;42064:27;;42073:4;42064:27;;;;;;;;;;;;42102:42;42123:4;42129:2;42133:7;42142:1;42102:20;:42::i;:::-;39475:2677;;;39352:2800;;;:::o;55102:147::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55157:7:::1;55178;:5;:7::i;:::-;55170:21;;55199;55170:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55156:69;;;55240:2;55232:11;;;::::0;::::1;;55149:100;55102:147::o:0;55037:59::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55080:10:::1;:8;:10::i;:::-;55037:59::o:0;30977:185::-;31115:39;31132:4;31138:2;31142:7;31115:39;;;;;;;;;;;;:16;:39::i;:::-;30977:185;;;:::o;52985:49::-;;;;;;;;;;;;;:::o;54543:98::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54624:11:::1;54614:7;:21;;;;;;;;;;;;:::i;:::-;;54543:98:::0;:::o;4186:86::-;4233:4;4257:7;;;;;;;;;;;4250:14;;4186:86;:::o;27930:144::-;27994:7;28037:27;28056:7;28037:18;:27::i;:::-;28014:52;;27930:144;;;:::o;52805:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23173:224::-;23237:7;23278:1;23261:19;;:5;:19;;;23257:60;;;23289:28;;;;;;;;;;;;;;23257:60;17728:13;23335:18;:25;23354:5;23335:25;;;;;;;;;;;;;;;;:54;23328:61;;23173:224;;;:::o;7085:103::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7150:30:::1;7177:1;7150:18;:30::i;:::-;7085:103::o:0;54976:55::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55017:8:::1;:6;:8::i;:::-;54976:55::o:0;6434:87::-;6480:7;6507:6;;;;;;;;;;;6500:13;;6434:87;:::o;28310:104::-;28366:13;28399:7;28392:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28310:104;:::o;53361:289::-;53426:11;53749:9;;53734:11;53718:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;53710:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53811:10;53798:23;;:9;:23;;;53790:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;53885:1;53871:11;:15;:47;;;;;53905:13;;53890:11;:28;;53871:47;:107;;;;;53965:13;;53950:11;53922:25;53936:10;53922:13;:25::i;:::-;:39;;;;:::i;:::-;:56;;53871:107;53863:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;53459:11:::1;54108;54101:4;;:18;;;;:::i;:::-;54088:9;:31;;54080:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53479:30:::2;53485:10;53497:11;53479:5;:30::i;:::-;53523:29;;;;;;;;;;;53518:127;;53563:17;53583:13;:11;:13::i;:::-;53563:33;;53605:32;53627:9;53605:21;:32::i;:::-;53554:91;53518:127;54010:1:::1;53361:289:::0;;:::o;30363:308::-;30474:19;:17;:19::i;:::-;30462:31;;:8;:31;;;30458:61;;;30502:17;;;;;;;;;;;;;;30458:61;30584:8;30532:18;:39;30551:19;:17;:19::i;:::-;30532:39;;;;;;;;;;;;;;;:49;30572:8;30532:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30644:8;30608:55;;30623:19;:17;:19::i;:::-;30608:55;;;30654:8;30608:55;;;;;;:::i;:::-;;;;;;;;30363:308;;:::o;31233:399::-;31400:31;31413:4;31419:2;31423:7;31400:12;:31::i;:::-;31464:1;31446:2;:14;;;:19;31442:183;;31485:56;31516:4;31522:2;31526:7;31535:5;31485:30;:56::i;:::-;31480:145;;31569:40;;;;;;;;;;;;;;31480:145;31442:183;31233:399;;;;:::o;52831:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54163:374::-;54236:13;54266:16;54274:7;54266;:16::i;:::-;54258:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;54343:28;54374:10;:8;:10::i;:::-;54343:41;;54429:1;54404:14;54398:28;:32;:133;;;;;;;;;;;;;;;;;54466:14;54482:18;:7;:16;:18::i;:::-;54502:13;54449:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54398:133;54391:140;;;54163:374;;;:::o;52909:31::-;;;;:::o;54647:122::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54746:17:::1;54730:13;:33;;;;;;;;;;;;:::i;:::-;;54647:122:::0;:::o;30742:164::-;30839:4;30863:18;:25;30882:5;30863:25;;;;;;;;;;;;;;;:35;30889:8;30863:35;;;;;;;;;;;;;;;;;;;;;;;;;30856:42;;30742:164;;;;:::o;7343:201::-;6665:12;:10;:12::i;:::-;6654:23;;:7;:5;:7::i;:::-;:23;;;6646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7452:1:::1;7432:22;;:8;:22;;;;7424:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7508:28;7527:8;7508:18;:28::i;:::-;7343:201:::0;:::o;31887:273::-;31944:4;32000:7;31981:15;:13;:15::i;:::-;:26;;:66;;;;;32034:13;;32024:7;:23;31981:66;:152;;;;;32132:1;18498:8;32085:17;:26;32103:7;32085:26;;;;;;;;;;;;:43;:48;31981:152;31961:172;;31887:273;;;:::o;50448:105::-;50508:7;50535:10;50528:17;;50448:105;:::o;54875:95::-;54940:7;54963:1;54956:8;;54875:95;:::o;24847:1129::-;24914:7;24934:12;24949:7;24934:22;;25017:4;24998:15;:13;:15::i;:::-;:23;24994:915;;25051:13;;25044:4;:20;25040:869;;;25089:14;25106:17;:23;25124:4;25106:23;;;;;;;;;;;;25089:40;;25222:1;18498:8;25195:6;:23;:28;25191:699;;;25714:113;25731:1;25721:6;:11;25714:113;;;25774:17;:25;25792:6;;;;;;;25774:25;;;;;;;;;;;;25765:34;;25714:113;;;25860:6;25853:13;;;;;;25191:699;25066:843;25040:869;24994:915;25937:31;;;;;;;;;;;;;;24847:1129;;;;:::o;37688:652::-;37783:27;37812:23;37853:53;37909:15;37853:71;;38095:7;38089:4;38082:21;38130:22;38124:4;38117:36;38206:4;38200;38190:21;38167:44;;38302:19;38296:26;38277:45;;38033:300;37688:652;;;:::o;38453:645::-;38595:11;38757:15;38751:4;38747:26;38739:34;;38916:15;38905:9;38901:31;38888:44;;39063:15;39052:9;39049:30;39042:4;39031:9;39028:19;39025:55;39015:65;;38453:645;;;;;:::o;49281:159::-;;;;;:::o;47593:309::-;47728:7;47748:16;18899:3;47774:19;:40;;47748:67;;18899:3;47841:31;47852:4;47858:2;47862:9;47841:10;:31::i;:::-;47833:40;;:61;;47826:68;;;47593:309;;;;;:::o;27421:447::-;27501:14;27669:15;27662:5;27658:27;27649:36;;27843:5;27829:11;27805:22;27801:40;27798:51;27791:5;27788:62;27778:72;;27421:447;;;;:::o;50099:158::-;;;;;:::o;2840:98::-;2893:7;2920:10;2913:17;;2840:98;:::o;5245:120::-;4789:8;:6;:8::i;:::-;4781:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5314:5:::1;5304:7;;:15;;;;;;;;;;;;;;;;;;5335:22;5344:12;:10;:12::i;:::-;5335:22;;;;;;:::i;:::-;;;;;;;;5245:120::o:0;7704:191::-;7778:16;7797:6;;;;;;;;;;;7778:25;;7823:8;7814:6;;:17;;;;;;;;;;;;;;;;;;7878:8;7847:40;;7868:8;7847:40;;;;;;;;;;;;7767:128;7704:191;:::o;4986:118::-;4512:8;:6;:8::i;:::-;4511:9;4503:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5056:4:::1;5046:7;;:14;;;;;;;;;;;;;;;;;;5076:20;5083:12;:10;:12::i;:::-;5076:20;;;;;;:::i;:::-;;;;;;;;4986:118::o:0;23479:176::-;23540:7;17728:13;17865:2;23568:18;:25;23587:5;23568:25;;;;;;;;;;;;;;;;:49;;23567:80;23560:87;;23479:176;;;:::o;33718:1529::-;33783:20;33806:13;;33783:36;;33848:1;33834:16;;:2;:16;;;33830:48;;;33859:19;;;;;;;;;;;;;;33830:48;33905:1;33893:8;:13;33889:44;;;33915:18;;;;;;;;;;;;;;33889:44;33946:61;33976:1;33980:2;33984:12;33998:8;33946:21;:61::i;:::-;34489:1;17865:2;34460:1;:25;;34459:31;34447:8;:44;34421:18;:22;34440:2;34421:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;34768:139;34805:2;34859:33;34882:1;34886:2;34890:1;34859:14;:33::i;:::-;34826:30;34847:8;34826:20;:30::i;:::-;:66;34768:18;:139::i;:::-;34734:17;:31;34752:12;34734:31;;;;;;;;;;;:173;;;;34924:15;34942:12;34924:30;;34969:11;34998:8;34983:12;:23;34969:37;;35021:101;35073:9;;;;;;35069:2;35048:35;;35065:1;35048:35;;;;;;;;;;;;35117:3;35107:7;:13;35021:101;;35154:3;35138:13;:19;;;;34195:974;;35179:60;35208:1;35212:2;35216:12;35230:8;35179:20;:60::i;:::-;33772:1475;33718:1529;;:::o;53184:171::-;53263:4;53252:7;:15;53248:102;;53285:12;53278:4;:19;;;;53338:4;53306:29;;:36;;;;;;;;;;;;;;;;;;53248:102;53184:171;:::o;46103:716::-;46266:4;46312:2;46287:45;;;46333:19;:17;:19::i;:::-;46354:4;46360:7;46369:5;46287:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46283:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46587:1;46570:6;:13;:18;46566:235;;;46616:40;;;;;;;;;;;;;;46566:235;46759:6;46753:13;46744:6;46740:2;46736:15;46729:38;46283:529;46456:54;;;46446:64;;;:6;:64;;;;46439:71;;;46103:716;;;;;;:::o;54775:94::-;54827:13;54856:7;54849:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54775:94;:::o;402:723::-;458:13;688:1;679:5;:10;675:53;;;706:10;;;;;;;;;;;;;;;;;;;;;675:53;738:12;753:5;738:20;;769:14;794:78;809:1;801:4;:9;794:78;;827:8;;;;;:::i;:::-;;;;858:2;850:10;;;;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;882:39;;932:154;948:1;939:5;:10;932:154;;976:1;966:11;;;;;:::i;:::-;;;1043:2;1035:5;:10;;;;:::i;:::-;1022:2;:24;;;;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1072:2;1063:11;;;;;:::i;:::-;;;932:154;;;1110:6;1096:21;;;;;402:723;;;;:::o;48478:147::-;48615:6;48478:147;;;;;:::o;29251:322::-;29321:14;29552:1;29542:8;29539:15;29514:23;29510:45;29500:55;;29251:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:398::-;12154:3;12175:83;12256:1;12251:3;12175:83;:::i;:::-;12168:90;;12267:93;12356:3;12267:93;:::i;:::-;12385:1;12380:3;12376:11;12369:18;;11995:398;;;:::o;12399:366::-;12541:3;12562:67;12626:2;12621:3;12562:67;:::i;:::-;12555:74;;12638:93;12727:3;12638:93;:::i;:::-;12756:2;12751:3;12747:12;12740:19;;12399:366;;;:::o;12771:::-;12913:3;12934:67;12998:2;12993:3;12934:67;:::i;:::-;12927:74;;13010:93;13099:3;13010:93;:::i;:::-;13128:2;13123:3;13119:12;13112:19;;12771:366;;;:::o;13143:118::-;13230:24;13248:5;13230:24;:::i;:::-;13225:3;13218:37;13143:118;;:::o;13267:589::-;13492:3;13514:95;13605:3;13596:6;13514:95;:::i;:::-;13507:102;;13626:95;13717:3;13708:6;13626:95;:::i;:::-;13619:102;;13738:92;13826:3;13817:6;13738:92;:::i;:::-;13731:99;;13847:3;13840:10;;13267:589;;;;;;:::o;13862:379::-;14046:3;14068:147;14211:3;14068:147;:::i;:::-;14061:154;;14232:3;14225:10;;13862:379;;;:::o;14247:222::-;14340:4;14378:2;14367:9;14363:18;14355:26;;14391:71;14459:1;14448:9;14444:17;14435:6;14391:71;:::i;:::-;14247:222;;;;:::o;14475:640::-;14670:4;14708:3;14697:9;14693:19;14685:27;;14722:71;14790:1;14779:9;14775:17;14766:6;14722:71;:::i;:::-;14803:72;14871:2;14860:9;14856:18;14847:6;14803:72;:::i;:::-;14885;14953:2;14942:9;14938:18;14929:6;14885:72;:::i;:::-;15004:9;14998:4;14994:20;14989:2;14978:9;14974:18;14967:48;15032:76;15103:4;15094:6;15032:76;:::i;:::-;15024:84;;14475:640;;;;;;;:::o;15121:210::-;15208:4;15246:2;15235:9;15231:18;15223:26;;15259:65;15321:1;15310:9;15306:17;15297:6;15259:65;:::i;:::-;15121:210;;;;:::o;15337:313::-;15450:4;15488:2;15477:9;15473:18;15465:26;;15537:9;15531:4;15527:20;15523:1;15512:9;15508:17;15501:47;15565:78;15638:4;15629:6;15565:78;:::i;:::-;15557:86;;15337:313;;;;:::o;15656:419::-;15822:4;15860:2;15849:9;15845:18;15837:26;;15909:9;15903:4;15899:20;15895:1;15884:9;15880:17;15873:47;15937:131;16063:4;15937:131;:::i;:::-;15929:139;;15656:419;;;:::o;16081:::-;16247:4;16285:2;16274:9;16270:18;16262:26;;16334:9;16328:4;16324:20;16320:1;16309:9;16305:17;16298:47;16362:131;16488:4;16362:131;:::i;:::-;16354:139;;16081:419;;;:::o;16506:::-;16672:4;16710:2;16699:9;16695:18;16687:26;;16759:9;16753:4;16749:20;16745:1;16734:9;16730:17;16723:47;16787:131;16913:4;16787:131;:::i;:::-;16779:139;;16506:419;;;:::o;16931:::-;17097:4;17135:2;17124:9;17120:18;17112:26;;17184:9;17178:4;17174:20;17170:1;17159:9;17155:17;17148:47;17212:131;17338:4;17212:131;:::i;:::-;17204:139;;16931:419;;;:::o;17356:::-;17522:4;17560:2;17549:9;17545:18;17537:26;;17609:9;17603:4;17599:20;17595:1;17584:9;17580:17;17573:47;17637:131;17763:4;17637:131;:::i;:::-;17629:139;;17356:419;;;:::o;17781:::-;17947:4;17985:2;17974:9;17970:18;17962:26;;18034:9;18028:4;18024:20;18020:1;18009:9;18005:17;17998:47;18062:131;18188:4;18062:131;:::i;:::-;18054:139;;17781:419;;;:::o;18206:::-;18372:4;18410:2;18399:9;18395:18;18387:26;;18459:9;18453:4;18449:20;18445:1;18434:9;18430:17;18423:47;18487:131;18613:4;18487:131;:::i;:::-;18479:139;;18206:419;;;:::o;18631:::-;18797:4;18835:2;18824:9;18820:18;18812:26;;18884:9;18878:4;18874:20;18870:1;18859:9;18855:17;18848:47;18912:131;19038:4;18912:131;:::i;:::-;18904:139;;18631:419;;;:::o;19056:::-;19222:4;19260:2;19249:9;19245:18;19237:26;;19309:9;19303:4;19299:20;19295:1;19284:9;19280:17;19273:47;19337:131;19463:4;19337:131;:::i;:::-;19329:139;;19056:419;;;:::o;19481:222::-;19574:4;19612:2;19601:9;19597:18;19589:26;;19625:71;19693:1;19682:9;19678:17;19669:6;19625:71;:::i;:::-;19481:222;;;;:::o;19709:129::-;19743:6;19770:20;;:::i;:::-;19760:30;;19799:33;19827:4;19819:6;19799:33;:::i;:::-;19709:129;;;:::o;19844:75::-;19877:6;19910:2;19904:9;19894:19;;19844:75;:::o;19925:307::-;19986:4;20076:18;20068:6;20065:30;20062:56;;;20098:18;;:::i;:::-;20062:56;20136:29;20158:6;20136:29;:::i;:::-;20128:37;;20220:4;20214;20210:15;20202:23;;19925:307;;;:::o;20238:308::-;20300:4;20390:18;20382:6;20379:30;20376:56;;;20412:18;;:::i;:::-;20376:56;20450:29;20472:6;20450:29;:::i;:::-;20442:37;;20534:4;20528;20524:15;20516:23;;20238:308;;;:::o;20552:141::-;20601:4;20624:3;20616:11;;20647:3;20644:1;20637:14;20681:4;20678:1;20668:18;20660:26;;20552:141;;;:::o;20699:98::-;20750:6;20784:5;20778:12;20768:22;;20699:98;;;:::o;20803:99::-;20855:6;20889:5;20883:12;20873:22;;20803:99;;;:::o;20908:168::-;20991:11;21025:6;21020:3;21013:19;21065:4;21060:3;21056:14;21041:29;;20908:168;;;;:::o;21082:147::-;21183:11;21220:3;21205:18;;21082:147;;;;:::o;21235:169::-;21319:11;21353:6;21348:3;21341:19;21393:4;21388:3;21384:14;21369:29;;21235:169;;;;:::o;21410:148::-;21512:11;21549:3;21534:18;;21410:148;;;;:::o;21564:305::-;21604:3;21623:20;21641:1;21623:20;:::i;:::-;21618:25;;21657:20;21675:1;21657:20;:::i;:::-;21652:25;;21811:1;21743:66;21739:74;21736:1;21733:81;21730:107;;;21817:18;;:::i;:::-;21730:107;21861:1;21858;21854:9;21847:16;;21564:305;;;;:::o;21875:185::-;21915:1;21932:20;21950:1;21932:20;:::i;:::-;21927:25;;21966:20;21984:1;21966:20;:::i;:::-;21961:25;;22005:1;21995:35;;22010:18;;:::i;:::-;21995:35;22052:1;22049;22045:9;22040:14;;21875:185;;;;:::o;22066:348::-;22106:7;22129:20;22147:1;22129:20;:::i;:::-;22124:25;;22163:20;22181:1;22163:20;:::i;:::-;22158:25;;22351:1;22283:66;22279:74;22276:1;22273:81;22268:1;22261:9;22254:17;22250:105;22247:131;;;22358:18;;:::i;:::-;22247:131;22406:1;22403;22399:9;22388:20;;22066:348;;;;:::o;22420:191::-;22460:4;22480:20;22498:1;22480:20;:::i;:::-;22475:25;;22514:20;22532:1;22514:20;:::i;:::-;22509:25;;22553:1;22550;22547:8;22544:34;;;22558:18;;:::i;:::-;22544:34;22603:1;22600;22596:9;22588:17;;22420:191;;;;:::o;22617:96::-;22654:7;22683:24;22701:5;22683:24;:::i;:::-;22672:35;;22617:96;;;:::o;22719:90::-;22753:7;22796:5;22789:13;22782:21;22771:32;;22719:90;;;:::o;22815:149::-;22851:7;22891:66;22884:5;22880:78;22869:89;;22815:149;;;:::o;22970:126::-;23007:7;23047:42;23040:5;23036:54;23025:65;;22970:126;;;:::o;23102:77::-;23139:7;23168:5;23157:16;;23102:77;;;:::o;23185:154::-;23269:6;23264:3;23259;23246:30;23331:1;23322:6;23317:3;23313:16;23306:27;23185:154;;;:::o;23345:307::-;23413:1;23423:113;23437:6;23434:1;23431:13;23423:113;;;23522:1;23517:3;23513:11;23507:18;23503:1;23498:3;23494:11;23487:39;23459:2;23456:1;23452:10;23447:15;;23423:113;;;23554:6;23551:1;23548:13;23545:101;;;23634:1;23625:6;23620:3;23616:16;23609:27;23545:101;23394:258;23345:307;;;:::o;23658:320::-;23702:6;23739:1;23733:4;23729:12;23719:22;;23786:1;23780:4;23776:12;23807:18;23797:81;;23863:4;23855:6;23851:17;23841:27;;23797:81;23925:2;23917:6;23914:14;23894:18;23891:38;23888:84;;;23944:18;;:::i;:::-;23888:84;23709:269;23658:320;;;:::o;23984:281::-;24067:27;24089:4;24067:27;:::i;:::-;24059:6;24055:40;24197:6;24185:10;24182:22;24161:18;24149:10;24146:34;24143:62;24140:88;;;24208:18;;:::i;:::-;24140:88;24248:10;24244:2;24237:22;24027:238;23984:281;;:::o;24271:233::-;24310:3;24333:24;24351:5;24333:24;:::i;:::-;24324:33;;24379:66;24372:5;24369:77;24366:103;;;24449:18;;:::i;:::-;24366:103;24496:1;24489:5;24485:13;24478:20;;24271:233;;;:::o;24510:176::-;24542:1;24559:20;24577:1;24559:20;:::i;:::-;24554:25;;24593:20;24611:1;24593:20;:::i;:::-;24588:25;;24632:1;24622:35;;24637:18;;:::i;:::-;24622:35;24678:1;24675;24671:9;24666:14;;24510:176;;;;:::o;24692:180::-;24740:77;24737:1;24730:88;24837:4;24834:1;24827:15;24861:4;24858:1;24851:15;24878:180;24926:77;24923:1;24916:88;25023:4;25020:1;25013:15;25047:4;25044:1;25037:15;25064:180;25112:77;25109:1;25102:88;25209:4;25206:1;25199:15;25233:4;25230:1;25223:15;25250:180;25298:77;25295:1;25288:88;25395:4;25392:1;25385:15;25419:4;25416:1;25409:15;25436:180;25484:77;25481:1;25474:88;25581:4;25578:1;25571:15;25605:4;25602:1;25595:15;25622:117;25731:1;25728;25721:12;25745:117;25854:1;25851;25844:12;25868:117;25977:1;25974;25967:12;25991:117;26100:1;26097;26090:12;26114:102;26155:6;26206:2;26202:7;26197:2;26190:5;26186:14;26182:28;26172:38;;26114:102;;;:::o;26222:170::-;26362:22;26358:1;26350:6;26346:14;26339:46;26222:170;:::o;26398:225::-;26538:34;26534:1;26526:6;26522:14;26515:58;26607:8;26602:2;26594:6;26590:15;26583:33;26398:225;:::o;26629:170::-;26769:22;26765:1;26757:6;26753:14;26746:46;26629:170;:::o;26805:180::-;26945:32;26941:1;26933:6;26929:14;26922:56;26805:180;:::o;26991:166::-;27131:18;27127:1;27119:6;27115:14;27108:42;26991:166;:::o;27163:182::-;27303:34;27299:1;27291:6;27287:14;27280:58;27163:182;:::o;27351:234::-;27491:34;27487:1;27479:6;27475:14;27468:58;27560:17;27555:2;27547:6;27543:15;27536:42;27351:234;:::o;27591:114::-;;:::o;27711:170::-;27851:22;27847:1;27839:6;27835:14;27828:46;27711:170;:::o;27887:169::-;28027:21;28023:1;28015:6;28011:14;28004:45;27887:169;:::o;28062:122::-;28135:24;28153:5;28135:24;:::i;:::-;28128:5;28125:35;28115:63;;28174:1;28171;28164:12;28115:63;28062:122;:::o;28190:116::-;28260:21;28275:5;28260:21;:::i;:::-;28253:5;28250:32;28240:60;;28296:1;28293;28286:12;28240:60;28190:116;:::o;28312:120::-;28384:23;28401:5;28384:23;:::i;:::-;28377:5;28374:34;28364:62;;28422:1;28419;28412:12;28364:62;28312:120;:::o;28438:122::-;28511:24;28529:5;28511:24;:::i;:::-;28504:5;28501:35;28491:63;;28550:1;28547;28540:12;28491:63;28438:122;:::o

Swarm Source

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