ETH Price: $2,784.66 (+6.09%)

Token

GAM7 (GAM7)
 

Overview

Max Total Supply

871 GAM7

Holders

618

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GAM7
0xa52d5825e5bec4003cedc86c8883e3ba156ee671
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:
GAM7

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-13
*/

// Sources flattened with hardhat v2.9.9 https://hardhat.org

// File erc721a/contracts/[email protected]

// SPDX-License-Identifier: MIT
// 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/[email protected]

// 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 @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/security/[email protected]

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


// File contracts/GAM7.sol


pragma solidity >=0.8.9 <0.9.0;





contract GAM7 is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    mapping(address => uint256) public Yogi;
    uint256 public yogaFee;
    uint256 public max;
    uint256 public maxMintAmountPerTx = 5;
    bool public freeMintpaused = false;
    bool public paused = false;
    uint256 public freeMintPerWallet = 1;

    string public baseURI = "https://vitalik-yoga.mypinata.cloud/ipfs/QmZY4dMc7qacduA9dgSUHAx8fjsurRERhDaUfEYJJuGqLd/";

    constructor(
        string memory _tokenName,
        string memory _tokenSymbol
    ) ERC721A(_tokenName, _tokenSymbol) {
        yogaFee = 0.0003 ether;
        max = 5000;
    }

    modifier mintValidation(uint256 _mintAmount) {
        require(
            Yogi[msg.sender] <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            _mintAmount > 0 && _mintAmount <= maxMintAmountPerTx,
            "Invalid mint amount!"
        );
        require(
            totalSupply() + _mintAmount <= max,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintValidation(_mintAmount)
    {
        require(!paused, "The contract is paused!");
        if (Yogi[msg.sender] < freeMintPerWallet) {
            require(!freeMintpaused, "The free mint is paused!");
            if (_mintAmount < freeMintPerWallet) _mintAmount = freeMintPerWallet;
            require(
                msg.value >= (_mintAmount - freeMintPerWallet) * yogaFee,
                "Insufficient funds!"
            );
            Yogi[msg.sender] += _mintAmount;
            _mint(msg.sender, _mintAmount);
        } else {
            require(
                msg.value >= _mintAmount * yogaFee,
                "Insufficient funds!"
            );
            Yogi[msg.sender] += _mintAmount;
            _mint(msg.sender, _mintAmount);
        }
    }

    function mintV2(uint256 _mintAmount, address _receiver)
        public
        mintValidation(_mintAmount)
        onlyOwner
    {
        _mint(_receiver, _mintAmount);
    }

    function mintV3(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(
            totalSupply() + _mintAmount <= max,
            "Max supply exceeded!"
        );
        _mint(_receiver, _mintAmount);
    }

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

    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(),
                        ".json"
                    )
                )
                : "";
    }

    // Set max mint amount per transaction
    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    // Set base URI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    // Set mint price
    function setMintPrice(uint256 price) public onlyOwner {
        yogaFee = price;
    }

    // Pause the mint
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    // Pause the free mint
    function setFreeMintPaused(bool _state) public onlyOwner {
        freeMintpaused = _state;
    }
    
    // Withdraw
    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Yogi","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintV3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yogaFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526005600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506001600f556040518060800160405280605881526020016200392660589139601090805190602001906200007592919062000213565b503480156200008357600080fd5b506040516200397e3803806200397e8339818101604052810190620000a9919062000460565b81818160029080519060200190620000c392919062000213565b508060039080519060200190620000dc92919062000213565b50620000ed6200013c60201b60201c565b600081905550505062000115620001096200014560201b60201c565b6200014d60201b60201c565b6001600981905550660110d9316ec000600b81905550611388600c81905550505062000549565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002219062000514565b90600052602060002090601f01602090048101928262000245576000855562000291565b82601f106200026057805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029057825182559160200191906001019062000273565b5b509050620002a09190620002a4565b5090565b5b80821115620002bf576000816000905550600101620002a5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200032c82620002e1565b810181811067ffffffffffffffff821117156200034e576200034d620002f2565b5b80604052505050565b600062000363620002c3565b905062000371828262000321565b919050565b600067ffffffffffffffff821115620003945762000393620002f2565b5b6200039f82620002e1565b9050602081019050919050565b60005b83811015620003cc578082015181840152602081019050620003af565b83811115620003dc576000848401525b50505050565b6000620003f9620003f38462000376565b62000357565b905082815260208101848484011115620004185762000417620002dc565b5b62000425848285620003ac565b509392505050565b600082601f830112620004455762000444620002d7565b5b815162000457848260208601620003e2565b91505092915050565b600080604083850312156200047a5762000479620002cd565b5b600083015167ffffffffffffffff8111156200049b576200049a620002d2565b5b620004a9858286016200042d565b925050602083015167ffffffffffffffff811115620004cd57620004cc620002d2565b5b620004db858286016200042d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052d57607f821691505b602082108103620005435762000542620004e5565b5b50919050565b6133cd80620005596000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c1ab22ec1161006f578063c1ab22ec146106ea578063c87b56dd14610715578063e985e9c514610752578063f2fde38b1461078f578063f4a0a528146107b8576101f9565b8063a22cb46514610632578063af81ecb31461065b578063b071401b14610698578063b88d4fde146106c1576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059557806394354fd0146105c057806395d89b41146105eb578063a0712d6814610616576101f9565b8063715018a614610501578063755a5a61146105185780638746ab2e146105435780638c55f6d51461056c576101f9565b80633b037613116101905780635c975abb1161015f5780635c975abb146104065780636352211e146104315780636ac5db191461046e5780636c0360eb1461049957806370a08231146104c4576101f9565b80633b037613146103725780633ccfd60b1461039d57806342842e0e146103b457806355f804b3146103dd576101f9565b80631505e4bc116101cc5780631505e4bc146102cc57806316c38b3c146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612476565b6107e1565b60405161023291906124be565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190612572565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906125ca565b610905565b60405161029a9190612638565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061267f565b610981565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906126bf565b610ac2565b005b34801561030157600080fd5b5061031c6004803603810190610317919061272b565b610b2f565b005b34801561032a57600080fd5b50610333610b54565b6040516103409190612767565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612782565b610b6b565b005b34801561037e57600080fd5b50610387610e8d565b6040516103949190612767565b60405180910390f35b3480156103a957600080fd5b506103b2610e93565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612782565b610f70565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061290a565b610f90565b005b34801561041257600080fd5b5061041b610fb2565b60405161042891906124be565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906125ca565b610fc5565b6040516104659190612638565b60405180910390f35b34801561047a57600080fd5b50610483610fd7565b6040516104909190612767565b60405180910390f35b3480156104a557600080fd5b506104ae610fdd565b6040516104bb9190612572565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612953565b61106b565b6040516104f89190612767565b60405180910390f35b34801561050d57600080fd5b50610516611123565b005b34801561052457600080fd5b5061052d611137565b60405161053a91906124be565b60405180910390f35b34801561054f57600080fd5b5061056a6004803603810190610565919061272b565b61114a565b005b34801561057857600080fd5b50610593600480360381019061058e91906126bf565b61116f565b005b3480156105a157600080fd5b506105aa6112b3565b6040516105b79190612638565b60405180910390f35b3480156105cc57600080fd5b506105d56112dd565b6040516105e29190612767565b60405180910390f35b3480156105f757600080fd5b506106006112e3565b60405161060d9190612572565b60405180910390f35b610630600480360381019061062b91906125ca565b611375565b005b34801561063e57600080fd5b5061065960048036038101906106549190612980565b611712565b005b34801561066757600080fd5b50610682600480360381019061067d9190612953565b611889565b60405161068f9190612767565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906125ca565b6118a1565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190612a61565b6118b3565b005b3480156106f657600080fd5b506106ff611926565b60405161070c9190612767565b60405180910390f35b34801561072157600080fd5b5061073c600480360381019061073791906125ca565b61192c565b6040516107499190612572565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612ae4565b611a56565b60405161078691906124be565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612953565b611aea565b005b3480156107c457600080fd5b506107df60048036038101906107da91906125ca565b611b6d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088290612b53565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612b53565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b600061091082611b7f565b610946576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82610fc5565b90508073ffffffffffffffffffffffffffffffffffffffff166109ad611bde565b73ffffffffffffffffffffffffffffffffffffffff1614610a10576109d9816109d4611bde565b611a56565b610a0f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aca611be6565b600c5482610ad6610b54565b610ae09190612bb3565b1115610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890612c55565b60405180910390fd5b610b2b8183611c64565b5050565b610b37611be6565b80600e60016101000a81548160ff02191690831515021790555050565b6000610b5e611e36565b6001546000540303905090565b6000610b7682611e3f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bdd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610be984611f0b565b91509150610bff8187610bfa611bde565b611f2d565b610c4b57610c1486610c0f611bde565b611a56565b610c4a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cb1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cbe8686866001611f71565b8015610cc957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d9785610d73888887611f77565b7c020000000000000000000000000000000000000000000000000000000017611f9f565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e1d5760006001850190506000600460008381526020019081526020016000205403610e1b576000548114610e1a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e858686866001611fca565b505050505050565b600b5481565b610e9b611be6565b600260095403610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790612cc1565b60405180910390fd5b60026009819055506000610ef26112b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f1590612d12565b60006040518083038185875af1925050503d8060008114610f52576040519150601f19603f3d011682016040523d82523d6000602084013e610f57565b606091505b5050905080610f6557600080fd5b506001600981905550565b610f8b838383604051806020016040528060008152506118b3565b505050565b610f98611be6565b8060109080519060200190610fae929190612367565b5050565b600e60019054906101000a900460ff1681565b6000610fd082611e3f565b9050919050565b600c5481565b60108054610fea90612b53565b80601f016020809104026020016040519081016040528092919081815260200182805461101690612b53565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61112b611be6565b6111356000611fd0565b565b600e60009054906101000a900460ff1681565b611152611be6565b80600e60006101000a81548160ff02191690831515021790555050565b81600d54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90612d73565b60405180910390fd5b6000811180156112065750600d548111155b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612d73565b60405180910390fd5b600c5481611251610b54565b61125b9190612bb3565b111561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390612c55565b60405180910390fd5b6112a4611be6565b6112ae8284611c64565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600380546112f290612b53565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90612b53565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b80600d54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612d73565b60405180910390fd5b60008111801561140c5750600d548111155b61144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290612d73565b60405180910390fd5b600c5481611457610b54565b6114619190612bb3565b11156114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990612c55565b60405180910390fd5b600e60019054906101000a900460ff16156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612ddf565b60405180910390fd5b600f54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561165d57600e60009054906101000a900460ff161561158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290612e4b565b60405180910390fd5b600f5482101561159b57600f5491505b600b54600f54836115ac9190612e6b565b6115b69190612e9f565b3410156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90612f45565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116479190612bb3565b925050819055506116583383611c64565b61170e565b600b548261166b9190612e9f565b3410156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490612f45565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116fc9190612bb3565b9250508190555061170d3383611c64565b5b5050565b61171a611bde565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361177e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061178b611bde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611838611bde565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161187d91906124be565b60405180910390a35050565b600a6020528060005260406000206000915090505481565b6118a9611be6565b80600d8190555050565b6118be848484610b6b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611920576118e984848484612096565b61191f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b606061193782611b7f565b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612fd7565b60405180910390fd5b60006010805461198590612b53565b80601f01602080910402602001604051908101604052809291908181526020018280546119b190612b53565b80156119fe5780601f106119d3576101008083540402835291602001916119fe565b820191906000526020600020905b8154815290600101906020018083116119e157829003601f168201915b505050505090506000815111611a235760405180602001604052806000815250611a4e565b80611a2d846121e6565b604051602001611a3e92919061307f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af2611be6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613120565b60405180910390fd5b611b6a81611fd0565b50565b611b75611be6565b80600b8190555050565b600081611b8a611e36565b11158015611b99575060005482105b8015611bd7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bee612346565b73ffffffffffffffffffffffffffffffffffffffff16611c0c6112b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c599061318c565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611d0a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d176000848385611f71565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8e83611d7f6000866000611f77565b611d888561234e565b17611f9f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611db257806000819055505050611e316000848385611fca565b505050565b60006001905090565b60008082905080611e4e611e36565b11611ed457600054811015611ed35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ed1575b60008103611ec7576004600083600190039350838152602001908152602001600020549050611e9d565b8092505050611f06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f8e86868461235e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120bc611bde565b8786866040518563ffffffff1660e01b81526004016120de9493929190613201565b6020604051808303816000875af192505050801561211a57506040513d601f19601f820116820180604052508101906121179190613262565b60015b612193573d806000811461214a576040519150601f19603f3d011682016040523d82523d6000602084013e61214f565b606091505b50600081510361218b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361222d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612341565b600082905060005b6000821461225f5780806122489061328f565b915050600a826122589190613306565b9150612235565b60008167ffffffffffffffff81111561227b5761227a6127df565b5b6040519080825280601f01601f1916602001820160405280156122ad5781602001600182028036833780820191505090505b5090505b6000851461233a576001826122c69190612e6b565b9150600a856122d59190613337565b60306122e19190612bb3565b60f81b8183815181106122f7576122f6613368565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123339190613306565b94506122b1565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b82805461237390612b53565b90600052602060002090601f01602090048101928261239557600085556123dc565b82601f106123ae57805160ff19168380011785556123dc565b828001600101855582156123dc579182015b828111156123db5782518255916020019190600101906123c0565b5b5090506123e991906123ed565b5090565b5b808211156124065760008160009055506001016123ee565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124538161241e565b811461245e57600080fd5b50565b6000813590506124708161244a565b92915050565b60006020828403121561248c5761248b612414565b5b600061249a84828501612461565b91505092915050565b60008115159050919050565b6124b8816124a3565b82525050565b60006020820190506124d360008301846124af565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125135780820151818401526020810190506124f8565b83811115612522576000848401525b50505050565b6000601f19601f8301169050919050565b6000612544826124d9565b61254e81856124e4565b935061255e8185602086016124f5565b61256781612528565b840191505092915050565b6000602082019050818103600083015261258c8184612539565b905092915050565b6000819050919050565b6125a781612594565b81146125b257600080fd5b50565b6000813590506125c48161259e565b92915050565b6000602082840312156125e0576125df612414565b5b60006125ee848285016125b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612622826125f7565b9050919050565b61263281612617565b82525050565b600060208201905061264d6000830184612629565b92915050565b61265c81612617565b811461266757600080fd5b50565b60008135905061267981612653565b92915050565b6000806040838503121561269657612695612414565b5b60006126a48582860161266a565b92505060206126b5858286016125b5565b9150509250929050565b600080604083850312156126d6576126d5612414565b5b60006126e4858286016125b5565b92505060206126f58582860161266a565b9150509250929050565b612708816124a3565b811461271357600080fd5b50565b600081359050612725816126ff565b92915050565b60006020828403121561274157612740612414565b5b600061274f84828501612716565b91505092915050565b61276181612594565b82525050565b600060208201905061277c6000830184612758565b92915050565b60008060006060848603121561279b5761279a612414565b5b60006127a98682870161266a565b93505060206127ba8682870161266a565b92505060406127cb868287016125b5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281782612528565b810181811067ffffffffffffffff82111715612836576128356127df565b5b80604052505050565b600061284961240a565b9050612855828261280e565b919050565b600067ffffffffffffffff821115612875576128746127df565b5b61287e82612528565b9050602081019050919050565b82818337600083830152505050565b60006128ad6128a88461285a565b61283f565b9050828152602081018484840111156128c9576128c86127da565b5b6128d484828561288b565b509392505050565b600082601f8301126128f1576128f06127d5565b5b813561290184826020860161289a565b91505092915050565b6000602082840312156129205761291f612414565b5b600082013567ffffffffffffffff81111561293e5761293d612419565b5b61294a848285016128dc565b91505092915050565b60006020828403121561296957612968612414565b5b60006129778482850161266a565b91505092915050565b6000806040838503121561299757612996612414565b5b60006129a58582860161266a565b92505060206129b685828601612716565b9150509250929050565b600067ffffffffffffffff8211156129db576129da6127df565b5b6129e482612528565b9050602081019050919050565b6000612a046129ff846129c0565b61283f565b905082815260208101848484011115612a2057612a1f6127da565b5b612a2b84828561288b565b509392505050565b600082601f830112612a4857612a476127d5565b5b8135612a588482602086016129f1565b91505092915050565b60008060008060808587031215612a7b57612a7a612414565b5b6000612a898782880161266a565b9450506020612a9a8782880161266a565b9350506040612aab878288016125b5565b925050606085013567ffffffffffffffff811115612acc57612acb612419565b5b612ad887828801612a33565b91505092959194509250565b60008060408385031215612afb57612afa612414565b5b6000612b098582860161266a565b9250506020612b1a8582860161266a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b6b57607f821691505b602082108103612b7e57612b7d612b24565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bbe82612594565b9150612bc983612594565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bfe57612bfd612b84565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612c3f6014836124e4565b9150612c4a82612c09565b602082019050919050565b60006020820190508181036000830152612c6e81612c32565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612cab601f836124e4565b9150612cb682612c75565b602082019050919050565b60006020820190508181036000830152612cda81612c9e565b9050919050565b600081905092915050565b50565b6000612cfc600083612ce1565b9150612d0782612cec565b600082019050919050565b6000612d1d82612cef565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612d5d6014836124e4565b9150612d6882612d27565b602082019050919050565b60006020820190508181036000830152612d8c81612d50565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612dc96017836124e4565b9150612dd482612d93565b602082019050919050565b60006020820190508181036000830152612df881612dbc565b9050919050565b7f5468652066726565206d696e7420697320706175736564210000000000000000600082015250565b6000612e356018836124e4565b9150612e4082612dff565b602082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b6000612e7682612594565b9150612e8183612594565b925082821015612e9457612e93612b84565b5b828203905092915050565b6000612eaa82612594565b9150612eb583612594565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612eee57612eed612b84565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f2f6013836124e4565b9150612f3a82612ef9565b602082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fc1602f836124e4565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b600081905092915050565b600061300d826124d9565b6130178185612ff7565b93506130278185602086016124f5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613069600583612ff7565b915061307482613033565b600582019050919050565b600061308b8285613002565b91506130978284613002565b91506130a28261305c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061310a6026836124e4565b9150613115826130ae565b604082019050919050565b60006020820190508181036000830152613139816130fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131766020836124e4565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131d3826131ac565b6131dd81856131b7565b93506131ed8185602086016124f5565b6131f681612528565b840191505092915050565b60006080820190506132166000830187612629565b6132236020830186612629565b6132306040830185612758565b818103606083015261324281846131c8565b905095945050505050565b60008151905061325c8161244a565b92915050565b60006020828403121561327857613277612414565b5b60006132868482850161324d565b91505092915050565b600061329a82612594565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132cc576132cb612b84565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061331182612594565b915061331c83612594565b92508261332c5761332b6132d7565b5b828204905092915050565b600061334282612594565b915061334d83612594565b92508261335d5761335c6132d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206a933c626a8d325ede665638fe3e3c306ffb398974523fee6ab48eb4e97aa5ee64736f6c634300080e003368747470733a2f2f766974616c696b2d796f67612e6d7970696e6174612e636c6f75642f697066732f516d5a5934644d6337716163647541396467535548417838666a737572524552684461556645594a4a7547714c642f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000447414d3700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447414d3700000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063a22cb465116100a0578063c1ab22ec1161006f578063c1ab22ec146106ea578063c87b56dd14610715578063e985e9c514610752578063f2fde38b1461078f578063f4a0a528146107b8576101f9565b8063a22cb46514610632578063af81ecb31461065b578063b071401b14610698578063b88d4fde146106c1576101f9565b80638da5cb5b116100dc5780638da5cb5b1461059557806394354fd0146105c057806395d89b41146105eb578063a0712d6814610616576101f9565b8063715018a614610501578063755a5a61146105185780638746ab2e146105435780638c55f6d51461056c576101f9565b80633b037613116101905780635c975abb1161015f5780635c975abb146104065780636352211e146104315780636ac5db191461046e5780636c0360eb1461049957806370a08231146104c4576101f9565b80633b037613146103725780633ccfd60b1461039d57806342842e0e146103b457806355f804b3146103dd576101f9565b80631505e4bc116101cc5780631505e4bc146102cc57806316c38b3c146102f557806318160ddd1461031e57806323b872dd14610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612476565b6107e1565b60405161023291906124be565b60405180910390f35b34801561024757600080fd5b50610250610873565b60405161025d9190612572565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906125ca565b610905565b60405161029a9190612638565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c5919061267f565b610981565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906126bf565b610ac2565b005b34801561030157600080fd5b5061031c6004803603810190610317919061272b565b610b2f565b005b34801561032a57600080fd5b50610333610b54565b6040516103409190612767565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190612782565b610b6b565b005b34801561037e57600080fd5b50610387610e8d565b6040516103949190612767565b60405180910390f35b3480156103a957600080fd5b506103b2610e93565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612782565b610f70565b005b3480156103e957600080fd5b5061040460048036038101906103ff919061290a565b610f90565b005b34801561041257600080fd5b5061041b610fb2565b60405161042891906124be565b60405180910390f35b34801561043d57600080fd5b50610458600480360381019061045391906125ca565b610fc5565b6040516104659190612638565b60405180910390f35b34801561047a57600080fd5b50610483610fd7565b6040516104909190612767565b60405180910390f35b3480156104a557600080fd5b506104ae610fdd565b6040516104bb9190612572565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612953565b61106b565b6040516104f89190612767565b60405180910390f35b34801561050d57600080fd5b50610516611123565b005b34801561052457600080fd5b5061052d611137565b60405161053a91906124be565b60405180910390f35b34801561054f57600080fd5b5061056a6004803603810190610565919061272b565b61114a565b005b34801561057857600080fd5b50610593600480360381019061058e91906126bf565b61116f565b005b3480156105a157600080fd5b506105aa6112b3565b6040516105b79190612638565b60405180910390f35b3480156105cc57600080fd5b506105d56112dd565b6040516105e29190612767565b60405180910390f35b3480156105f757600080fd5b506106006112e3565b60405161060d9190612572565b60405180910390f35b610630600480360381019061062b91906125ca565b611375565b005b34801561063e57600080fd5b5061065960048036038101906106549190612980565b611712565b005b34801561066757600080fd5b50610682600480360381019061067d9190612953565b611889565b60405161068f9190612767565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba91906125ca565b6118a1565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190612a61565b6118b3565b005b3480156106f657600080fd5b506106ff611926565b60405161070c9190612767565b60405180910390f35b34801561072157600080fd5b5061073c600480360381019061073791906125ca565b61192c565b6040516107499190612572565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612ae4565b611a56565b60405161078691906124be565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612953565b611aea565b005b3480156107c457600080fd5b506107df60048036038101906107da91906125ca565b611b6d565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461088290612b53565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90612b53565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b5050505050905090565b600061091082611b7f565b610946576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098c82610fc5565b90508073ffffffffffffffffffffffffffffffffffffffff166109ad611bde565b73ffffffffffffffffffffffffffffffffffffffff1614610a10576109d9816109d4611bde565b611a56565b610a0f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aca611be6565b600c5482610ad6610b54565b610ae09190612bb3565b1115610b21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1890612c55565b60405180910390fd5b610b2b8183611c64565b5050565b610b37611be6565b80600e60016101000a81548160ff02191690831515021790555050565b6000610b5e611e36565b6001546000540303905090565b6000610b7682611e3f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bdd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610be984611f0b565b91509150610bff8187610bfa611bde565b611f2d565b610c4b57610c1486610c0f611bde565b611a56565b610c4a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cb1576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cbe8686866001611f71565b8015610cc957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d9785610d73888887611f77565b7c020000000000000000000000000000000000000000000000000000000017611f9f565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e1d5760006001850190506000600460008381526020019081526020016000205403610e1b576000548114610e1a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e858686866001611fca565b505050505050565b600b5481565b610e9b611be6565b600260095403610ee0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed790612cc1565b60405180910390fd5b60026009819055506000610ef26112b3565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f1590612d12565b60006040518083038185875af1925050503d8060008114610f52576040519150601f19603f3d011682016040523d82523d6000602084013e610f57565b606091505b5050905080610f6557600080fd5b506001600981905550565b610f8b838383604051806020016040528060008152506118b3565b505050565b610f98611be6565b8060109080519060200190610fae929190612367565b5050565b600e60019054906101000a900460ff1681565b6000610fd082611e3f565b9050919050565b600c5481565b60108054610fea90612b53565b80601f016020809104026020016040519081016040528092919081815260200182805461101690612b53565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110d2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61112b611be6565b6111356000611fd0565b565b600e60009054906101000a900460ff1681565b611152611be6565b80600e60006101000a81548160ff02191690831515021790555050565b81600d54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90612d73565b60405180910390fd5b6000811180156112065750600d548111155b611245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123c90612d73565b60405180910390fd5b600c5481611251610b54565b61125b9190612bb3565b111561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390612c55565b60405180910390fd5b6112a4611be6565b6112ae8284611c64565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600380546112f290612b53565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90612b53565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b80600d54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156113fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f190612d73565b60405180910390fd5b60008111801561140c5750600d548111155b61144b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144290612d73565b60405180910390fd5b600c5481611457610b54565b6114619190612bb3565b11156114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990612c55565b60405180910390fd5b600e60019054906101000a900460ff16156114f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e990612ddf565b60405180910390fd5b600f54600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561165d57600e60009054906101000a900460ff161561158b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158290612e4b565b60405180910390fd5b600f5482101561159b57600f5491505b600b54600f54836115ac9190612e6b565b6115b69190612e9f565b3410156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90612f45565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116479190612bb3565b925050819055506116583383611c64565b61170e565b600b548261166b9190612e9f565b3410156116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a490612f45565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116fc9190612bb3565b9250508190555061170d3383611c64565b5b5050565b61171a611bde565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361177e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061178b611bde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611838611bde565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161187d91906124be565b60405180910390a35050565b600a6020528060005260406000206000915090505481565b6118a9611be6565b80600d8190555050565b6118be848484610b6b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611920576118e984848484612096565b61191f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b606061193782611b7f565b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d90612fd7565b60405180910390fd5b60006010805461198590612b53565b80601f01602080910402602001604051908101604052809291908181526020018280546119b190612b53565b80156119fe5780601f106119d3576101008083540402835291602001916119fe565b820191906000526020600020905b8154815290600101906020018083116119e157829003601f168201915b505050505090506000815111611a235760405180602001604052806000815250611a4e565b80611a2d846121e6565b604051602001611a3e92919061307f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611af2611be6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5890613120565b60405180910390fd5b611b6a81611fd0565b50565b611b75611be6565b80600b8190555050565b600081611b8a611e36565b11158015611b99575060005482105b8015611bd7575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611bee612346565b73ffffffffffffffffffffffffffffffffffffffff16611c0c6112b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c599061318c565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611d0a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d176000848385611f71565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611d8e83611d7f6000866000611f77565b611d888561234e565b17611f9f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611db257806000819055505050611e316000848385611fca565b505050565b60006001905090565b60008082905080611e4e611e36565b11611ed457600054811015611ed35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ed1575b60008103611ec7576004600083600190039350838152602001908152602001600020549050611e9d565b8092505050611f06565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f8e86868461235e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120bc611bde565b8786866040518563ffffffff1660e01b81526004016120de9493929190613201565b6020604051808303816000875af192505050801561211a57506040513d601f19601f820116820180604052508101906121179190613262565b60015b612193573d806000811461214a576040519150601f19603f3d011682016040523d82523d6000602084013e61214f565b606091505b50600081510361218b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361222d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612341565b600082905060005b6000821461225f5780806122489061328f565b915050600a826122589190613306565b9150612235565b60008167ffffffffffffffff81111561227b5761227a6127df565b5b6040519080825280601f01601f1916602001820160405280156122ad5781602001600182028036833780820191505090505b5090505b6000851461233a576001826122c69190612e6b565b9150600a856122d59190613337565b60306122e19190612bb3565b60f81b8183815181106122f7576122f6613368565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123339190613306565b94506122b1565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b82805461237390612b53565b90600052602060002090601f01602090048101928261239557600085556123dc565b82601f106123ae57805160ff19168380011785556123dc565b828001600101855582156123dc579182015b828111156123db5782518255916020019190600101906123c0565b5b5090506123e991906123ed565b5090565b5b808211156124065760008160009055506001016123ee565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124538161241e565b811461245e57600080fd5b50565b6000813590506124708161244a565b92915050565b60006020828403121561248c5761248b612414565b5b600061249a84828501612461565b91505092915050565b60008115159050919050565b6124b8816124a3565b82525050565b60006020820190506124d360008301846124af565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125135780820151818401526020810190506124f8565b83811115612522576000848401525b50505050565b6000601f19601f8301169050919050565b6000612544826124d9565b61254e81856124e4565b935061255e8185602086016124f5565b61256781612528565b840191505092915050565b6000602082019050818103600083015261258c8184612539565b905092915050565b6000819050919050565b6125a781612594565b81146125b257600080fd5b50565b6000813590506125c48161259e565b92915050565b6000602082840312156125e0576125df612414565b5b60006125ee848285016125b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612622826125f7565b9050919050565b61263281612617565b82525050565b600060208201905061264d6000830184612629565b92915050565b61265c81612617565b811461266757600080fd5b50565b60008135905061267981612653565b92915050565b6000806040838503121561269657612695612414565b5b60006126a48582860161266a565b92505060206126b5858286016125b5565b9150509250929050565b600080604083850312156126d6576126d5612414565b5b60006126e4858286016125b5565b92505060206126f58582860161266a565b9150509250929050565b612708816124a3565b811461271357600080fd5b50565b600081359050612725816126ff565b92915050565b60006020828403121561274157612740612414565b5b600061274f84828501612716565b91505092915050565b61276181612594565b82525050565b600060208201905061277c6000830184612758565b92915050565b60008060006060848603121561279b5761279a612414565b5b60006127a98682870161266a565b93505060206127ba8682870161266a565b92505060406127cb868287016125b5565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281782612528565b810181811067ffffffffffffffff82111715612836576128356127df565b5b80604052505050565b600061284961240a565b9050612855828261280e565b919050565b600067ffffffffffffffff821115612875576128746127df565b5b61287e82612528565b9050602081019050919050565b82818337600083830152505050565b60006128ad6128a88461285a565b61283f565b9050828152602081018484840111156128c9576128c86127da565b5b6128d484828561288b565b509392505050565b600082601f8301126128f1576128f06127d5565b5b813561290184826020860161289a565b91505092915050565b6000602082840312156129205761291f612414565b5b600082013567ffffffffffffffff81111561293e5761293d612419565b5b61294a848285016128dc565b91505092915050565b60006020828403121561296957612968612414565b5b60006129778482850161266a565b91505092915050565b6000806040838503121561299757612996612414565b5b60006129a58582860161266a565b92505060206129b685828601612716565b9150509250929050565b600067ffffffffffffffff8211156129db576129da6127df565b5b6129e482612528565b9050602081019050919050565b6000612a046129ff846129c0565b61283f565b905082815260208101848484011115612a2057612a1f6127da565b5b612a2b84828561288b565b509392505050565b600082601f830112612a4857612a476127d5565b5b8135612a588482602086016129f1565b91505092915050565b60008060008060808587031215612a7b57612a7a612414565b5b6000612a898782880161266a565b9450506020612a9a8782880161266a565b9350506040612aab878288016125b5565b925050606085013567ffffffffffffffff811115612acc57612acb612419565b5b612ad887828801612a33565b91505092959194509250565b60008060408385031215612afb57612afa612414565b5b6000612b098582860161266a565b9250506020612b1a8582860161266a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b6b57607f821691505b602082108103612b7e57612b7d612b24565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bbe82612594565b9150612bc983612594565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bfe57612bfd612b84565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612c3f6014836124e4565b9150612c4a82612c09565b602082019050919050565b60006020820190508181036000830152612c6e81612c32565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612cab601f836124e4565b9150612cb682612c75565b602082019050919050565b60006020820190508181036000830152612cda81612c9e565b9050919050565b600081905092915050565b50565b6000612cfc600083612ce1565b9150612d0782612cec565b600082019050919050565b6000612d1d82612cef565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612d5d6014836124e4565b9150612d6882612d27565b602082019050919050565b60006020820190508181036000830152612d8c81612d50565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612dc96017836124e4565b9150612dd482612d93565b602082019050919050565b60006020820190508181036000830152612df881612dbc565b9050919050565b7f5468652066726565206d696e7420697320706175736564210000000000000000600082015250565b6000612e356018836124e4565b9150612e4082612dff565b602082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b6000612e7682612594565b9150612e8183612594565b925082821015612e9457612e93612b84565b5b828203905092915050565b6000612eaa82612594565b9150612eb583612594565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612eee57612eed612b84565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f2f6013836124e4565b9150612f3a82612ef9565b602082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612fc1602f836124e4565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b600081905092915050565b600061300d826124d9565b6130178185612ff7565b93506130278185602086016124f5565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613069600583612ff7565b915061307482613033565b600582019050919050565b600061308b8285613002565b91506130978284613002565b91506130a28261305c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061310a6026836124e4565b9150613115826130ae565b604082019050919050565b60006020820190508181036000830152613139816130fd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006131766020836124e4565b915061318182613140565b602082019050919050565b600060208201905081810360008301526131a581613169565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131d3826131ac565b6131dd81856131b7565b93506131ed8185602086016124f5565b6131f681612528565b840191505092915050565b60006080820190506132166000830187612629565b6132236020830186612629565b6132306040830185612758565b818103606083015261324281846131c8565b905095945050505050565b60008151905061325c8161244a565b92915050565b60006020828403121561327857613277612414565b5b60006132868482850161324d565b91505092915050565b600061329a82612594565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132cc576132cb612b84565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061331182612594565b915061331c83612594565b92508261332c5761332b6132d7565b5b828204905092915050565b600061334282612594565b915061334d83612594565b92508261335d5761335c6132d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212206a933c626a8d325ede665638fe3e3c306ffb398974523fee6ab48eb4e97aa5ee64736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000447414d3700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447414d3700000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): GAM7
