ETH Price: $2,577.82 (-4.00%)
Gas: 6 Gwei

Token

Pepes by Watt Meldon (Pepe)
 

Overview

Max Total Supply

420 Pepe

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xjerryy.eth
Balance
2 Pepe
0x9d176e7ce4a2f68e258913417cb23008ad5ee3b5
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:
Pepe

Compiler Version
v0.8.7+commit.e28d00a7

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-27
*/

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0-rc.1) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Pepe by Watt Meldon.sol

                                      


//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;






contract Pepe is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 420;
    

    uint256 public publicPrice = 0.005 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 2;
    uint256 constant public PUBLIC_MINT_LIMIT = 2;

    string public revealedURI;

    

    bool public paused = false;
    bool public revealed = true;
    bool public publicSale = true;

    
    address constant internal Artist = 0x0F19E57cE78Ae204D5dA221B8016C619969888db;
    
    

    
    mapping(address => uint256) public numUserMints;

    constructor(string memory _name, string memory _symbol, string memory _baseUri) ERC721A("Pepes by Watt Meldon", "Pepe") { }

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

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

    
    

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

    
    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return revealedURI;
        }
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }


    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
    }
    
    function withdraw() external payable onlyOwner {
        
        uint256 currBalance = address(this).balance;

        (bool succ, ) = payable(Artist).call{
            value: (currBalance * 10000) / 10000
        }("0x0F19E57cE78Ae204D5dA221B8016C619969888db");
        require(succ, "Dev transfer failed");

    }

    
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

   

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526611c37937e080006009556000600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055503480156200006d57600080fd5b5060405162003ea438038062003ea4833981810160405281019062000093919062000375565b6040518060400160405280601481526020017f50657065732062792057617474204d656c646f6e0000000000000000000000008152506040518060400160405280600481526020017f50657065000000000000000000000000000000000000000000000000000000008152506200011f620001136200017260201b60201c565b6200017a60201b60201c565b81600390805190602001906200013792919062000247565b5080600490805190602001906200015092919062000247565b50620001616200023e60201b60201c565b6001819055505050505050620005b2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200025590620004c3565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b60006200030e620003088462000457565b6200042e565b9050828152602081018484840111156200032d576200032c62000592565b5b6200033a8482856200048d565b509392505050565b600082601f8301126200035a57620003596200058d565b5b81516200036c848260208601620002f7565b91505092915050565b6000806000606084860312156200039157620003906200059c565b5b600084015167ffffffffffffffff811115620003b257620003b162000597565b5b620003c08682870162000342565b935050602084015167ffffffffffffffff811115620003e457620003e362000597565b5b620003f28682870162000342565b925050604084015167ffffffffffffffff81111562000416576200041562000597565b5b620004248682870162000342565b9150509250925092565b60006200043a6200044d565b9050620004488282620004f9565b919050565b6000604051905090565b600067ffffffffffffffff8211156200047557620004746200055e565b5b6200048082620005a1565b9050602081019050919050565b60005b83811015620004ad57808201518184015260208101905062000490565b83811115620004bd576000848401525b50505050565b60006002820490506001821680620004dc57607f821691505b60208210811415620004f357620004f26200052f565b5b50919050565b6200050482620005a1565b810181811067ffffffffffffffff821117156200052657620005256200055e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6138e280620005c26000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a945bf80116100a0578063c87b56dd1161006f578063c87b56dd146106f3578063e0a8085314610730578063e985e9c514610759578063f2fde38b14610796578063f7e8d6ea146107bf57610204565b8063a945bf8014610658578063b88d4fde14610683578063bceae77b1461069f578063c6275255146106ca57610204565b80637af3a1af116100e75780637af3a1af146105875780638da5cb5b146105b05780639007bd72146105db57806395d89b4114610604578063a22cb4651461062f57610204565b80636352211e146104b957806370a08231146104f6578063715018a6146105335780637aeb72421461054a57610204565b80632fecf20b1161019b57806342842e0e1161016a57806342842e0e146103e1578063438b6300146103fd578063518302271461043a57806355f804b3146104655780635c975abb1461048e57610204565b80632fecf20b1461035657806332cb6b0c1461038157806333bc1c5c146103ac5780633ccfd60b146103d757610204565b806316c38b3c116101d757806316c38b3c146102ca57806318160ddd146102f357806323b872dd1461031e5780632db115441461033a57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612948565b6107ea565b60405161023d9190612f1b565b60405180910390f35b34801561025257600080fd5b5061025b61087c565b6040516102689190612f36565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906129eb565b61090e565b6040516102a59190612e92565b60405180910390f35b6102c860048036038101906102c391906128db565b61098d565b005b3480156102d657600080fd5b506102f160048036038101906102ec919061291b565b610ad1565b005b3480156102ff57600080fd5b50610308610af6565b60405161031591906130d8565b60405180910390f35b610338600480360381019061033391906127c5565b610b0d565b005b610354600480360381019061034f91906129eb565b610e32565b005b34801561036257600080fd5b5061036b6110e8565b60405161037891906130d8565b60405180910390f35b34801561038d57600080fd5b506103966110ed565b6040516103a391906130d8565b60405180910390f35b3480156103b857600080fd5b506103c16110f3565b6040516103ce9190612f1b565b60405180910390f35b6103df611106565b005b6103fb60048036038101906103f691906127c5565b6111ef565b005b34801561040957600080fd5b50610424600480360381019061041f9190612758565b61120f565b6040516104319190612ef9565b60405180910390f35b34801561044657600080fd5b5061044f61131a565b60405161045c9190612f1b565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906129a2565b61132d565b005b34801561049a57600080fd5b506104a361134f565b6040516104b09190612f1b565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906129eb565b611362565b6040516104ed9190612e92565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612758565b611374565b60405161052a91906130d8565b60405180910390f35b34801561053f57600080fd5b5061054861142d565b005b34801561055657600080fd5b50610571600480360381019061056c9190612758565b611441565b60405161057e91906130d8565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061291b565b611459565b005b3480156105bc57600080fd5b506105c561147e565b6040516105d29190612e92565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612a18565b6114a7565b005b34801561061057600080fd5b506106196115d4565b6040516106269190612f36565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061289b565b611666565b005b34801561066457600080fd5b5061066d611771565b60405161067a91906130d8565b60405180910390f35b61069d60048036038101906106989190612818565b611777565b005b3480156106ab57600080fd5b506106b46117ea565b6040516106c191906130d8565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec91906129eb565b6117ef565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906129eb565b611801565b6040516107279190612f36565b60405180910390f35b34801561073c57600080fd5b506107576004803603810190610752919061291b565b611925565b005b34801561076557600080fd5b50610780600480360381019061077b9190612785565b61194a565b60405161078d9190612f1b565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190612758565b6119de565b005b3480156107cb57600080fd5b506107d4611a62565b6040516107e19190612f36565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108755750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088b906133e1565b80601f01602080910402602001604051908101604052809291908181526020018280546108b7906133e1565b80156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b600061091982611af0565b61094f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099882611362565b90508073ffffffffffffffffffffffffffffffffffffffff166109b9611b4f565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576109e5816109e0611b4f565b61194a565b610a1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ad9611b57565b80600b60006101000a81548160ff02191690831515021790555050565b6000610b00611bd5565b6002546001540303905090565b6000610b1882611bde565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8b84611cac565b91509150610ba18187610b9c611b4f565b611cd3565b610bed57610bb686610bb1611b4f565b61194a565b610bec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c618686866001611d17565b8015610c6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3a85610d16888887611d1d565b7c020000000000000000000000000000000000000000000000000000000017611d45565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc2576000600185019050600060056000838152602001908152602001600020541415610dc0576001548114610dbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611d70565b505050505050565b80600b60009054906101000a900460ff1615610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613098565b60405180910390fd5b6101a481610e8f610af6565b610e999190613216565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906130b8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612f98565b60405180910390fd5b600b60029054906101000a900460ff16610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613038565b60405180910390fd5b6002821115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613058565b60405180910390fd5b600060095490506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600284826110349190613216565b1115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612fb8565b60405180910390fd5b6110898483611084919061329d565b611d76565b83816110959190613216565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110e23385611e82565b50505050565b600281565b6101a481565b600b60029054906101000a900460ff1681565b61110e611b57565b60004790506000730f19e57ce78ae204d5da221b8016c619969888db73ffffffffffffffffffffffffffffffffffffffff16612710808461114f919061329d565b611159919061326c565b60405161116590612e68565b60006040518083038185875af1925050503d80600081146111a2576040519150601f19603f3d011682016040523d82523d6000602084013e6111a7565b606091505b50509050806111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613078565b60405180910390fd5b5050565b61120a83838360405180602001604052806000815250611777565b505050565b6060600061121c83611374565b905060008167ffffffffffffffff81111561123a57611239613549565b5b6040519080825280602002602001820160405280156112685781602001602082028036833780820191505090505b50905060006001905060005b838110801561128557506101a48211155b1561130e57600061129583611362565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fa57828483815181106112df576112de61351a565b5b60200260200101818152505081806112f690613444565b9250505b828061130590613444565b93505050611274565b82945050505050919050565b600b60019054906101000a900460ff1681565b611335611b57565b80600a908051906020019061134b92919061256c565b5050565b600b60009054906101000a900460ff1681565b600061136d82611bde565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113dc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611435611b57565b61143f6000611ea0565b565b600c6020528060005260406000206000915090505481565b611461611b57565b80600b60026101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114af611b57565b81600b60009054906101000a900460ff1615611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613098565b60405180910390fd5b6101a48161150c610af6565b6115169190613216565b1115611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906130b8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612f98565b60405180910390fd5b6115cf8284611e82565b505050565b6060600480546115e3906133e1565b80601f016020809104026020016040519081016040528092919081815260200182805461160f906133e1565b801561165c5780601f106116315761010080835404028352916020019161165c565b820191906000526020600020905b81548152906001019060200180831161163f57829003601f168201915b5050505050905090565b8060086000611673611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611720611b4f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117659190612f1b565b60405180910390a35050565b60095481565b611782848484610b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e4576117ad84848484611f64565b6117e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600281565b6117f7611b57565b8060098190555050565b606061180c82611af0565b61184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290612ff8565b60405180910390fd5b600b60019054906101000a900460ff161561189257600a61186b836120c4565b60405160200161187c929190612e39565b6040516020818303038152906040529050611920565b600a805461189f906133e1565b80601f01602080910402602001604051908101604052809291908181526020018280546118cb906133e1565b80156119185780601f106118ed57610100808354040283529160200191611918565b820191906000526020600020905b8154815290600101906020018083116118fb57829003601f168201915b505050505090505b919050565b61192d611b57565b80600b60016101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e6611b57565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90612f58565b60405180910390fd5b611a5f81611ea0565b50565b600a8054611a6f906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9b906133e1565b8015611ae85780601f10611abd57610100808354040283529160200191611ae8565b820191906000526020600020905b815481529060010190602001808311611acb57829003601f168201915b505050505081565b600081611afb611bd5565b11158015611b0a575060015482105b8015611b48575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611b5f61219c565b73ffffffffffffffffffffffffffffffffffffffff16611b7d61147e565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90612fd8565b60405180910390fd5b565b60006001905090565b60008082905080611bed611bd5565b11611c7557600154811015611c745760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c72575b6000811415611c68576005600083600190039350838152602001908152602001600020549050611c3d565b8092505050611ca7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d348686846121a4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80341115611e3b5760003373ffffffffffffffffffffffffffffffffffffffff168234611da391906132f7565b604051611daf90612e7d565b60006040518083038185875af1925050503d8060008114611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b5050905080611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90612f78565b60405180910390fd5b50611e7f565b80341015611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590613018565b60405180910390fd5b5b50565b611e9c8282604051806020016040528060008152506121ad565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f8a611b4f565b8786866040518563ffffffff1660e01b8152600401611fac9493929190612ead565b602060405180830381600087803b158015611fc657600080fd5b505af1925050508015611ff757506040513d601f19601f82011682018060405250810190611ff49190612975565b60015b612071573d8060008114612027576040519150601f19603f3d011682016040523d82523d6000602084013e61202c565b606091505b50600081511415612069576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016120d38461224b565b01905060008167ffffffffffffffff8111156120f2576120f1613549565b5b6040519080825280601f01601f1916602001820160405280156121245781602001600182028036833780820191505090505b509050600082602001820190505b600115612191578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161217b5761217a6134bc565b5b049450600085141561218c57612191565b612132565b819350505050919050565b600033905090565b60009392505050565b6121b7838361239e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122465760006001549050600083820390505b6121f86000868380600101945086611f64565b61222e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121e557816001541461224357600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122a9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161229f5761229e6134bc565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106122e6576d04ee2d6d415b85acef810000000083816122dc576122db6134bc565b5b0492506020810190505b662386f26fc10000831061231557662386f26fc10000838161230b5761230a6134bc565b5b0492506010810190505b6305f5e100831061233e576305f5e1008381612334576123336134bc565b5b0492506008810190505b6127108310612363576127108381612359576123586134bc565b5b0492506004810190505b60648310612386576064838161237c5761237b6134bc565b5b0492506002810190505b600a8310612395576001810190505b80915050919050565b6000600154905060008214156123e0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ed6000848385611d17565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612464836124556000866000611d1d565b61245e8561255c565b17611d45565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461250557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124ca565b506000821415612541576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506125576000848385611d70565b505050565b60006001821460e11b9050919050565b828054612578906133e1565b90600052602060002090601f01602090048101928261259a57600085556125e1565b82601f106125b357805160ff19168380011785556125e1565b828001600101855582156125e1579182015b828111156125e05782518255916020019190600101906125c5565b5b5090506125ee91906125f2565b5090565b5b8082111561260b5760008160009055506001016125f3565b5090565b600061262261261d84613118565b6130f3565b90508281526020810184848401111561263e5761263d61357d565b5b61264984828561339f565b509392505050565b600061266461265f84613149565b6130f3565b9050828152602081018484840111156126805761267f61357d565b5b61268b84828561339f565b509392505050565b6000813590506126a281613850565b92915050565b6000813590506126b781613867565b92915050565b6000813590506126cc8161387e565b92915050565b6000815190506126e18161387e565b92915050565b600082601f8301126126fc576126fb613578565b5b813561270c84826020860161260f565b91505092915050565b600082601f83011261272a57612729613578565b5b813561273a848260208601612651565b91505092915050565b60008135905061275281613895565b92915050565b60006020828403121561276e5761276d613587565b5b600061277c84828501612693565b91505092915050565b6000806040838503121561279c5761279b613587565b5b60006127aa85828601612693565b92505060206127bb85828601612693565b9150509250929050565b6000806000606084860312156127de576127dd613587565b5b60006127ec86828701612693565b93505060206127fd86828701612693565b925050604061280e86828701612743565b9150509250925092565b6000806000806080858703121561283257612831613587565b5b600061284087828801612693565b945050602061285187828801612693565b935050604061286287828801612743565b925050606085013567ffffffffffffffff81111561288357612882613582565b5b61288f878288016126e7565b91505092959194509250565b600080604083850312156128b2576128b1613587565b5b60006128c085828601612693565b92505060206128d1858286016126a8565b9150509250929050565b600080604083850312156128f2576128f1613587565b5b600061290085828601612693565b925050602061291185828601612743565b9150509250929050565b60006020828403121561293157612930613587565b5b600061293f848285016126a8565b91505092915050565b60006020828403121561295e5761295d613587565b5b600061296c848285016126bd565b91505092915050565b60006020828403121561298b5761298a613587565b5b6000612999848285016126d2565b91505092915050565b6000602082840312156129b8576129b7613587565b5b600082013567ffffffffffffffff8111156129d6576129d5613582565b5b6129e284828501612715565b91505092915050565b600060208284031215612a0157612a00613587565b5b6000612a0f84828501612743565b91505092915050565b60008060408385031215612a2f57612a2e613587565b5b6000612a3d85828601612743565b9250506020612a4e85828601612693565b9150509250929050565b6000612a648383612e1b565b60208301905092915050565b612a798161332b565b82525050565b6000612a8a8261319f565b612a9481856131cd565b9350612a9f8361317a565b8060005b83811015612ad0578151612ab78882612a58565b9750612ac2836131c0565b925050600181019050612aa3565b5085935050505092915050565b612ae68161333d565b82525050565b6000612af7826131aa565b612b0181856131de565b9350612b118185602086016133ae565b612b1a8161358c565b840191505092915050565b6000612b30826131b5565b612b3a81856131fa565b9350612b4a8185602086016133ae565b612b538161358c565b840191505092915050565b6000612b69826131b5565b612b73818561320b565b9350612b838185602086016133ae565b80840191505092915050565b60008154612b9c816133e1565b612ba6818661320b565b94506001821660008114612bc15760018114612bd257612c05565b60ff19831686528186019350612c05565b612bdb8561318a565b60005b83811015612bfd57815481890152600182019150602081019050612bde565b838801955050505b50505092915050565b6000612c1b6026836131fa565b9150612c268261359d565b604082019050919050565b6000612c3e600f836131fa565b9150612c49826135ec565b602082019050919050565b6000612c61602a836131ef565b9150612c6c82613615565b602a82019050919050565b6000612c846013836131fa565b9150612c8f82613664565b602082019050919050565b6000612ca76013836131fa565b9150612cb28261368d565b602082019050919050565b6000612cca60058361320b565b9150612cd5826136b6565b600582019050919050565b6000612ced6020836131fa565b9150612cf8826136df565b602082019050919050565b6000612d10602f836131fa565b9150612d1b82613708565b604082019050919050565b6000612d336013836131fa565b9150612d3e82613757565b602082019050919050565b6000612d566014836131fa565b9150612d6182613780565b602082019050919050565b6000612d796011836131fa565b9150612d84826137a9565b602082019050919050565b6000612d9c6000836131ef565b9150612da7826137d2565b600082019050919050565b6000612dbf6013836131fa565b9150612dca826137d5565b602082019050919050565b6000612de26012836131fa565b9150612ded826137fe565b602082019050919050565b6000612e056015836131fa565b9150612e1082613827565b602082019050919050565b612e2481613395565b82525050565b612e3381613395565b82525050565b6000612e458285612b8f565b9150612e518284612b5e565b9150612e5c82612cbd565b91508190509392505050565b6000612e7382612c54565b9150819050919050565b6000612e8882612d8f565b9150819050919050565b6000602082019050612ea76000830184612a70565b92915050565b6000608082019050612ec26000830187612a70565b612ecf6020830186612a70565b612edc6040830185612e2a565b8181036060830152612eee8184612aec565b905095945050505050565b60006020820190508181036000830152612f138184612a7f565b905092915050565b6000602082019050612f306000830184612add565b92915050565b60006020820190508181036000830152612f508184612b25565b905092915050565b60006020820190508181036000830152612f7181612c0e565b9050919050565b60006020820190508181036000830152612f9181612c31565b9050919050565b60006020820190508181036000830152612fb181612c77565b9050919050565b60006020820190508181036000830152612fd181612c9a565b9050919050565b60006020820190508181036000830152612ff181612ce0565b9050919050565b6000602082019050818103600083015261301181612d03565b9050919050565b6000602082019050818103600083015261303181612d26565b9050919050565b6000602082019050818103600083015261305181612d49565b9050919050565b6000602082019050818103600083015261307181612d6c565b9050919050565b6000602082019050818103600083015261309181612db2565b9050919050565b600060208201905081810360008301526130b181612dd5565b9050919050565b600060208201905081810360008301526130d181612df8565b9050919050565b60006020820190506130ed6000830184612e2a565b92915050565b60006130fd61310e565b90506131098282613413565b919050565b6000604051905090565b600067ffffffffffffffff82111561313357613132613549565b5b61313c8261358c565b9050602081019050919050565b600067ffffffffffffffff82111561316457613163613549565b5b61316d8261358c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061322182613395565b915061322c83613395565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132615761326061348d565b5b828201905092915050565b600061327782613395565b915061328283613395565b925082613292576132916134bc565b5b828204905092915050565b60006132a882613395565b91506132b383613395565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132ec576132eb61348d565b5b828202905092915050565b600061330282613395565b915061330d83613395565b9250828210156133205761331f61348d565b5b828203905092915050565b600061333682613375565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133cc5780820151818401526020810190506133b1565b838111156133db576000848401525b50505050565b600060028204905060018216806133f957607f821691505b6020821081141561340d5761340c6134eb565b5b50919050565b61341c8261358c565b810181811067ffffffffffffffff8211171561343b5761343a613549565b5b80604052505050565b600061344f82613395565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134825761348161348d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f307830463139453537634537384165323034443564413232314238303136433660008201527f3139393639383838646200000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6138598161332b565b811461386457600080fd5b50565b6138708161333d565b811461387b57600080fd5b50565b61388781613349565b811461389257600080fd5b50565b61389e81613395565b81146138a957600080fd5b5056fea26469706673582212202bfe0c6173574a3d3535c549ca6232793d4a12c8df3cbbd6d07b81327189a4e364736f6c634300080700330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a945bf80116100a0578063c87b56dd1161006f578063c87b56dd146106f3578063e0a8085314610730578063e985e9c514610759578063f2fde38b14610796578063f7e8d6ea146107bf57610204565b8063a945bf8014610658578063b88d4fde14610683578063bceae77b1461069f578063c6275255146106ca57610204565b80637af3a1af116100e75780637af3a1af146105875780638da5cb5b146105b05780639007bd72146105db57806395d89b4114610604578063a22cb4651461062f57610204565b80636352211e146104b957806370a08231146104f6578063715018a6146105335780637aeb72421461054a57610204565b80632fecf20b1161019b57806342842e0e1161016a57806342842e0e146103e1578063438b6300146103fd578063518302271461043a57806355f804b3146104655780635c975abb1461048e57610204565b80632fecf20b1461035657806332cb6b0c1461038157806333bc1c5c146103ac5780633ccfd60b146103d757610204565b806316c38b3c116101d757806316c38b3c146102ca57806318160ddd146102f357806323b872dd1461031e5780632db115441461033a57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612948565b6107ea565b60405161023d9190612f1b565b60405180910390f35b34801561025257600080fd5b5061025b61087c565b6040516102689190612f36565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906129eb565b61090e565b6040516102a59190612e92565b60405180910390f35b6102c860048036038101906102c391906128db565b61098d565b005b3480156102d657600080fd5b506102f160048036038101906102ec919061291b565b610ad1565b005b3480156102ff57600080fd5b50610308610af6565b60405161031591906130d8565b60405180910390f35b610338600480360381019061033391906127c5565b610b0d565b005b610354600480360381019061034f91906129eb565b610e32565b005b34801561036257600080fd5b5061036b6110e8565b60405161037891906130d8565b60405180910390f35b34801561038d57600080fd5b506103966110ed565b6040516103a391906130d8565b60405180910390f35b3480156103b857600080fd5b506103c16110f3565b6040516103ce9190612f1b565b60405180910390f35b6103df611106565b005b6103fb60048036038101906103f691906127c5565b6111ef565b005b34801561040957600080fd5b50610424600480360381019061041f9190612758565b61120f565b6040516104319190612ef9565b60405180910390f35b34801561044657600080fd5b5061044f61131a565b60405161045c9190612f1b565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906129a2565b61132d565b005b34801561049a57600080fd5b506104a361134f565b6040516104b09190612f1b565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db91906129eb565b611362565b6040516104ed9190612e92565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612758565b611374565b60405161052a91906130d8565b60405180910390f35b34801561053f57600080fd5b5061054861142d565b005b34801561055657600080fd5b50610571600480360381019061056c9190612758565b611441565b60405161057e91906130d8565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061291b565b611459565b005b3480156105bc57600080fd5b506105c561147e565b6040516105d29190612e92565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612a18565b6114a7565b005b34801561061057600080fd5b506106196115d4565b6040516106269190612f36565b60405180910390f35b34801561063b57600080fd5b506106566004803603810190610651919061289b565b611666565b005b34801561066457600080fd5b5061066d611771565b60405161067a91906130d8565b60405180910390f35b61069d60048036038101906106989190612818565b611777565b005b3480156106ab57600080fd5b506106b46117ea565b6040516106c191906130d8565b60405180910390f35b3480156106d657600080fd5b506106f160048036038101906106ec91906129eb565b6117ef565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906129eb565b611801565b6040516107279190612f36565b60405180910390f35b34801561073c57600080fd5b506107576004803603810190610752919061291b565b611925565b005b34801561076557600080fd5b50610780600480360381019061077b9190612785565b61194a565b60405161078d9190612f1b565b60405180910390f35b3480156107a257600080fd5b506107bd60048036038101906107b89190612758565b6119de565b005b3480156107cb57600080fd5b506107d4611a62565b6040516107e19190612f36565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108755750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461088b906133e1565b80601f01602080910402602001604051908101604052809291908181526020018280546108b7906133e1565b80156109045780601f106108d957610100808354040283529160200191610904565b820191906000526020600020905b8154815290600101906020018083116108e757829003601f168201915b5050505050905090565b600061091982611af0565b61094f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099882611362565b90508073ffffffffffffffffffffffffffffffffffffffff166109b9611b4f565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576109e5816109e0611b4f565b61194a565b610a1b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ad9611b57565b80600b60006101000a81548160ff02191690831515021790555050565b6000610b00611bd5565b6002546001540303905090565b6000610b1882611bde565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b8b84611cac565b91509150610ba18187610b9c611b4f565b611cd3565b610bed57610bb686610bb1611b4f565b61194a565b610bec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c618686866001611d17565b8015610c6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d3a85610d16888887611d1d565b7c020000000000000000000000000000000000000000000000000000000017611d45565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dc2576000600185019050600060056000838152602001908152602001600020541415610dc0576001548114610dbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e2a8686866001611d70565b505050505050565b80600b60009054906101000a900460ff1615610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613098565b60405180910390fd5b6101a481610e8f610af6565b610e999190613216565b1115610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906130b8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3f90612f98565b60405180910390fd5b600b60029054906101000a900460ff16610f97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8e90613038565b60405180910390fd5b6002821115610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290613058565b60405180910390fd5b600060095490506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600284826110349190613216565b1115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612fb8565b60405180910390fd5b6110898483611084919061329d565b611d76565b83816110959190613216565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110e23385611e82565b50505050565b600281565b6101a481565b600b60029054906101000a900460ff1681565b61110e611b57565b60004790506000730f19e57ce78ae204d5da221b8016c619969888db73ffffffffffffffffffffffffffffffffffffffff16612710808461114f919061329d565b611159919061326c565b60405161116590612e68565b60006040518083038185875af1925050503d80600081146111a2576040519150601f19603f3d011682016040523d82523d6000602084013e6111a7565b606091505b50509050806111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e290613078565b60405180910390fd5b5050565b61120a83838360405180602001604052806000815250611777565b505050565b6060600061121c83611374565b905060008167ffffffffffffffff81111561123a57611239613549565b5b6040519080825280602002602001820160405280156112685781602001602082028036833780820191505090505b50905060006001905060005b838110801561128557506101a48211155b1561130e57600061129583611362565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112fa57828483815181106112df576112de61351a565b5b60200260200101818152505081806112f690613444565b9250505b828061130590613444565b93505050611274565b82945050505050919050565b600b60019054906101000a900460ff1681565b611335611b57565b80600a908051906020019061134b92919061256c565b5050565b600b60009054906101000a900460ff1681565b600061136d82611bde565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113dc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611435611b57565b61143f6000611ea0565b565b600c6020528060005260406000206000915090505481565b611461611b57565b80600b60026101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114af611b57565b81600b60009054906101000a900460ff1615611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f790613098565b60405180910390fd5b6101a48161150c610af6565b6115169190613216565b1115611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e906130b8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bc90612f98565b60405180910390fd5b6115cf8284611e82565b505050565b6060600480546115e3906133e1565b80601f016020809104026020016040519081016040528092919081815260200182805461160f906133e1565b801561165c5780601f106116315761010080835404028352916020019161165c565b820191906000526020600020905b81548152906001019060200180831161163f57829003601f168201915b5050505050905090565b8060086000611673611b4f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611720611b4f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117659190612f1b565b60405180910390a35050565b60095481565b611782848484610b0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e4576117ad84848484611f64565b6117e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600281565b6117f7611b57565b8060098190555050565b606061180c82611af0565b61184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290612ff8565b60405180910390fd5b600b60019054906101000a900460ff161561189257600a61186b836120c4565b60405160200161187c929190612e39565b6040516020818303038152906040529050611920565b600a805461189f906133e1565b80601f01602080910402602001604051908101604052809291908181526020018280546118cb906133e1565b80156119185780601f106118ed57610100808354040283529160200191611918565b820191906000526020600020905b8154815290600101906020018083116118fb57829003601f168201915b505050505090505b919050565b61192d611b57565b80600b60016101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e6611b57565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90612f58565b60405180910390fd5b611a5f81611ea0565b50565b600a8054611a6f906133e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9b906133e1565b8015611ae85780601f10611abd57610100808354040283529160200191611ae8565b820191906000526020600020905b815481529060010190602001808311611acb57829003601f168201915b505050505081565b600081611afb611bd5565b11158015611b0a575060015482105b8015611b48575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611b5f61219c565b73ffffffffffffffffffffffffffffffffffffffff16611b7d61147e565b73ffffffffffffffffffffffffffffffffffffffff1614611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90612fd8565b60405180910390fd5b565b60006001905090565b60008082905080611bed611bd5565b11611c7557600154811015611c745760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c72575b6000811415611c68576005600083600190039350838152602001908152602001600020549050611c3d565b8092505050611ca7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d348686846121a4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80341115611e3b5760003373ffffffffffffffffffffffffffffffffffffffff168234611da391906132f7565b604051611daf90612e7d565b60006040518083038185875af1925050503d8060008114611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b5050905080611e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2c90612f78565b60405180910390fd5b50611e7f565b80341015611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590613018565b60405180910390fd5b5b50565b611e9c8282604051806020016040528060008152506121ad565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f8a611b4f565b8786866040518563ffffffff1660e01b8152600401611fac9493929190612ead565b602060405180830381600087803b158015611fc657600080fd5b505af1925050508015611ff757506040513d601f19601f82011682018060405250810190611ff49190612975565b60015b612071573d8060008114612027576040519150601f19603f3d011682016040523d82523d6000602084013e61202c565b606091505b50600081511415612069576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600060016120d38461224b565b01905060008167ffffffffffffffff8111156120f2576120f1613549565b5b6040519080825280601f01601f1916602001820160405280156121245781602001600182028036833780820191505090505b509050600082602001820190505b600115612191578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161217b5761217a6134bc565b5b049450600085141561218c57612191565b612132565b819350505050919050565b600033905090565b60009392505050565b6121b7838361239e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122465760006001549050600083820390505b6121f86000868380600101945086611f64565b61222e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121e557816001541461224357600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106122a9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161229f5761229e6134bc565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106122e6576d04ee2d6d415b85acef810000000083816122dc576122db6134bc565b5b0492506020810190505b662386f26fc10000831061231557662386f26fc10000838161230b5761230a6134bc565b5b0492506010810190505b6305f5e100831061233e576305f5e1008381612334576123336134bc565b5b0492506008810190505b6127108310612363576127108381612359576123586134bc565b5b0492506004810190505b60648310612386576064838161237c5761237b6134bc565b5b0492506002810190505b600a8310612395576001810190505b80915050919050565b6000600154905060008214156123e0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123ed6000848385611d17565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612464836124556000866000611d1d565b61245e8561255c565b17611d45565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461250557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506124ca565b506000821415612541576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506125576000848385611d70565b505050565b60006001821460e11b9050919050565b828054612578906133e1565b90600052602060002090601f01602090048101928261259a57600085556125e1565b82601f106125b357805160ff19168380011785556125e1565b828001600101855582156125e1579182015b828111156125e05782518255916020019190600101906125c5565b5b5090506125ee91906125f2565b5090565b5b8082111561260b5760008160009055506001016125f3565b5090565b600061262261261d84613118565b6130f3565b90508281526020810184848401111561263e5761263d61357d565b5b61264984828561339f565b509392505050565b600061266461265f84613149565b6130f3565b9050828152602081018484840111156126805761267f61357d565b5b61268b84828561339f565b509392505050565b6000813590506126a281613850565b92915050565b6000813590506126b781613867565b92915050565b6000813590506126cc8161387e565b92915050565b6000815190506126e18161387e565b92915050565b600082601f8301126126fc576126fb613578565b5b813561270c84826020860161260f565b91505092915050565b600082601f83011261272a57612729613578565b5b813561273a848260208601612651565b91505092915050565b60008135905061275281613895565b92915050565b60006020828403121561276e5761276d613587565b5b600061277c84828501612693565b91505092915050565b6000806040838503121561279c5761279b613587565b5b60006127aa85828601612693565b92505060206127bb85828601612693565b9150509250929050565b6000806000606084860312156127de576127dd613587565b5b60006127ec86828701612693565b93505060206127fd86828701612693565b925050604061280e86828701612743565b9150509250925092565b6000806000806080858703121561283257612831613587565b5b600061284087828801612693565b945050602061285187828801612693565b935050604061286287828801612743565b925050606085013567ffffffffffffffff81111561288357612882613582565b5b61288f878288016126e7565b91505092959194509250565b600080604083850312156128b2576128b1613587565b5b60006128c085828601612693565b92505060206128d1858286016126a8565b9150509250929050565b600080604083850312156128f2576128f1613587565b5b600061290085828601612693565b925050602061291185828601612743565b9150509250929050565b60006020828403121561293157612930613587565b5b600061293f848285016126a8565b91505092915050565b60006020828403121561295e5761295d613587565b5b600061296c848285016126bd565b91505092915050565b60006020828403121561298b5761298a613587565b5b6000612999848285016126d2565b91505092915050565b6000602082840312156129b8576129b7613587565b5b600082013567ffffffffffffffff8111156129d6576129d5613582565b5b6129e284828501612715565b91505092915050565b600060208284031215612a0157612a00613587565b5b6000612a0f84828501612743565b91505092915050565b60008060408385031215612a2f57612a2e613587565b5b6000612a3d85828601612743565b9250506020612a4e85828601612693565b9150509250929050565b6000612a648383612e1b565b60208301905092915050565b612a798161332b565b82525050565b6000612a8a8261319f565b612a9481856131cd565b9350612a9f8361317a565b8060005b83811015612ad0578151612ab78882612a58565b9750612ac2836131c0565b925050600181019050612aa3565b5085935050505092915050565b612ae68161333d565b82525050565b6000612af7826131aa565b612b0181856131de565b9350612b118185602086016133ae565b612b1a8161358c565b840191505092915050565b6000612b30826131b5565b612b3a81856131fa565b9350612b4a8185602086016133ae565b612b538161358c565b840191505092915050565b6000612b69826131b5565b612b73818561320b565b9350612b838185602086016133ae565b80840191505092915050565b60008154612b9c816133e1565b612ba6818661320b565b94506001821660008114612bc15760018114612bd257612c05565b60ff19831686528186019350612c05565b612bdb8561318a565b60005b83811015612bfd57815481890152600182019150602081019050612bde565b838801955050505b50505092915050565b6000612c1b6026836131fa565b9150612c268261359d565b604082019050919050565b6000612c3e600f836131fa565b9150612c49826135ec565b602082019050919050565b6000612c61602a836131ef565b9150612c6c82613615565b602a82019050919050565b6000612c846013836131fa565b9150612c8f82613664565b602082019050919050565b6000612ca76013836131fa565b9150612cb28261368d565b602082019050919050565b6000612cca60058361320b565b9150612cd5826136b6565b600582019050919050565b6000612ced6020836131fa565b9150612cf8826136df565b602082019050919050565b6000612d10602f836131fa565b9150612d1b82613708565b604082019050919050565b6000612d336013836131fa565b9150612d3e82613757565b602082019050919050565b6000612d566014836131fa565b9150612d6182613780565b602082019050919050565b6000612d796011836131fa565b9150612d84826137a9565b602082019050919050565b6000612d9c6000836131ef565b9150612da7826137d2565b600082019050919050565b6000612dbf6013836131fa565b9150612dca826137d5565b602082019050919050565b6000612de26012836131fa565b9150612ded826137fe565b602082019050919050565b6000612e056015836131fa565b9150612e1082613827565b602082019050919050565b612e2481613395565b82525050565b612e3381613395565b82525050565b6000612e458285612b8f565b9150612e518284612b5e565b9150612e5c82612cbd565b91508190509392505050565b6000612e7382612c54565b9150819050919050565b6000612e8882612d8f565b9150819050919050565b6000602082019050612ea76000830184612a70565b92915050565b6000608082019050612ec26000830187612a70565b612ecf6020830186612a70565b612edc6040830185612e2a565b8181036060830152612eee8184612aec565b905095945050505050565b60006020820190508181036000830152612f138184612a7f565b905092915050565b6000602082019050612f306000830184612add565b92915050565b60006020820190508181036000830152612f508184612b25565b905092915050565b60006020820190508181036000830152612f7181612c0e565b9050919050565b60006020820190508181036000830152612f9181612c31565b9050919050565b60006020820190508181036000830152612fb181612c77565b9050919050565b60006020820190508181036000830152612fd181612c9a565b9050919050565b60006020820190508181036000830152612ff181612ce0565b9050919050565b6000602082019050818103600083015261301181612d03565b9050919050565b6000602082019050818103600083015261303181612d26565b9050919050565b6000602082019050818103600083015261305181612d49565b9050919050565b6000602082019050818103600083015261307181612d6c565b9050919050565b6000602082019050818103600083015261309181612db2565b9050919050565b600060208201905081810360008301526130b181612dd5565b9050919050565b600060208201905081810360008301526130d181612df8565b9050919050565b60006020820190506130ed6000830184612e2a565b92915050565b60006130fd61310e565b90506131098282613413565b919050565b6000604051905090565b600067ffffffffffffffff82111561313357613132613549565b5b61313c8261358c565b9050602081019050919050565b600067ffffffffffffffff82111561316457613163613549565b5b61316d8261358c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061322182613395565b915061322c83613395565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132615761326061348d565b5b828201905092915050565b600061327782613395565b915061328283613395565b925082613292576132916134bc565b5b828204905092915050565b60006132a882613395565b91506132b383613395565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132ec576132eb61348d565b5b828202905092915050565b600061330282613395565b915061330d83613395565b9250828210156133205761331f61348d565b5b828203905092915050565b600061333682613375565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133cc5780820151818401526020810190506133b1565b838111156133db576000848401525b50505050565b600060028204905060018216806133f957607f821691505b6020821081141561340d5761340c6134eb565b5b50919050565b61341c8261358c565b810181811067ffffffffffffffff8211171561343b5761343a613549565b5b80604052505050565b600061344f82613395565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134825761348161348d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f307830463139453537634537384165323034443564413232314238303136433660008201527f3139393639383838646200000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6138598161332b565b811461386457600080fd5b50565b6138708161333d565b811461387b57600080fd5b50565b61388781613349565b811461389257600080fd5b50565b61389e81613395565b81146138a957600080fd5b5056fea26469706673582212202bfe0c6173574a3d3535c549ca6232793d4a12c8df3cbbd6d07b81327189a4e364736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string):
Arg [1] : _symbol (string):
Arg [2] : _baseUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70396:4157:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37206:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38108:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44599:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44032:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73498:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33859:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48238:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71591:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70541:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70437:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70760:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73790:325;;;:::i;:::-;;51159:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72176:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70726:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73386:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70693:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39501:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35043:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17985:103;;;;;;;;;;;;;:::i;:::-;;70908:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73684:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17337:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74129:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38284:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45157:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70492:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51950:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70597:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73270:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72873:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73589:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45548:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18243:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70651:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37206:639;37291:4;37630:10;37615:25;;:11;:25;;;;:102;;;;37707:10;37692:25;;:11;:25;;;;37615:102;:179;;;;37784:10;37769:25;;:11;:25;;;;37615:179;37595:199;;37206:639;;;:::o;38108:100::-;38162:13;38195:5;38188:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38108:100;:::o;44599:218::-;44675:7;44700:16;44708:7;44700;:16::i;:::-;44695:64;;44725:34;;;;;;;;;;;;;;44695:64;44779:15;:24;44795:7;44779:24;;;;;;;;;;;:30;;;;;;;;;;;;44772:37;;44599:218;;;:::o;44032:408::-;44121:13;44137:16;44145:7;44137;:16::i;:::-;44121:32;;44193:5;44170:28;;:19;:17;:19::i;:::-;:28;;;44166:175;;44218:44;44235:5;44242:19;:17;:19::i;:::-;44218:16;:44::i;:::-;44213:128;;44290:35;;;;;;;;;;;;;;44213:128;44166:175;44386:2;44353:15;:24;44369:7;44353:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44424:7;44420:2;44404:28;;44413:5;44404:28;;;;;;;;;;;;44110:330;44032:408;;:::o;73498:83::-;17223:13;:11;:13::i;:::-;73567:6:::1;73558;;:15;;;;;;;;;;;;;;;;;;73498:83:::0;:::o;33859:323::-;33920:7;34148:15;:13;:15::i;:::-;34133:12;;34117:13;;:28;:46;34110:53;;33859:323;:::o;48238:2825::-;48380:27;48410;48429:7;48410:18;:27::i;:::-;48380:57;;48495:4;48454:45;;48470:19;48454:45;;;48450:86;;48508:28;;;;;;;;;;;;;;48450:86;48550:27;48579:23;48606:35;48633:7;48606:26;:35::i;:::-;48549:92;;;;48741:68;48766:15;48783:4;48789:19;:17;:19::i;:::-;48741:24;:68::i;:::-;48736:180;;48829:43;48846:4;48852:19;:17;:19::i;:::-;48829:16;:43::i;:::-;48824:92;;48881:35;;;;;;;;;;;;;;48824:92;48736:180;48947:1;48933:16;;:2;:16;;;48929:52;;;48958:23;;;;;;;;;;;;;;48929:52;48994:43;49016:4;49022:2;49026:7;49035:1;48994:21;:43::i;:::-;49130:15;49127:160;;;49270:1;49249:19;49242:30;49127:160;49667:18;:24;49686:4;49667:24;;;;;;;;;;;;;;;;49665:26;;;;;;;;;;;;49736:18;:22;49755:2;49736:22;;;;;;;;;;;;;;;;49734:24;;;;;;;;;;;50058:146;50095:2;50144:45;50159:4;50165:2;50169:19;50144:14;:45::i;:::-;30258:8;50116:73;50058:18;:146::i;:::-;50029:17;:26;50047:7;50029:26;;;;;;;;;;;:175;;;;50375:1;30258:8;50324:19;:47;:52;50320:627;;;50397:19;50429:1;50419:7;:11;50397:33;;50586:1;50552:17;:30;50570:11;50552:30;;;;;;;;;;;;:35;50548:384;;;50690:13;;50675:11;:28;50671:242;;50870:19;50837:17;:30;50855:11;50837:30;;;;;;;;;;;:52;;;;50671:242;50548:384;50378:569;50320:627;50994:7;50990:2;50975:27;;50984:4;50975:27;;;;;;;;;;;;51013:42;51034:4;51040:2;51044:7;51053:1;51013:20;:42::i;:::-;48369:2694;;;48238:2825;;;:::o;71591:571::-;71661:8;74352:6;;;;;;;;;;;74351:7;74343:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;70474:3;74416:8;74400:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;74392:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;74496:10;74483:23;;:9;:23;;;74475:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71690:10:::1;;;;;;;;;;;71682:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;70589:1;71744:8;:33;;71736:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71812:13;71828:11;;71812:27;;71850:17;71870:12;:24;71883:10;71870:24;;;;;;;;;;;;;;;;71850:44;;70641:1;71943:8;71931:9;:20;;;;:::i;:::-;:41;;71923:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;72017:31;72039:8;72031:5;:16;;;;:::i;:::-;72017:13;:31::i;:::-;72101:8;72089:9;:20;;;;:::i;:::-;72061:12;:24;72074:10;72061:24;;;;;;;;;;;;;;;:49;;;;72123:31;72133:10;72145:8;72123:9;:31::i;:::-;71671:491;;71591:571:::0;;:::o;70541:49::-;70589:1;70541:49;:::o;70437:40::-;70474:3;70437:40;:::o;70760:29::-;;;;;;;;;;;;;:::o;73790:325::-;17223:13;:11;:13::i;:::-;73858:19:::1;73880:21;73858:43;;73915:9;70839:42;73930:20;;73996:5;73987::::0;73973:11:::1;:19;;;;:::i;:::-;73972:29;;;;:::i;:::-;73930:128;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73914:144;;;74077:4;74069:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;73837:278;;73790:325::o:0;51159:193::-;51305:39;51322:4;51328:2;51332:7;51305:39;;;;;;;;;;;;:16;:39::i;:::-;51159:193;;;:::o;72176:689::-;72236:16;72270:23;72296:17;72306:6;72296:9;:17::i;:::-;72270:43;;72324:30;72371:15;72357:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72324:63;;72398:22;72423:1;72398:26;;72435:23;72475:350;72500:15;72482;:33;:65;;;;;70474:3;72519:14;:28;;72482:65;72475:350;;;72564:25;72592:23;72600:14;72592:7;:23::i;:::-;72564:51;;72657:6;72636:27;;:17;:27;;;72632:153;;;72717:14;72684:13;72698:15;72684:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;72752:17;;;;;:::i;:::-;;;;72632:153;72797:16;;;;;:::i;:::-;;;;72549:276;72475:350;;;72844:13;72837:20;;;;;;72176:689;;;:::o;70726:27::-;;;;;;;;;;;;;:::o;73386:102::-;17223:13;:11;:13::i;:::-;73472:8:::1;73458:11;:22;;;;;;;;;;;;:::i;:::-;;73386:102:::0;:::o;70693:26::-;;;;;;;;;;;;;:::o;39501:152::-;39573:7;39616:27;39635:7;39616:18;:27::i;:::-;39593:52;;39501:152;;;:::o;35043:233::-;35115:7;35156:1;35139:19;;:5;:19;;;35135:60;;;35167:28;;;;;;;;;;;;;;35135:60;29202:13;35213:18;:25;35232:5;35213:25;;;;;;;;;;;;;;;;:55;35206:62;;35043:233;;;:::o;17985:103::-;17223:13;:11;:13::i;:::-;18050:30:::1;18077:1;18050:18;:30::i;:::-;17985:103::o:0;70908:47::-;;;;;;;;;;;;;;;;;:::o;73684:94::-;17223:13;:11;:13::i;:::-;73764:6:::1;73751:10;;:19;;;;;;;;;;;;;;;;;;73684:94:::0;:::o;17337:87::-;17383:7;17410:6;;;;;;;;;;;17403:13;;17337:87;:::o;74129:146::-;17223:13;:11;:13::i;:::-;74217:8:::1;74352:6;;;;;;;;;;;74351:7;74343:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;70474:3;74416:8;74400:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;74392:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;74496:10;74483:23;;:9;:23;;;74475:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;74238:29:::2;74248:8;74258;74238:9;:29::i;:::-;17247:1:::1;74129:146:::0;;:::o;38284:104::-;38340:13;38373:7;38366:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38284:104;:::o;45157:234::-;45304:8;45252:18;:39;45271:19;:17;:19::i;:::-;45252:39;;;;;;;;;;;;;;;:49;45292:8;45252:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45364:8;45328:55;;45343:19;:17;:19::i;:::-;45328:55;;;45374:8;45328:55;;;;;;:::i;:::-;;;;;;;;45157:234;;:::o;70492:40::-;;;;:::o;51950:407::-;52125:31;52138:4;52144:2;52148:7;52125:12;:31::i;:::-;52189:1;52171:2;:14;;;:19;52167:183;;52210:56;52241:4;52247:2;52251:7;52260:5;52210:30;:56::i;:::-;52205:145;;52294:40;;;;;;;;;;;;;;52205:145;52167:183;51950:407;;;;:::o;70597:45::-;70641:1;70597:45;:::o;73270:108::-;17223:13;:11;:13::i;:::-;73358:12:::1;73344:11;:26;;;;73270:108:::0;:::o;72873:389::-;72939:13;72983:17;72991:8;72983:7;:17::i;:::-;72975:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;73077:8;;;;;;;;;;;73073:182;;;73133:11;73146:26;73163:8;73146:16;:26::i;:::-;73116:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73102:81;;;;73073:182;73232:11;73225:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72873:389;;;;:::o;73589:87::-;17223:13;:11;:13::i;:::-;73662:6:::1;73651:8;;:17;;;;;;;;;;;;;;;;;;73589:87:::0;:::o;45548:164::-;45645:4;45669:18;:25;45688:5;45669:25;;;;;;;;;;;;;;;:35;45695:8;45669:35;;;;;;;;;;;;;;;;;;;;;;;;;45662:42;;45548:164;;;;:::o;18243:201::-;17223:13;:11;:13::i;:::-;18352:1:::1;18332:22;;:8;:22;;;;18324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18408:28;18427:8;18408:18;:28::i;:::-;18243:201:::0;:::o;70651:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45970:282::-;46035:4;46091:7;46072:15;:13;:15::i;:::-;:26;;:66;;;;;46125:13;;46115:7;:23;46072:66;:153;;;;;46224:1;29978:8;46176:17;:26;46194:7;46176:26;;;;;;;;;;;;:44;:49;46072:153;46052:173;;45970:282;;;:::o;68278:105::-;68338:7;68365:10;68358:17;;68278:105;:::o;17502:132::-;17577:12;:10;:12::i;:::-;17566:23;;:7;:5;:7::i;:::-;:23;;;17558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17502:132::o;71101:101::-;71166:7;71193:1;71186:8;;71101:101;:::o;40656:1275::-;40723:7;40743:12;40758:7;40743:22;;40826:4;40807:15;:13;:15::i;:::-;:23;40803:1061;;40860:13;;40853:4;:20;40849:1015;;;40898:14;40915:17;:23;40933:4;40915:23;;;;;;;;;;;;40898:40;;41032:1;29978:8;41004:6;:24;:29;41000:845;;;41669:113;41686:1;41676:6;:11;41669:113;;;41729:17;:25;41747:6;;;;;;;41729:25;;;;;;;;;;;;41720:34;;41669:113;;;41815:6;41808:13;;;;;;41000:845;40875:989;40849:1015;40803:1061;41892:31;;;;;;;;;;;;;;40656:1275;;;;:::o;47133:485::-;47235:27;47264:23;47305:38;47346:15;:24;47362:7;47346:24;;;;;;;;;;;47305:65;;47523:18;47500:41;;47580:19;47574:26;47555:45;;47485:126;47133:485;;;:::o;46361:659::-;46510:11;46675:16;46668:5;46664:28;46655:37;;46835:16;46824:9;46820:32;46807:45;;46985:15;46974:9;46971:30;46963:5;46952:9;46949:20;46946:56;46936:66;;46361:659;;;;;:::o;53019:159::-;;;;;:::o;67587:311::-;67722:7;67742:16;30382:3;67768:19;:41;;67742:68;;30382:3;67836:31;67847:4;67853:2;67857:9;67836:10;:31::i;:::-;67828:40;;:62;;67821:69;;;67587:311;;;;;:::o;42479:450::-;42559:14;42727:16;42720:5;42716:28;42707:37;;42904:5;42890:11;42865:23;42861:41;42858:52;42851:5;42848:63;42838:73;;42479:450;;;;:::o;53843:158::-;;;;;:::o;71210:359::-;71283:5;71271:9;:17;71267:295;;;71306:9;71329:10;71321:24;;71384:5;71372:9;:17;;;;:::i;:::-;71321:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71305:104;;;71432:4;71424:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;71290:178;71267:295;;;71499:5;71487:9;:17;71483:79;;;71521:29;;;;;;;;;;:::i;:::-;;;;;;;;71483:79;71267:295;71210:359;:::o;62110:112::-;62187:27;62197:2;62201:8;62187:27;;;;;;;;;;;;:9;:27::i;:::-;62110:112;;:::o;18604:191::-;18678:16;18697:6;;;;;;;;;;;18678:25;;18723:8;18714:6;;:17;;;;;;;;;;;;;;;;;;18778:8;18747:40;;18768:8;18747:40;;;;;;;;;;;;18667:128;18604:191;:::o;54441:716::-;54604:4;54650:2;54625:45;;;54671:19;:17;:19::i;:::-;54692:4;54698:7;54707:5;54625:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54621:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54925:1;54908:6;:13;:18;54904:235;;;54954:40;;;;;;;;;;;;;;54904:235;55097:6;55091:13;55082:6;55078:2;55074:15;55067:38;54621:529;54794:54;;;54784:64;;;:6;:64;;;;54777:71;;;54441:716;;;;;;:::o;13315:::-;13371:13;13422:14;13459:1;13439:17;13450:5;13439:10;:17::i;:::-;:21;13422:38;;13475:20;13509:6;13498:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13475:41;;13531:11;13660:6;13656:2;13652:15;13644:6;13640:28;13633:35;;13697:288;13704:4;13697:288;;;13729:5;;;;;;;;13871:8;13866:2;13859:5;13855:14;13850:30;13845:3;13837:44;13927:2;13918:11;;;;;;:::i;:::-;;;;;13961:1;13952:5;:10;13948:21;;;13964:5;;13948:21;13697:288;;;14006:6;13999:13;;;;;13315:716;;;:::o;15888:98::-;15941:7;15968:10;15961:17;;15888:98;:::o;67288:147::-;67425:6;67288:147;;;;;:::o;61337:689::-;61468:19;61474:2;61478:8;61468:5;:19::i;:::-;61547:1;61529:2;:14;;;:19;61525:483;;61569:11;61583:13;;61569:27;;61615:13;61637:8;61631:3;:14;61615:30;;61664:233;61695:62;61734:1;61738:2;61742:7;;;;;;61751:5;61695:30;:62::i;:::-;61690:167;;61793:40;;;;;;;;;;;;;;61690:167;61892:3;61884:5;:11;61664:233;;61979:3;61962:13;;:20;61958:34;;61984:8;;;61958:34;61550:458;;61525:483;61337:689;;;:::o;10176:922::-;10229:7;10249:14;10266:1;10249:18;;10316:6;10307:5;:15;10303:102;;10352:6;10343:15;;;;;;:::i;:::-;;;;;10387:2;10377:12;;;;10303:102;10432:6;10423:5;:15;10419:102;;10468:6;10459:15;;;;;;:::i;:::-;;;;;10503:2;10493:12;;;;10419:102;10548:6;10539:5;:15;10535:102;;10584:6;10575:15;;;;;;:::i;:::-;;;;;10619:2;10609:12;;;;10535:102;10664:5;10655;:14;10651:99;;10699:5;10690:14;;;;;;:::i;:::-;;;;;10733:1;10723:11;;;;10651:99;10777:5;10768;:14;10764:99;;10812:5;10803:14;;;;;;:::i;:::-;;;;;10846:1;10836:11;;;;10764:99;10890:5;10881;:14;10877:99;;10925:5;10916:14;;;;;;:::i;:::-;;;;;10959:1;10949:11;;;;10877:99;11003:5;10994;:14;10990:66;;11039:1;11029:11;;;;10990:66;11084:6;11077:13;;;10176:922;;;:::o;55619:2966::-;55692:20;55715:13;;55692:36;;55755:1;55743:8;:13;55739:44;;;55765:18;;;;;;;;;;;;;;55739:44;55796:61;55826:1;55830:2;55834:12;55848:8;55796:21;:61::i;:::-;56340:1;29340:2;56310:1;:26;;56309:32;56297:8;:45;56271:18;:22;56290:2;56271:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56619:139;56656:2;56710:33;56733:1;56737:2;56741:1;56710:14;:33::i;:::-;56677:30;56698:8;56677:20;:30::i;:::-;:66;56619:18;:139::i;:::-;56585:17;:31;56603:12;56585:31;;;;;;;;;;;:173;;;;56775:16;56806:11;56835:8;56820:12;:23;56806:37;;57356:16;57352:2;57348:25;57336:37;;57728:12;57688:8;57647:1;57585:25;57526:1;57465;57438:335;58099:1;58085:12;58081:20;58039:346;58140:3;58131:7;58128:16;58039:346;;58358:7;58348:8;58345:1;58318:25;58315:1;58312;58307:59;58193:1;58184:7;58180:15;58169:26;;58039:346;;;58043:77;58430:1;58418:8;:13;58414:45;;;58440:19;;;;;;;;;;;;;;58414:45;58492:3;58476:13;:19;;;;56045:2462;;58517:60;58546:1;58550:2;58554:12;58568:8;58517:20;:60::i;:::-;55681:2904;55619:2966;;:::o;43031:324::-;43101:14;43334:1;43324:8;43321:15;43295:24;43291:46;43281:56;;43031:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:400::-;12056:3;12077:84;12158:2;12153:3;12077:84;:::i;:::-;12070:91;;12170:93;12259:3;12170:93;:::i;:::-;12288:2;12283:3;12279:12;12272:19;;11897:400;;;:::o;12303:366::-;12445:3;12466:67;12530:2;12525:3;12466:67;:::i;:::-;12459:74;;12542:93;12631:3;12542:93;:::i;:::-;12660:2;12655:3;12651:12;12644:19;;12303:366;;;:::o;12675:::-;12817:3;12838:67;12902:2;12897:3;12838:67;:::i;:::-;12831:74;;12914:93;13003:3;12914:93;:::i;:::-;13032:2;13027:3;13023:12;13016:19;;12675:366;;;:::o;13047:400::-;13207:3;13228:84;13310:1;13305:3;13228:84;:::i;:::-;13221:91;;13321:93;13410:3;13321:93;:::i;:::-;13439:1;13434:3;13430:11;13423:18;;13047:400;;;:::o;13453:366::-;13595:3;13616:67;13680:2;13675:3;13616:67;:::i;:::-;13609:74;;13692:93;13781:3;13692:93;:::i;:::-;13810:2;13805:3;13801:12;13794:19;;13453:366;;;:::o;13825:::-;13967:3;13988:67;14052:2;14047:3;13988:67;:::i;:::-;13981:74;;14064:93;14153:3;14064:93;:::i;:::-;14182:2;14177:3;14173:12;14166:19;;13825:366;;;:::o;14197:::-;14339:3;14360:67;14424:2;14419:3;14360:67;:::i;:::-;14353:74;;14436:93;14525:3;14436:93;:::i;:::-;14554:2;14549:3;14545:12;14538:19;;14197:366;;;:::o;14569:::-;14711:3;14732:67;14796:2;14791:3;14732:67;:::i;:::-;14725:74;;14808:93;14897:3;14808:93;:::i;:::-;14926:2;14921:3;14917:12;14910:19;;14569:366;;;:::o;14941:::-;15083:3;15104:67;15168:2;15163:3;15104:67;:::i;:::-;15097:74;;15180:93;15269:3;15180:93;:::i;:::-;15298:2;15293:3;15289:12;15282:19;;14941:366;;;:::o;15313:398::-;15472:3;15493:83;15574:1;15569:3;15493:83;:::i;:::-;15486:90;;15585:93;15674:3;15585:93;:::i;:::-;15703:1;15698:3;15694:11;15687:18;;15313:398;;;:::o;15717:366::-;15859:3;15880:67;15944:2;15939:3;15880:67;:::i;:::-;15873:74;;15956:93;16045:3;15956:93;:::i;:::-;16074:2;16069:3;16065:12;16058:19;;15717:366;;;:::o;16089:::-;16231:3;16252:67;16316:2;16311:3;16252:67;:::i;:::-;16245:74;;16328:93;16417:3;16328:93;:::i;:::-;16446:2;16441:3;16437:12;16430:19;;16089:366;;;:::o;16461:::-;16603:3;16624:67;16688:2;16683:3;16624:67;:::i;:::-;16617:74;;16700:93;16789:3;16700:93;:::i;:::-;16818:2;16813:3;16809:12;16802:19;;16461:366;;;:::o;16833:108::-;16910:24;16928:5;16910:24;:::i;:::-;16905:3;16898:37;16833:108;;:::o;16947:118::-;17034:24;17052:5;17034:24;:::i;:::-;17029:3;17022:37;16947:118;;:::o;17071:695::-;17349:3;17371:92;17459:3;17450:6;17371:92;:::i;:::-;17364:99;;17480:95;17571:3;17562:6;17480:95;:::i;:::-;17473:102;;17592:148;17736:3;17592:148;:::i;:::-;17585:155;;17757:3;17750:10;;17071:695;;;;;:::o;17772:379::-;17956:3;17978:147;18121:3;17978:147;:::i;:::-;17971:154;;18142:3;18135:10;;17772:379;;;:::o;18157:::-;18341:3;18363:147;18506:3;18363:147;:::i;:::-;18356:154;;18527:3;18520:10;;18157:379;;;:::o;18542:222::-;18635:4;18673:2;18662:9;18658:18;18650:26;;18686:71;18754:1;18743:9;18739:17;18730:6;18686:71;:::i;:::-;18542:222;;;;:::o;18770:640::-;18965:4;19003:3;18992:9;18988:19;18980:27;;19017:71;19085:1;19074:9;19070:17;19061:6;19017:71;:::i;:::-;19098:72;19166:2;19155:9;19151:18;19142:6;19098:72;:::i;:::-;19180;19248:2;19237:9;19233:18;19224:6;19180:72;:::i;:::-;19299:9;19293:4;19289:20;19284:2;19273:9;19269:18;19262:48;19327:76;19398:4;19389:6;19327:76;:::i;:::-;19319:84;;18770:640;;;;;;;:::o;19416:373::-;19559:4;19597:2;19586:9;19582:18;19574:26;;19646:9;19640:4;19636:20;19632:1;19621:9;19617:17;19610:47;19674:108;19777:4;19768:6;19674:108;:::i;:::-;19666:116;;19416:373;;;;:::o;19795:210::-;19882:4;19920:2;19909:9;19905:18;19897:26;;19933:65;19995:1;19984:9;19980:17;19971:6;19933:65;:::i;:::-;19795:210;;;;:::o;20011:313::-;20124:4;20162:2;20151:9;20147:18;20139:26;;20211:9;20205:4;20201:20;20197:1;20186:9;20182:17;20175:47;20239:78;20312:4;20303:6;20239:78;:::i;:::-;20231:86;;20011:313;;;;:::o;20330:419::-;20496:4;20534:2;20523:9;20519:18;20511:26;;20583:9;20577:4;20573:20;20569:1;20558:9;20554:17;20547:47;20611:131;20737:4;20611:131;:::i;:::-;20603:139;;20330:419;;;:::o;20755:::-;20921:4;20959:2;20948:9;20944:18;20936:26;;21008:9;21002:4;20998:20;20994:1;20983:9;20979:17;20972:47;21036:131;21162:4;21036:131;:::i;:::-;21028:139;;20755:419;;;:::o;21180:::-;21346:4;21384:2;21373:9;21369:18;21361:26;;21433:9;21427:4;21423:20;21419:1;21408:9;21404:17;21397:47;21461:131;21587:4;21461:131;:::i;:::-;21453:139;;21180:419;;;:::o;21605:::-;21771:4;21809:2;21798:9;21794:18;21786:26;;21858:9;21852:4;21848:20;21844:1;21833:9;21829:17;21822:47;21886:131;22012:4;21886:131;:::i;:::-;21878:139;;21605:419;;;:::o;22030:::-;22196:4;22234:2;22223:9;22219:18;22211:26;;22283:9;22277:4;22273:20;22269:1;22258:9;22254:17;22247:47;22311:131;22437:4;22311:131;:::i;:::-;22303:139;;22030:419;;;:::o;22455:::-;22621:4;22659:2;22648:9;22644:18;22636:26;;22708:9;22702:4;22698:20;22694:1;22683:9;22679:17;22672:47;22736:131;22862:4;22736:131;:::i;:::-;22728:139;;22455:419;;;:::o;22880:::-;23046:4;23084:2;23073:9;23069:18;23061:26;;23133:9;23127:4;23123:20;23119:1;23108:9;23104:17;23097:47;23161:131;23287:4;23161:131;:::i;:::-;23153:139;;22880:419;;;:::o;23305:::-;23471:4;23509:2;23498:9;23494:18;23486:26;;23558:9;23552:4;23548:20;23544:1;23533:9;23529:17;23522:47;23586:131;23712:4;23586:131;:::i;:::-;23578:139;;23305:419;;;:::o;23730:::-;23896:4;23934:2;23923:9;23919:18;23911:26;;23983:9;23977:4;23973:20;23969:1;23958:9;23954:17;23947:47;24011:131;24137:4;24011:131;:::i;:::-;24003:139;;23730:419;;;:::o;24155:::-;24321:4;24359:2;24348:9;24344:18;24336:26;;24408:9;24402:4;24398:20;24394:1;24383:9;24379:17;24372:47;24436:131;24562:4;24436:131;:::i;:::-;24428:139;;24155:419;;;:::o;24580:::-;24746:4;24784:2;24773:9;24769:18;24761:26;;24833:9;24827:4;24823:20;24819:1;24808:9;24804:17;24797:47;24861:131;24987:4;24861:131;:::i;:::-;24853:139;;24580:419;;;:::o;25005:::-;25171:4;25209:2;25198:9;25194:18;25186:26;;25258:9;25252:4;25248:20;25244:1;25233:9;25229:17;25222:47;25286:131;25412:4;25286:131;:::i;:::-;25278:139;;25005:419;;;:::o;25430:222::-;25523:4;25561:2;25550:9;25546:18;25538:26;;25574:71;25642:1;25631:9;25627:17;25618:6;25574:71;:::i;:::-;25430:222;;;;:::o;25658:129::-;25692:6;25719:20;;:::i;:::-;25709:30;;25748:33;25776:4;25768:6;25748:33;:::i;:::-;25658:129;;;:::o;25793:75::-;25826:6;25859:2;25853:9;25843:19;;25793:75;:::o;25874:307::-;25935:4;26025:18;26017:6;26014:30;26011:56;;;26047:18;;:::i;:::-;26011:56;26085:29;26107:6;26085:29;:::i;:::-;26077:37;;26169:4;26163;26159:15;26151:23;;25874:307;;;:::o;26187:308::-;26249:4;26339:18;26331:6;26328:30;26325:56;;;26361:18;;:::i;:::-;26325:56;26399:29;26421:6;26399:29;:::i;:::-;26391:37;;26483:4;26477;26473:15;26465:23;;26187:308;;;:::o;26501:132::-;26568:4;26591:3;26583:11;;26621:4;26616:3;26612:14;26604:22;;26501:132;;;:::o;26639:141::-;26688:4;26711:3;26703:11;;26734:3;26731:1;26724:14;26768:4;26765:1;26755:18;26747:26;;26639:141;;;:::o;26786:114::-;26853:6;26887:5;26881:12;26871:22;;26786:114;;;:::o;26906:98::-;26957:6;26991:5;26985:12;26975:22;;26906:98;;;:::o;27010:99::-;27062:6;27096:5;27090:12;27080:22;;27010:99;;;:::o;27115:113::-;27185:4;27217;27212:3;27208:14;27200:22;;27115:113;;;:::o;27234:184::-;27333:11;27367:6;27362:3;27355:19;27407:4;27402:3;27398:14;27383:29;;27234:184;;;;:::o;27424:168::-;27507:11;27541:6;27536:3;27529:19;27581:4;27576:3;27572:14;27557:29;;27424:168;;;;:::o;27598:147::-;27699:11;27736:3;27721:18;;27598:147;;;;:::o;27751:169::-;27835:11;27869:6;27864:3;27857:19;27909:4;27904:3;27900:14;27885:29;;27751:169;;;;:::o;27926:148::-;28028:11;28065:3;28050:18;;27926:148;;;;:::o;28080:305::-;28120:3;28139:20;28157:1;28139:20;:::i;:::-;28134:25;;28173:20;28191:1;28173:20;:::i;:::-;28168:25;;28327:1;28259:66;28255:74;28252:1;28249:81;28246:107;;;28333:18;;:::i;:::-;28246:107;28377:1;28374;28370:9;28363:16;;28080:305;;;;:::o;28391:185::-;28431:1;28448:20;28466:1;28448:20;:::i;:::-;28443:25;;28482:20;28500:1;28482:20;:::i;:::-;28477:25;;28521:1;28511:35;;28526:18;;:::i;:::-;28511:35;28568:1;28565;28561:9;28556:14;;28391:185;;;;:::o;28582:348::-;28622:7;28645:20;28663:1;28645:20;:::i;:::-;28640:25;;28679:20;28697:1;28679:20;:::i;:::-;28674:25;;28867:1;28799:66;28795:74;28792:1;28789:81;28784:1;28777:9;28770:17;28766:105;28763:131;;;28874:18;;:::i;:::-;28763:131;28922:1;28919;28915:9;28904:20;;28582:348;;;;:::o;28936:191::-;28976:4;28996:20;29014:1;28996:20;:::i;:::-;28991:25;;29030:20;29048:1;29030:20;:::i;:::-;29025:25;;29069:1;29066;29063:8;29060:34;;;29074:18;;:::i;:::-;29060:34;29119:1;29116;29112:9;29104:17;;28936:191;;;;:::o;29133:96::-;29170:7;29199:24;29217:5;29199:24;:::i;:::-;29188:35;;29133:96;;;:::o;29235:90::-;29269:7;29312:5;29305:13;29298:21;29287:32;;29235:90;;;:::o;29331:149::-;29367:7;29407:66;29400:5;29396:78;29385:89;;29331:149;;;:::o;29486:126::-;29523:7;29563:42;29556:5;29552:54;29541:65;;29486:126;;;:::o;29618:77::-;29655:7;29684:5;29673:16;;29618:77;;;:::o;29701:154::-;29785:6;29780:3;29775;29762:30;29847:1;29838:6;29833:3;29829:16;29822:27;29701:154;;;:::o;29861:307::-;29929:1;29939:113;29953:6;29950:1;29947:13;29939:113;;;30038:1;30033:3;30029:11;30023:18;30019:1;30014:3;30010:11;30003:39;29975:2;29972:1;29968:10;29963:15;;29939:113;;;30070:6;30067:1;30064:13;30061:101;;;30150:1;30141:6;30136:3;30132:16;30125:27;30061:101;29910:258;29861:307;;;:::o;30174:320::-;30218:6;30255:1;30249:4;30245:12;30235:22;;30302:1;30296:4;30292:12;30323:18;30313:81;;30379:4;30371:6;30367:17;30357:27;;30313:81;30441:2;30433:6;30430:14;30410:18;30407:38;30404:84;;;30460:18;;:::i;:::-;30404:84;30225:269;30174:320;;;:::o;30500:281::-;30583:27;30605:4;30583:27;:::i;:::-;30575:6;30571:40;30713:6;30701:10;30698:22;30677:18;30665:10;30662:34;30659:62;30656:88;;;30724:18;;:::i;:::-;30656:88;30764:10;30760:2;30753:22;30543:238;30500:281;;:::o;30787:233::-;30826:3;30849:24;30867:5;30849:24;:::i;:::-;30840:33;;30895:66;30888:5;30885:77;30882:103;;;30965:18;;:::i;:::-;30882:103;31012:1;31005:5;31001:13;30994:20;;30787:233;;;:::o;31026:180::-;31074:77;31071:1;31064:88;31171:4;31168:1;31161:15;31195:4;31192:1;31185:15;31212:180;31260:77;31257:1;31250:88;31357:4;31354:1;31347:15;31381:4;31378:1;31371:15;31398:180;31446:77;31443:1;31436:88;31543:4;31540:1;31533:15;31567:4;31564:1;31557:15;31584:180;31632:77;31629:1;31622:88;31729:4;31726:1;31719:15;31753:4;31750:1;31743:15;31770:180;31818:77;31815:1;31808:88;31915:4;31912:1;31905:15;31939:4;31936:1;31929:15;31956:117;32065:1;32062;32055:12;32079:117;32188:1;32185;32178:12;32202:117;32311:1;32308;32301:12;32325:117;32434:1;32431;32424:12;32448:102;32489:6;32540:2;32536:7;32531:2;32524:5;32520:14;32516:28;32506:38;;32448:102;;;:::o;32556:225::-;32696:34;32692:1;32684:6;32680:14;32673:58;32765:8;32760:2;32752:6;32748:15;32741:33;32556:225;:::o;32787:165::-;32927:17;32923:1;32915:6;32911:14;32904:41;32787:165;:::o;32958:229::-;33098:34;33094:1;33086:6;33082:14;33075:58;33167:12;33162:2;33154:6;33150:15;33143:37;32958:229;:::o;33193:169::-;33333:21;33329:1;33321:6;33317:14;33310:45;33193:169;:::o;33368:::-;33508:21;33504:1;33496:6;33492:14;33485:45;33368:169;:::o;33543:155::-;33683:7;33679:1;33671:6;33667:14;33660:31;33543:155;:::o;33704:182::-;33844:34;33840:1;33832:6;33828:14;33821:58;33704:182;:::o;33892:234::-;34032:34;34028:1;34020:6;34016:14;34009:58;34101:17;34096:2;34088:6;34084:15;34077:42;33892:234;:::o;34132:169::-;34272:21;34268:1;34260:6;34256:14;34249:45;34132:169;:::o;34307:170::-;34447:22;34443:1;34435:6;34431:14;34424:46;34307:170;:::o;34483:167::-;34623:19;34619:1;34611:6;34607:14;34600:43;34483:167;:::o;34656:114::-;;:::o;34776:169::-;34916:21;34912:1;34904:6;34900:14;34893:45;34776:169;:::o;34951:168::-;35091:20;35087:1;35079:6;35075:14;35068:44;34951:168;:::o;35125:171::-;35265:23;35261:1;35253:6;35249:14;35242:47;35125:171;:::o;35302:122::-;35375:24;35393:5;35375:24;:::i;:::-;35368:5;35365:35;35355:63;;35414:1;35411;35404:12;35355:63;35302:122;:::o;35430:116::-;35500:21;35515:5;35500:21;:::i;:::-;35493:5;35490:32;35480:60;;35536:1;35533;35526:12;35480:60;35430:116;:::o;35552:120::-;35624:23;35641:5;35624:23;:::i;:::-;35617:5;35614:34;35604:62;;35662:1;35659;35652:12;35604:62;35552:120;:::o;35678:122::-;35751:24;35769:5;35751:24;:::i;:::-;35744:5;35741:35;35731:63;;35790:1;35787;35780:12;35731:63;35678:122;:::o

Swarm Source

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