Arg [1] : _tokenSymbol (string): GAM7

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 47414d3700000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 47414d3700000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62508:4187:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14697:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20344:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22290:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21838:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64686:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66169:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13751:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31555:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62646:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66416:160;;;;;;;;;;;;;:::i;:::-;;23180:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65915:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62785:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20133:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62675:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62863:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15376:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47615:103;;;;;;;;;;;;;:::i;:::-;;62744:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66288:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64497:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46967:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62700:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20513:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63621:868;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22566:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62600:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65727:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23436:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62818:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65039:636;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22945:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47873:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66050:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14697:615;14782:4;15097:10;15082:25;;:11;:25;;;;:102;;;;15174:10;15159:25;;:11;:25;;;;15082:102;:179;;;;15251:10;15236:25;;:11;:25;;;;15082:179;15062:199;;14697:615;;;:::o;20344:100::-;20398:13;20431:5;20424:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20344:100;:::o;22290:204::-;22358:7;22383:16;22391:7;22383;:16::i;:::-;22378:64;;22408:34;;;;;;;;;;;;;;22378:64;22462:15;:24;22478:7;22462:24;;;;;;;;;;;;;;;;;;;;;22455:31;;22290:204;;;:::o;21838:386::-;21911:13;21927:16;21935:7;21927;:16::i;:::-;21911:32;;21983:5;21960:28;;:19;:17;:19::i;:::-;:28;;;21956:175;;22008:44;22025:5;22032:19;:17;:19::i;:::-;22008:16;:44::i;:::-;22003:128;;22080:35;;;;;;;;;;;;;;22003:128;21956:175;22170:2;22143:15;:24;22159:7;22143:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22208:7;22204:2;22188:28;;22197:5;22188:28;;;;;;;;;;;;21900:324;21838:386;;:::o;64686:236::-;46853:13;:11;:13::i;:::-;64823:3:::1;;64808:11;64792:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:34;;64770:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;64885:29;64891:9;64902:11;64885:5;:29::i;:::-;64686:236:::0;;:::o;66169:83::-;46853:13;:11;:13::i;:::-;66238:6:::1;66229;;:15;;;;;;;;;;;;;;;;;;66169:83:::0;:::o;13751:315::-;13804:7;14032:15;:13;:15::i;:::-;14017:12;;14001:13;;:28;:46;13994:53;;13751:315;:::o;31555:2800::-;31689:27;31719;31738:7;31719:18;:27::i;:::-;31689:57;;31804:4;31763:45;;31779:19;31763:45;;;31759:86;;31817:28;;;;;;;;;;;;;;31759:86;31859:27;31888:23;31915:28;31935:7;31915:19;:28::i;:::-;31858:85;;;;32043:62;32062:15;32079:4;32085:19;:17;:19::i;:::-;32043:18;:62::i;:::-;32038:174;;32125:43;32142:4;32148:19;:17;:19::i;:::-;32125:16;:43::i;:::-;32120:92;;32177:35;;;;;;;;;;;;;;32120:92;32038:174;32243:1;32229:16;;:2;:16;;;32225:52;;32254:23;;;;;;;;;;;;;;32225:52;32290:43;32312:4;32318:2;32322:7;32331:1;32290:21;:43::i;:::-;32426:15;32423:160;;;32566:1;32545:19;32538:30;32423:160;32961:18;:24;32980:4;32961:24;;;;;;;;;;;;;;;;32959:26;;;;;;;;;;;;33030:18;:22;33049:2;33030:22;;;;;;;;;;;;;;;;33028:24;;;;;;;;;;;33352:145;33389:2;33437:45;33452:4;33458:2;33462:19;33437:14;:45::i;:::-;10979:8;33410:72;33352:18;:145::i;:::-;33323:17;:26;33341:7;33323:26;;;;;;;;;;;:174;;;;33667:1;10979:8;33617:19;:46;:51;33613:626;;33689:19;33721:1;33711:7;:11;33689:33;;33878:1;33844:17;:30;33862:11;33844:30;;;;;;;;;;;;:35;33840:384;;33982:13;;33967:11;:28;33963:242;;34162:19;34129:17;:30;34147:11;34129:30;;;;;;;;;;;:52;;;;33963:242;33840:384;33670:569;33613:626;34286:7;34282:2;34267:27;;34276:4;34267:27;;;;;;;;;;;;34305:42;34326:4;34332:2;34336:7;34345:1;34305:20;:42::i;:::-;31678:2677;;;31555:2800;;;:::o;62646:22::-;;;;:::o;66416:160::-;46853:13;:11;:13::i;:::-;58981:1:::1;59579:7;;:19:::0;59571:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58981:1;59712:7;:18;;;;66478:7:::2;66499;:5;:7::i;:::-;66491:21;;66520;66491:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66477:69;;;66565:2;66557:11;;;::::0;::::2;;66466:110;58937:1:::1;59891:7;:22;;;;66416:160::o:0;23180:185::-;23318:39;23335:4;23341:2;23345:7;23318:39;;;;;;;;;;;;:16;:39::i;:::-;23180:185;;;:::o;65915:104::-;46853:13;:11;:13::i;:::-;66000:11:::1;65990:7;:21;;;;;;;;;;;;:::i;:::-;;65915:104:::0;:::o;62785:26::-;;;;;;;;;;;;;:::o;20133:144::-;20197:7;20240:27;20259:7;20240:18;:27::i;:::-;20217:52;;20133:144;;;:::o;62675:18::-;;;;:::o;62863:114::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15376:224::-;15440:7;15481:1;15464:19;;:5;:19;;;15460:60;;15492:28;;;;;;;;;;;;;;15460:60;9931:13;15538:18;:25;15557:5;15538:25;;;;;;;;;;;;;;;;:54;15531:61;;15376:224;;;:::o;47615:103::-;46853:13;:11;:13::i;:::-;47680:30:::1;47707:1;47680:18;:30::i;:::-;47615:103::o:0;62744:34::-;;;;;;;;;;;;;:::o;66288:99::-;46853:13;:11;:13::i;:::-;66373:6:::1;66356:14;;:23;;;;;;;;;;;;;;;;;;66288:99:::0;:::o;64497:181::-;64593:11;63279:18;;63259:4;:16;63264:10;63259:16;;;;;;;;;;;;;;;;:38;;63237:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;63392:1;63378:11;:15;:52;;;;;63412:18;;63397:11;:33;;63378:52;63356:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;63542:3;;63527:11;63511:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:34;;63489:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;46853:13:::1;:11;:13::i;:::-;64641:29:::2;64647:9;64658:11;64641:5;:29::i;:::-;64497:181:::0;;;:::o;46967:87::-;47013:7;47040:6;;;;;;;;;;;47033:13;;46967:87;:::o;62700:37::-;;;;:::o;20513:104::-;20569:13;20602:7;20595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20513:104;:::o;63621:868::-;63713:11;63279:18;;63259:4;:16;63264:10;63259:16;;;;;;;;;;;;;;;;:38;;63237:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;63392:1;63378:11;:15;:52;;;;;63412:18;;63397:11;:33;;63378:52;63356:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;63542:3;;63527:11;63511:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:34;;63489:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;63751:6:::1;;;;;;;;;;;63750:7;63742:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63819:17;;63800:4;:16;63805:10;63800:16;;;;;;;;;;;;;;;;:36;63796:686;;;63862:14;;;;;;;;;;;63861:15;63853:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;63938:17;;63924:11;:31;63920:68;;;63971:17;;63957:31;;63920:68;64078:7;;64057:17;;64043:11;:31;;;;:::i;:::-;64042:43;;;;:::i;:::-;64029:9;:56;;64003:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;64175:11;64155:4;:16;64160:10;64155:16;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64201:30;64207:10;64219:11;64201:5;:30::i;:::-;63796:686;;;64317:7;;64303:11;:21;;;;:::i;:::-;64290:9;:34;;64264:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;64414:11;64394:4;:16;64399:10;64394:16;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;64440:30;64446:10;64458:11;64440:5;:30::i;:::-;63796:686;63621:868:::0;;:::o;22566:308::-;22677:19;:17;:19::i;:::-;22665:31;;:8;:31;;;22661:61;;22705:17;;;;;;;;;;;;;;22661:61;22787:8;22735:18;:39;22754:19;:17;:19::i;:::-;22735:39;;;;;;;;;;;;;;;:49;22775:8;22735:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22847:8;22811:55;;22826:19;:17;:19::i;:::-;22811:55;;;22857:8;22811:55;;;;;;:::i;:::-;;;;;;;;22566:308;;:::o;62600:39::-;;;;;;;;;;;;;;;;;:::o;65727:159::-;46853:13;:11;:13::i;:::-;65859:19:::1;65838:18;:40;;;;65727:159:::0;:::o;23436:399::-;23603:31;23616:4;23622:2;23626:7;23603:12;:31::i;:::-;23667:1;23649:2;:14;;;:19;23645:183;;23688:56;23719:4;23725:2;23729:7;23738:5;23688:30;:56::i;:::-;23683:145;;23772:40;;;;;;;;;;;;;;23683:145;23645:183;23436:399;;;;:::o;62818:36::-;;;;:::o;65039:636::-;65158:13;65211:17;65219:8;65211:7;:17::i;:::-;65189:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;65316:28;65347:7;65316:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65416:1;65391:14;65385:28;:32;:282;;;;;;;;;;;;;;;;;65509:14;65550:19;:8;:17;:19::i;:::-;65466:160;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65385:282;65365:302;;;65039:636;;;:::o;22945:164::-;23042:4;23066:18;:25;23085:5;23066:25;;;;;;;;;;;;;;;:35;23092:8;23066:35;;;;;;;;;;;;;;;;;;;;;;;;;23059:42;;22945:164;;;;:::o;47873:201::-;46853:13;:11;:13::i;:::-;47982:1:::1;47962:22;;:8;:22;;::::0;47954:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;48038:28;48057:8;48038:18;:28::i;:::-;47873:201:::0;:::o;66050:88::-;46853:13;:11;:13::i;:::-;66125:5:::1;66115:7;:15;;;;66050:88:::0;:::o;24090:273::-;24147:4;24203:7;24184:15;:13;:15::i;:::-;:26;;:66;;;;;24237:13;;24227:7;:23;24184:66;:152;;;;;24335:1;10701:8;24288:17;:26;24306:7;24288:26;;;;;;;;;;;;:43;:48;24184:152;24164:172;;24090:273;;;:::o;42651:105::-;42711:7;42738:10;42731:17;;42651:105;:::o;47132:132::-;47207:12;:10;:12::i;:::-;47196:23;;:7;:5;:7::i;:::-;:23;;;47188:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47132:132::o;25921:1529::-;25986:20;26009:13;;25986:36;;26051:1;26037:16;;:2;:16;;;26033:48;;26062:19;;;;;;;;;;;;;;26033:48;26108:1;26096:8;:13;26092:44;;26118:18;;;;;;;;;;;;;;26092:44;26149:61;26179:1;26183:2;26187:12;26201:8;26149:21;:61::i;:::-;26692:1;10068:2;26663:1;:25;;26662:31;26650:8;:44;26624:18;:22;26643:2;26624:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26971:139;27008:2;27062:33;27085:1;27089:2;27093:1;27062:14;:33::i;:::-;27029:30;27050:8;27029:20;:30::i;:::-;:66;26971:18;:139::i;:::-;26937:17;:31;26955:12;26937:31;;;;;;;;;;;:173;;;;27127:15;27145:12;27127:30;;27172:11;27201:8;27186:12;:23;27172:37;;27224:101;27276:9;;;;;;27272:2;27251:35;;27268:1;27251:35;;;;;;;;;;;;27320:3;27310:7;:13;27224:101;;27357:3;27341:13;:19;;;;26398:974;;27382:60;27411:1;27415:2;27419:12;27433:8;27382:20;:60::i;:::-;25975:1475;25921:1529;;:::o;64930:101::-;64995:7;65022:1;65015:8;;64930:101;:::o;17050:1129::-;17117:7;17137:12;17152:7;17137:22;;17220:4;17201:15;:13;:15::i;:::-;:23;17197:915;;17254:13;;17247:4;:20;17243:869;;;17292:14;17309:17;:23;17327:4;17309:23;;;;;;;;;;;;17292:40;;17425:1;10701:8;17398:6;:23;:28;17394:699;;17917:113;17934:1;17924:6;:11;17917:113;;17977:17;:25;17995:6;;;;;;;17977:25;;;;;;;;;;;;17968:34;;17917:113;;;18063:6;18056:13;;;;;;17394:699;17269:843;17243:869;17197:915;18140:31;;;;;;;;;;;;;;17050:1129;;;;:::o;29891:652::-;29986:27;30015:23;30056:53;30112:15;30056:71;;30298:7;30292:4;30285:21;30333:22;30327:4;30320:36;30409:4;30403;30393:21;30370:44;;30505:19;30499:26;30480:45;;30236:300;29891:652;;;:::o;30656:645::-;30798:11;30960:15;30954:4;30950:26;30942:34;;31119:15;31108:9;31104:31;31091:44;;31266:15;31255:9;31252:30;31245:4;31234:9;31231:19;31228:55;31218:65;;30656:645;;;;;:::o;41484:159::-;;;;;:::o;39796:309::-;39931:7;39951:16;11102:3;39977:19;:40;;39951:67;;11102:3;40044:31;40055:4;40061:2;40065:9;40044:10;:31::i;:::-;40036:40;;:61;;40029:68;;;39796:309;;;;;:::o;19624:447::-;19704:14;19872:15;19865:5;19861:27;19852:36;;20046:5;20032:11;20008:22;20004:40;20001:51;19994:5;19991:62;19981:72;;19624:447;;;;:::o;42302:158::-;;;;;:::o;48234:191::-;48308:16;48327:6;;;;;;;;;;;48308:25;;48353:8;48344:6;;:17;;;;;;;;;;;;;;;;;;48408:8;48377:40;;48398:8;48377:40;;;;;;;;;;;;48297:128;48234:191;:::o;38306:716::-;38469:4;38515:2;38490:45;;;38536:19;:17;:19::i;:::-;38557:4;38563:7;38572:5;38490:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38486:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38790:1;38773:6;:13;:18;38769:235;;38819:40;;;;;;;;;;;;;;38769:235;38962:6;38956:13;38947:6;38943:2;38939:15;38932:38;38486:529;38659:54;;;38649:64;;;:6;:64;;;;38642:71;;;38306:716;;;;;;:::o;60364:723::-;60420:13;60650:1;60641:5;:10;60637:53;;60668:10;;;;;;;;;;;;;;;;;;;;;60637:53;60700:12;60715:5;60700:20;;60731:14;60756:78;60771:1;60763:4;:9;60756:78;;60789:8;;;;;:::i;:::-;;;;60820:2;60812:10;;;;;:::i;:::-;;;60756:78;;;60844:19;60876:6;60866:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60844:39;;60894:154;60910:1;60901:5;:10;60894:154;;60938:1;60928:11;;;;;:::i;:::-;;;61005:2;60997:5;:10;;;;:::i;:::-;60984:2;:24;;;;:::i;:::-;60971:39;;60954:6;60961;60954:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;61034:2;61025:11;;;;;:::i;:::-;;;60894:154;;;61072:6;61058:21;;;;;60364:723;;;;:::o;45514:98::-;45567:7;45594:10;45587:17;;45514:98;:::o;21454:322::-;21524:14;21755:1;21745:8;21742:15;21717:23;21713:45;21703:55;;21454:322;;;:::o;40681:147::-;40818:6;40681:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:::-;5006:6;5014;5063:2;5051:9;5042:7;5038:23;5034:32;5031:119;;;5069:79;;:::i;:::-;5031:119;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;5316:2;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5287:118;4938:474;;;;;:::o;5418:116::-;5488:21;5503:5;5488:21;:::i;:::-;5481:5;5478:32;5468:60;;5524:1;5521;5514:12;5468:60;5418:116;:::o;5540:133::-;5583:5;5621:6;5608:20;5599:29;;5637:30;5661:5;5637:30;:::i;:::-;5540:133;;;;:::o;5679:323::-;5735:6;5784:2;5772:9;5763:7;5759:23;5755:32;5752:119;;;5790:79;;:::i;:::-;5752:119;5910:1;5935:50;5977:7;5968:6;5957:9;5953:22;5935:50;:::i;:::-;5925:60;;5881:114;5679:323;;;;:::o;6008:118::-;6095:24;6113:5;6095:24;:::i;:::-;6090:3;6083:37;6008:118;;:::o;6132:222::-;6225:4;6263:2;6252:9;6248:18;6240:26;;6276:71;6344:1;6333:9;6329:17;6320:6;6276:71;:::i;:::-;6132:222;;;;:::o;6360:619::-;6437:6;6445;6453;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6599:117;6755:2;6781:53;6826:7;6817:6;6806:9;6802:22;6781:53;:::i;:::-;6771:63;;6726:118;6883:2;6909:53;6954:7;6945:6;6934:9;6930:22;6909:53;:::i;:::-;6899:63;;6854:118;6360:619;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:308::-;7901:4;7991:18;7983:6;7980:30;7977:56;;;8013:18;;:::i;:::-;7977:56;8051:29;8073:6;8051:29;:::i;:::-;8043:37;;8135:4;8129;8125:15;8117:23;;7839:308;;;:::o;8153:154::-;8237:6;8232:3;8227;8214:30;8299:1;8290:6;8285:3;8281:16;8274:27;8153:154;;;:::o;8313:412::-;8391:5;8416:66;8432:49;8474:6;8432:49;:::i;:::-;8416:66;:::i;:::-;8407:75;;8505:6;8498:5;8491:21;8543:4;8536:5;8532:16;8581:3;8572:6;8567:3;8563:16;8560:25;8557:112;;;8588:79;;:::i;:::-;8557:112;8678:41;8712:6;8707:3;8702;8678:41;:::i;:::-;8397:328;8313:412;;;;;:::o;8745:340::-;8801:5;8850:3;8843:4;8835:6;8831:17;8827:27;8817:122;;8858:79;;:::i;:::-;8817:122;8975:6;8962:20;9000:79;9075:3;9067:6;9060:4;9052:6;9048:17;9000:79;:::i;:::-;8991:88;;8807:278;8745:340;;;;:::o;9091:509::-;9160:6;9209:2;9197:9;9188:7;9184:23;9180:32;9177:119;;;9215:79;;:::i;:::-;9177:119;9363:1;9352:9;9348:17;9335:31;9393:18;9385:6;9382:30;9379:117;;;9415:79;;:::i;:::-;9379:117;9520:63;9575:7;9566:6;9555:9;9551:22;9520:63;:::i;:::-;9510:73;;9306:287;9091:509;;;;:::o;9606:329::-;9665:6;9714:2;9702:9;9693:7;9689:23;9685:32;9682:119;;;9720:79;;:::i;:::-;9682:119;9840:1;9865:53;9910:7;9901:6;9890:9;9886:22;9865:53;:::i;:::-;9855:63;;9811:117;9606:329;;;;:::o;9941:468::-;10006:6;10014;10063:2;10051:9;10042:7;10038:23;10034:32;10031:119;;;10069:79;;:::i;:::-;10031:119;10189:1;10214:53;10259:7;10250:6;10239:9;10235:22;10214:53;:::i;:::-;10204:63;;10160:117;10316:2;10342:50;10384:7;10375:6;10364:9;10360:22;10342:50;:::i;:::-;10332:60;;10287:115;9941:468;;;;;:::o;10415:307::-;10476:4;10566:18;10558:6;10555:30;10552:56;;;10588:18;;:::i;:::-;10552:56;10626:29;10648:6;10626:29;:::i;:::-;10618:37;;10710:4;10704;10700:15;10692:23;;10415:307;;;:::o;10728:410::-;10805:5;10830:65;10846:48;10887:6;10846:48;:::i;:::-;10830:65;:::i;:::-;10821:74;;10918:6;10911:5;10904:21;10956:4;10949:5;10945:16;10994:3;10985:6;10980:3;10976:16;10973:25;10970:112;;;11001:79;;:::i;:::-;10970:112;11091:41;11125:6;11120:3;11115;11091:41;:::i;:::-;10811:327;10728:410;;;;;:::o;11157:338::-;11212:5;11261:3;11254:4;11246:6;11242:17;11238:27;11228:122;;11269:79;;:::i;:::-;11228:122;11386:6;11373:20;11411:78;11485:3;11477:6;11470:4;11462:6;11458:17;11411:78;:::i;:::-;11402:87;;11218:277;11157:338;;;;:::o;11501:943::-;11596:6;11604;11612;11620;11669:3;11657:9;11648:7;11644:23;11640:33;11637:120;;;11676:79;;:::i;:::-;11637:120;11796:1;11821:53;11866:7;11857:6;11846:9;11842:22;11821:53;:::i;:::-;11811:63;;11767:117;11923:2;11949:53;11994:7;11985:6;11974:9;11970:22;11949:53;:::i;:::-;11939:63;;11894:118;12051:2;12077:53;12122:7;12113:6;12102:9;12098:22;12077:53;:::i;:::-;12067:63;;12022:118;12207:2;12196:9;12192:18;12179:32;12238:18;12230:6;12227:30;12224:117;;;12260:79;;:::i;:::-;12224:117;12365:62;12419:7;12410:6;12399:9;12395:22;12365:62;:::i;:::-;12355:72;;12150:287;11501:943;;;;;;;:::o;12450:474::-;12518:6;12526;12575:2;12563:9;12554:7;12550:23;12546:32;12543:119;;;12581:79;;:::i;:::-;12543:119;12701:1;12726:53;12771:7;12762:6;12751:9;12747:22;12726:53;:::i;:::-;12716:63;;12672:117;12828:2;12854:53;12899:7;12890:6;12879:9;12875:22;12854:53;:::i;:::-;12844:63;;12799:118;12450:474;;;;;:::o;12930:180::-;12978:77;12975:1;12968:88;13075:4;13072:1;13065:15;13099:4;13096:1;13089:15;13116:320;13160:6;13197:1;13191:4;13187:12;13177:22;;13244:1;13238:4;13234:12;13265:18;13255:81;;13321:4;13313:6;13309:17;13299:27;;13255:81;13383:2;13375:6;13372:14;13352:18;13349:38;13346:84;;13402:18;;:::i;:::-;13346:84;13167:269;13116:320;;;:::o;13442:180::-;13490:77;13487:1;13480:88;13587:4;13584:1;13577:15;13611:4;13608:1;13601:15;13628:305;13668:3;13687:20;13705:1;13687:20;:::i;:::-;13682:25;;13721:20;13739:1;13721:20;:::i;:::-;13716:25;;13875:1;13807:66;13803:74;13800:1;13797:81;13794:107;;;13881:18;;:::i;:::-;13794:107;13925:1;13922;13918:9;13911:16;;13628:305;;;;:::o;13939:170::-;14079:22;14075:1;14067:6;14063:14;14056:46;13939:170;:::o;14115:366::-;14257:3;14278:67;14342:2;14337:3;14278:67;:::i;:::-;14271:74;;14354:93;14443:3;14354:93;:::i;:::-;14472:2;14467:3;14463:12;14456:19;;14115:366;;;:::o;14487:419::-;14653:4;14691:2;14680:9;14676:18;14668:26;;14740:9;14734:4;14730:20;14726:1;14715:9;14711:17;14704:47;14768:131;14894:4;14768:131;:::i;:::-;14760:139;;14487:419;;;:::o;14912:181::-;15052:33;15048:1;15040:6;15036:14;15029:57;14912:181;:::o;15099:366::-;15241:3;15262:67;15326:2;15321:3;15262:67;:::i;:::-;15255:74;;15338:93;15427:3;15338:93;:::i;:::-;15456:2;15451:3;15447:12;15440:19;;15099:366;;;:::o;15471:419::-;15637:4;15675:2;15664:9;15660:18;15652:26;;15724:9;15718:4;15714:20;15710:1;15699:9;15695:17;15688:47;15752:131;15878:4;15752:131;:::i;:::-;15744:139;;15471:419;;;:::o;15896:147::-;15997:11;16034:3;16019:18;;15896:147;;;;:::o;16049:114::-;;:::o;16169:398::-;16328:3;16349:83;16430:1;16425:3;16349:83;:::i;:::-;16342:90;;16441:93;16530:3;16441:93;:::i;:::-;16559:1;16554:3;16550:11;16543:18;;16169:398;;;:::o;16573:379::-;16757:3;16779:147;16922:3;16779:147;:::i;:::-;16772:154;;16943:3;16936:10;;16573:379;;;:::o;16958:170::-;17098:22;17094:1;17086:6;17082:14;17075:46;16958:170;:::o;17134:366::-;17276:3;17297:67;17361:2;17356:3;17297:67;:::i;:::-;17290:74;;17373:93;17462:3;17373:93;:::i;:::-;17491:2;17486:3;17482:12;17475:19;;17134:366;;;:::o;17506:419::-;17672:4;17710:2;17699:9;17695:18;17687:26;;17759:9;17753:4;17749:20;17745:1;17734:9;17730:17;17723:47;17787:131;17913:4;17787:131;:::i;:::-;17779:139;;17506:419;;;:::o;17931:173::-;18071:25;18067:1;18059:6;18055:14;18048:49;17931:173;:::o;18110:366::-;18252:3;18273:67;18337:2;18332:3;18273:67;:::i;:::-;18266:74;;18349:93;18438:3;18349:93;:::i;:::-;18467:2;18462:3;18458:12;18451:19;;18110:366;;;:::o;18482:419::-;18648:4;18686:2;18675:9;18671:18;18663:26;;18735:9;18729:4;18725:20;18721:1;18710:9;18706:17;18699:47;18763:131;18889:4;18763:131;:::i;:::-;18755:139;;18482:419;;;:::o;18907:174::-;19047:26;19043:1;19035:6;19031:14;19024:50;18907:174;:::o;19087:366::-;19229:3;19250:67;19314:2;19309:3;19250:67;:::i;:::-;19243:74;;19326:93;19415:3;19326:93;:::i;:::-;19444:2;19439:3;19435:12;19428:19;;19087:366;;;:::o;19459:419::-;19625:4;19663:2;19652:9;19648:18;19640:26;;19712:9;19706:4;19702:20;19698:1;19687:9;19683:17;19676:47;19740:131;19866:4;19740:131;:::i;:::-;19732:139;;19459:419;;;:::o;19884:191::-;19924:4;19944:20;19962:1;19944:20;:::i;:::-;19939:25;;19978:20;19996:1;19978:20;:::i;:::-;19973:25;;20017:1;20014;20011:8;20008:34;;;20022:18;;:::i;:::-;20008:34;20067:1;20064;20060:9;20052:17;;19884:191;;;;:::o;20081:348::-;20121:7;20144:20;20162:1;20144:20;:::i;:::-;20139:25;;20178:20;20196:1;20178:20;:::i;:::-;20173:25;;20366:1;20298:66;20294:74;20291:1;20288:81;20283:1;20276:9;20269:17;20265:105;20262:131;;;20373:18;;:::i;:::-;20262:131;20421:1;20418;20414:9;20403:20;;20081:348;;;;:::o;20435:169::-;20575:21;20571:1;20563:6;20559:14;20552:45;20435:169;:::o;20610:366::-;20752:3;20773:67;20837:2;20832:3;20773:67;:::i;:::-;20766:74;;20849:93;20938:3;20849:93;:::i;:::-;20967:2;20962:3;20958:12;20951:19;;20610:366;;;:::o;20982:419::-;21148:4;21186:2;21175:9;21171:18;21163:26;;21235:9;21229:4;21225:20;21221:1;21210:9;21206:17;21199:47;21263:131;21389:4;21263:131;:::i;:::-;21255:139;;20982:419;;;:::o;21407:234::-;21547:34;21543:1;21535:6;21531:14;21524:58;21616:17;21611:2;21603:6;21599:15;21592:42;21407:234;:::o;21647:366::-;21789:3;21810:67;21874:2;21869:3;21810:67;:::i;:::-;21803:74;;21886:93;21975:3;21886:93;:::i;:::-;22004:2;21999:3;21995:12;21988:19;;21647:366;;;:::o;22019:419::-;22185:4;22223:2;22212:9;22208:18;22200:26;;22272:9;22266:4;22262:20;22258:1;22247:9;22243:17;22236:47;22300:131;22426:4;22300:131;:::i;:::-;22292:139;;22019:419;;;:::o;22444:148::-;22546:11;22583:3;22568:18;;22444:148;;;;:::o;22598:377::-;22704:3;22732:39;22765:5;22732:39;:::i;:::-;22787:89;22869:6;22864:3;22787:89;:::i;:::-;22780:96;;22885:52;22930:6;22925:3;22918:4;22911:5;22907:16;22885:52;:::i;:::-;22962:6;22957:3;22953:16;22946:23;;22708:267;22598:377;;;;:::o;22981:155::-;23121:7;23117:1;23109:6;23105:14;23098:31;22981:155;:::o;23142:400::-;23302:3;23323:84;23405:1;23400:3;23323:84;:::i;:::-;23316:91;;23416:93;23505:3;23416:93;:::i;:::-;23534:1;23529:3;23525:11;23518:18;;23142:400;;;:::o;23548:701::-;23829:3;23851:95;23942:3;23933:6;23851:95;:::i;:::-;23844:102;;23963:95;24054:3;24045:6;23963:95;:::i;:::-;23956:102;;24075:148;24219:3;24075:148;:::i;:::-;24068:155;;24240:3;24233:10;;23548:701;;;;;:::o;24255:225::-;24395:34;24391:1;24383:6;24379:14;24372:58;24464:8;24459:2;24451:6;24447:15;24440:33;24255:225;:::o;24486:366::-;24628:3;24649:67;24713:2;24708:3;24649:67;:::i;:::-;24642:74;;24725:93;24814:3;24725:93;:::i;:::-;24843:2;24838:3;24834:12;24827:19;;24486:366;;;:::o;24858:419::-;25024:4;25062:2;25051:9;25047:18;25039:26;;25111:9;25105:4;25101:20;25097:1;25086:9;25082:17;25075:47;25139:131;25265:4;25139:131;:::i;:::-;25131:139;;24858:419;;;:::o;25283:182::-;25423:34;25419:1;25411:6;25407:14;25400:58;25283:182;:::o;25471:366::-;25613:3;25634:67;25698:2;25693:3;25634:67;:::i;:::-;25627:74;;25710:93;25799:3;25710:93;:::i;:::-;25828:2;25823:3;25819:12;25812:19;;25471:366;;;:::o;25843:419::-;26009:4;26047:2;26036:9;26032:18;26024:26;;26096:9;26090:4;26086:20;26082:1;26071:9;26067:17;26060:47;26124:131;26250:4;26124:131;:::i;:::-;26116:139;;25843:419;;;:::o;26268:98::-;26319:6;26353:5;26347:12;26337:22;;26268:98;;;:::o;26372:168::-;26455:11;26489:6;26484:3;26477:19;26529:4;26524:3;26520:14;26505:29;;26372:168;;;;:::o;26546:360::-;26632:3;26660:38;26692:5;26660:38;:::i;:::-;26714:70;26777:6;26772:3;26714:70;:::i;:::-;26707:77;;26793:52;26838:6;26833:3;26826:4;26819:5;26815:16;26793:52;:::i;:::-;26870:29;26892:6;26870:29;:::i;:::-;26865:3;26861:39;26854:46;;26636:270;26546:360;;;;:::o;26912:640::-;27107:4;27145:3;27134:9;27130:19;27122:27;;27159:71;27227:1;27216:9;27212:17;27203:6;27159:71;:::i;:::-;27240:72;27308:2;27297:9;27293:18;27284:6;27240:72;:::i;:::-;27322;27390:2;27379:9;27375:18;27366:6;27322:72;:::i;:::-;27441:9;27435:4;27431:20;27426:2;27415:9;27411:18;27404:48;27469:76;27540:4;27531:6;27469:76;:::i;:::-;27461:84;;26912:640;;;;;;;:::o;27558:141::-;27614:5;27645:6;27639:13;27630:22;;27661:32;27687:5;27661:32;:::i;:::-;27558:141;;;;:::o;27705:349::-;27774:6;27823:2;27811:9;27802:7;27798:23;27794:32;27791:119;;;27829:79;;:::i;:::-;27791:119;27949:1;27974:63;28029:7;28020:6;28009:9;28005:22;27974:63;:::i;:::-;27964:73;;27920:127;27705:349;;;;:::o;28060:233::-;28099:3;28122:24;28140:5;28122:24;:::i;:::-;28113:33;;28168:66;28161:5;28158:77;28155:103;;28238:18;;:::i;:::-;28155:103;28285:1;28278:5;28274:13;28267:20;;28060:233;;;:::o;28299:180::-;28347:77;28344:1;28337:88;28444:4;28441:1;28434:15;28468:4;28465:1;28458:15;28485:185;28525:1;28542:20;28560:1;28542:20;:::i;:::-;28537:25;;28576:20;28594:1;28576:20;:::i;:::-;28571:25;;28615:1;28605:35;;28620:18;;:::i;:::-;28605:35;28662:1;28659;28655:9;28650:14;;28485:185;;;;:::o;28676:176::-;28708:1;28725:20;28743:1;28725:20;:::i;:::-;28720:25;;28759:20;28777:1;28759:20;:::i;:::-;28754:25;;28798:1;28788:35;;28803:18;;:::i;:::-;28788:35;28844:1;28841;28837:9;28832:14;;28676:176;;;;:::o;28858:180::-;28906:77;28903:1;28896:88;29003:4;29000:1;28993:15;29027:4;29024:1;29017:15

Swarm Source

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