ETH Price: $2,336.48 (-0.44%)

Token

Monkiez (Eeee)
 

Overview

Max Total Supply

1,023 Eeee

Holders

153

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 Eeee
0x67addb9d76f9bed425ca65d4ea6981d14becc0db
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:
Monkiez

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : Monkiez.sol
// SPDX-License-Identifier: MIT

/*********************************
*                                *
*              0,1               *
*                                *
 *********************************/

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./lib/ERC721Enumerable.sol";
import "./IMonkeyDescriptor.sol";

contract Monkiez is ERC721Enumerable, Ownable {
    event SeedUpdated(uint256 indexed tokenId, uint256 seed);

    mapping(uint256 => uint256) internal seeds;
    IMonkeyDescriptor public descriptor;
    uint256 public maxSupply = 1024;
    bool public minting = false;
    bool public canUpdateSeed = true;

    constructor(IMonkeyDescriptor newDescriptor) ERC721("Monkiez", "Eeee") {
        descriptor = newDescriptor;
    }

    function mint(uint32 count) external payable {
        require(minting, "Minting needs to be enabled to start minting");
        require(count <= 8, "Exceeds max per transaction.");
        uint256 nextTokenId = _owners.length;
        unchecked {
            require(nextTokenId + count < maxSupply, "Exceeds max supply.");
        }

        for (uint32 i; i < count;) {
            seeds[nextTokenId] = generateSeed(nextTokenId);
            _mint(_msgSender(), nextTokenId);
            unchecked { ++nextTokenId; ++i; }
        }
    }

    function setMinting(bool value) external onlyOwner {
        minting = value;
    }

    function setDescriptor(IMonkeyDescriptor newDescriptor) external onlyOwner {
        descriptor = newDescriptor;
    }

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

    function updateSeed(uint256 tokenId, uint256 seed) external onlyOwner {
        require(canUpdateSeed, "Cannot set the seed");
        seeds[tokenId] = seed;
        emit SeedUpdated(tokenId, seed);
    }

    function disableSeedUpdate() external onlyOwner {
        canUpdateSeed = false;
    }

    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn.");
        delete seeds[tokenId];
        _burn(tokenId);
    }

    function getSeed(uint256 tokenId) public view returns (uint256) {
        require(_exists(tokenId), "Monkey does not exist.");
        return seeds[tokenId];
    }

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        require(_exists(tokenId), "Monkey does not exist.");
        uint256 seed = seeds[tokenId];
        return descriptor.tokenURI(tokenId, seed);
    }

    function generateSeed(uint256 tokenId) private view returns (uint256) {
        uint256 r = random(tokenId);
        uint256 headSeed = 100 * (r % 7 + 10) + ((r >> 48) % 20 + 10);
        uint256 faceSeed = 100 * ((r >> 96) % 6 + 10) + ((r >> 96) % 20 + 10);
        uint256 bodySeed = 100 * ((r >> 144) % 7 + 10) + ((r >> 144) % 20 + 10);
        return 10000 * (10000 * headSeed + faceSeed) + bodySeed;
    }

    function random(uint256 tokenId) private view returns (uint256 pseudoRandomness) {
        pseudoRandomness = uint256(
            keccak256(abi.encodePacked(blockhash(block.number - 1), tokenId))
        );

        return pseudoRandomness;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 4 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

File 5 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 6 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 10 of 15 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (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 11 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @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 12 of 15 : IMonkeyDescriptor.sol
// SPDX-License-Identifier: MIT

/*********************************
 *                                *
 *               0,0              *
 *                                *
 *********************************/

pragma solidity ^0.8.13;

interface IMonkeyDescriptor {
    function tokenURI(uint256 tokenId, uint256 seed)
        external
        view
        returns (string memory);
}

File 13 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

File 14 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./Address.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    string private _name;
    string private _symbol;

    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC721).interfaceId
        || interfaceId == type(IERC721Metadata).interfaceId
        || super.supportsInterface(interfaceId);
    }

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");

        uint256 count;
        for (uint256 i; i < _owners.length;) {
            if (owner == _owners[i]) {
                unchecked {
                    ++count;
                }
            }
            unchecked {
                ++i;
            }
        }
        return count;
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: invalid token ID");

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC721: approve to caller");
        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(!_exists(tokenId), "ERC721: token already minted");

        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        delete _tokenApprovals[tokenId];
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }

        return true;
    }
}

File 15 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

import "./ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    function totalSupply() public view virtual override returns (uint256) {
        uint256 count;
        for (uint256 i; i < _owners.length;) {
            if (_owners[i] != address(0)) {
                unchecked {
                    ++count;
                }
            }

            unchecked {
                ++i;
            }
        }

        return count;
    }

    function tokenByIndex(uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint256 count;
        for(uint256 i; i < _owners.length;){
            if(owner == _owners[i]) {
                if(count == index) return i;
                else {
                    unchecked {
                        ++count;
                    }
                }
            }

            unchecked {
                ++i;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IMonkeyDescriptor","name":"newDescriptor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seed","type":"uint256"}],"name":"SeedUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canUpdateSeed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"descriptor","outputs":[{"internalType":"contract IMonkeyDescriptor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableSeedUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"count","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMonkeyDescriptor","name":"newDescriptor","type":"address"}],"name":"setDescriptor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMinting","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"seed","type":"uint256"}],"name":"updateSeed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526104006008556000600960006101000a81548160ff0219169083151502179055506001600960016101000a81548160ff0219169083151502179055503480156200004d57600080fd5b5060405162003fb838038062003fb88339818101604052810190620000739190620002b9565b6040518060400160405280600781526020017f4d6f6e6b69657a000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f45656565000000000000000000000000000000000000000000000000000000008152508160009081620000f0919062000565565b50806001908162000102919062000565565b50505062000125620001196200016d60201b60201c565b6200017560201b60201c565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200064c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200026d8262000240565b9050919050565b6000620002818262000260565b9050919050565b620002938162000274565b81146200029f57600080fd5b50565b600081519050620002b38162000288565b92915050565b600060208284031215620002d257620002d16200023b565b5b6000620002e284828501620002a2565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036d57607f821691505b60208210810362000383576200038262000325565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003ed7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ae565b620003f98683620003ae565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000446620004406200043a8462000411565b6200041b565b62000411565b9050919050565b6000819050919050565b620004628362000425565b6200047a62000471826200044d565b848454620003bb565b825550505050565b600090565b6200049162000482565b6200049e81848462000457565b505050565b5b81811015620004c657620004ba60008262000487565b600181019050620004a4565b5050565b601f8211156200051557620004df8162000389565b620004ea846200039e565b81016020851015620004fa578190505b6200051262000509856200039e565b830182620004a3565b50505b505050565b600082821c905092915050565b60006200053a600019846008026200051a565b1980831691505092915050565b600062000555838362000527565b9150826002028217905092915050565b6200057082620002eb565b67ffffffffffffffff8111156200058c576200058b620002f6565b5b62000598825462000354565b620005a5828285620004ca565b600060209050601f831160018114620005dd5760008415620005c8578287015190505b620005d4858262000547565b86555062000644565b601f198416620005ed8662000389565b60005b828110156200061757848901518255600182019150602085019450602081019050620005f0565b8683101562000637578489015162000633601f89168262000527565b8355505b6001600288020188555050505b505050505050565b61395c806200065c6000396000f3fe6080604052600436106101d85760003560e01c80634f6ccce711610102578063a71bbebe11610095578063d5abeb0111610064578063d5abeb011461067a578063e0d4ea37146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063a71bbebe146105cf578063b4c7f066146105eb578063b88d4fde14610614578063c87b56dd1461063d576101d8565b80637dc2268c116100d15780637dc2268c146105255780638da5cb5b1461055057806395d89b411461057b578063a22cb465146105a6576101d8565b80634f6ccce7146104575780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806323b872dd1161017a5780633bb2c938116101495780633bb2c938146103e45780633ccfd60b146103fb57806342842e0e1461040557806342966c681461042e576101d8565b806323b872dd146103285780632f745c5914610351578063303e74df1461038e57806333101e1f146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab578063176b72b4146102d457806318160ddd146102fd576101d8565b806301b9a397146101dd57806301ffc9a71461020657806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906123a7565b610748565b005b34801561021257600080fd5b5061022d6004803603810190610228919061242c565b610794565b60405161023a9190612474565b60405180910390f35b34801561024f57600080fd5b5061025861080e565b604051610265919061251f565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612577565b6108a0565b6040516102a291906125b3565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906125fa565b610925565b005b3480156102e057600080fd5b506102fb60048036038101906102f6919061263a565b610a3c565b005b34801561030957600080fd5b50610312610ae7565b60405161031f9190612689565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a91906126a4565b610b86565b005b34801561035d57600080fd5b50610378600480360381019061037391906125fa565b610be6565b6040516103859190612689565b60405180910390f35b34801561039a57600080fd5b506103a3610d19565b6040516103b09190612756565b60405180910390f35b3480156103c557600080fd5b506103ce610d3f565b6040516103db9190612474565b60405180910390f35b3480156103f057600080fd5b506103f9610d52565b005b610403610d77565b005b34801561041157600080fd5b5061042c600480360381019061042791906126a4565b610dff565b005b34801561043a57600080fd5b5061045560048036038101906104509190612577565b610e1f565b005b34801561046357600080fd5b5061047e60048036038101906104799190612577565b610e92565b60405161048b9190612689565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612577565b610ee3565b6040516104c891906125b3565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612771565b610f9f565b6040516105059190612689565b60405180910390f35b34801561051a57600080fd5b506105236110ad565b005b34801561053157600080fd5b5061053a6110c1565b6040516105479190612474565b60405180910390f35b34801561055c57600080fd5b506105656110d4565b60405161057291906125b3565b60405180910390f35b34801561058757600080fd5b506105906110fe565b60405161059d919061251f565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906127ca565b611190565b005b6105e960048036038101906105e49190612846565b611310565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612873565b61145d565b005b34801561062057600080fd5b5061063b600480360381019061063691906129d5565b611482565b005b34801561064957600080fd5b50610664600480360381019061065f9190612577565b6114e4565b604051610671919061251f565b60405180910390f35b34801561068657600080fd5b5061068f6115f1565b60405161069c9190612689565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612577565b6115f7565b6040516106d99190612689565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612a58565b61165c565b6040516107169190612474565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612771565b6116f0565b005b610750611773565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108075750610806826117f1565b5b9050919050565b60606000805461081d90612ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612ac7565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab826118d3565b6108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190612b44565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093082610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612bd6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bf61195b565b73ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109ed816109e861195b565b61165c565b5b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612c68565b60405180910390fd5b610a378383611963565b505050565b610a44611773565b600960019054906101000a900460ff16610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90612cd4565b60405180910390fd5b806006600084815260200190815260200160002081905550817faabfe5e8bccf1a1352f72b557ce580211305c37f88d5783ae467a1ba5e0761e082604051610adb9190612689565b60405180910390a25050565b60008060005b600280549050811015610b7e57600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610b2657610b25612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73578160010191505b806001019050610aed565b508091505090565b610b97610b9161195b565b82611a1c565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612d95565b60405180910390fd5b610be1838383611ab1565b505050565b6000610bf183610f9f565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e27565b60405180910390fd5b6000805b600280549050811015610cd75760028181548110610c5757610c56612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ccc57838203610cc5578092505050610d13565b8160010191505b806001019050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612e27565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960019054906101000a900460ff1681565b610d5a611773565b6000600960016101000a81548160ff021916908315150217905550565b610d7f611773565b6000610d896110d4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612e78565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611482565b505050565b610e30610e2a61195b565b82611a1c565b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612ed9565b60405180910390fd5b6006600082815260200190815260200160002060009055610e8f81611c89565b50565b60006002805490508210610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612f6b565b60405180910390fd5b819050919050565b60008060028381548110610efa57610ef9612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612b44565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690612ffd565b60405180910390fd5b6000805b6002805490508110156110a3576002818154811061103457611033612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611098578160010191505b806001019050611013565b5080915050919050565b6110b5611773565b6110bf6000611d6d565b565b600960009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461110d90612ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461113990612ac7565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff166111af61195b565b73ffffffffffffffffffffffffffffffffffffffff1603611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613069565b60405180910390fd5b806004600061121261195b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112bf61195b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113049190612474565b60405180910390a35050565b600960009054906101000a900460ff1661135f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611356906130fb565b60405180910390fd5b60088163ffffffff1611156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613167565b60405180910390fd5b600060028054905090506008548263ffffffff168201106113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906131d3565b60405180910390fd5b60005b8263ffffffff168163ffffffff1610156114585761141f82611e33565b600660008481526020019081526020016000208190555061144761144161195b565b83611f75565b816001019150806001019050611402565b505050565b611465611773565b80600960006101000a81548160ff02191690831515021790555050565b61149361148d61195b565b83611a1c565b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612d95565b60405180910390fd5b6114de84848484612081565b50505050565b60606114ef826118d3565b61152e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115259061323f565b60405180910390fd5b600060066000848152602001908152602001600020549050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392cb829d84836040518363ffffffff1660e01b81526004016115a392919061325f565b600060405180830381865afa1580156115c0573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115e99190613329565b915050919050565b60085481565b6000611602826118d3565b611641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116389061323f565b60405180910390fd5b60066000838152602001908152602001600020549050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f8611773565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906133e4565b60405180910390fd5b61177081611d6d565b50565b61177b61195b565b73ffffffffffffffffffffffffffffffffffffffff166117996110d4565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690613450565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118bc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118cc57506118cb826120dd565b5b9050919050565b6000600280549050821080156119545750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106119105761190f612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d683610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a2883610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a6a5750611a69818561165c565b5b80611aa857508373ffffffffffffffffffffffffffffffffffffffff16611a90846108a0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad182610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906134e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613574565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558160028281548110611be157611be0612cf4565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c9482610ee3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611ce057611cdf612cf4565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611e3f83612147565b90506000600a6014603084901c611e5691906135c3565b611e609190613623565b600a600784611e6f91906135c3565b611e799190613623565b6064611e859190613657565b611e8f9190613623565b90506000600a6014606085901c611ea691906135c3565b611eb09190613623565b600a6006606086901c611ec391906135c3565b611ecd9190613623565b6064611ed99190613657565b611ee39190613623565b90506000600a6014609086901c611efa91906135c3565b611f049190613623565b600a6007609087901c611f1791906135c3565b611f219190613623565b6064611f2d9190613657565b611f379190613623565b9050808284612710611f499190613657565b611f539190613623565b612710611f609190613657565b611f6a9190613623565b945050505050919050565b611f7e816118d3565b15611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb5906136e5565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61208c848484611ab1565b61209884848484612189565b6120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90613777565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001436121569190613797565b4082604051602001612169929190613817565b6040516020818303038152906040528051906020012060001c9050919050565b60006121aa8473ffffffffffffffffffffffffffffffffffffffff16612310565b15612303578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d361195b565b8786866040518563ffffffff1660e01b81526004016121f59493929190613898565b6020604051808303816000875af192505050801561223157506040513d601f19601f8201168201806040525081019061222e91906138f9565b60015b6122b3573d8060008114612261576040519150601f19603f3d011682016040523d82523d6000602084013e612266565b606091505b5060008151036122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613777565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612308565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236282612337565b9050919050565b600061237482612357565b9050919050565b61238481612369565b811461238f57600080fd5b50565b6000813590506123a18161237b565b92915050565b6000602082840312156123bd576123bc61232d565b5b60006123cb84828501612392565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612409816123d4565b811461241457600080fd5b50565b60008135905061242681612400565b92915050565b6000602082840312156124425761244161232d565b5b600061245084828501612417565b91505092915050565b60008115159050919050565b61246e81612459565b82525050565b60006020820190506124896000830184612465565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124c95780820151818401526020810190506124ae565b60008484015250505050565b6000601f19601f8301169050919050565b60006124f18261248f565b6124fb818561249a565b935061250b8185602086016124ab565b612514816124d5565b840191505092915050565b6000602082019050818103600083015261253981846124e6565b905092915050565b6000819050919050565b61255481612541565b811461255f57600080fd5b50565b6000813590506125718161254b565b92915050565b60006020828403121561258d5761258c61232d565b5b600061259b84828501612562565b91505092915050565b6125ad81612357565b82525050565b60006020820190506125c860008301846125a4565b92915050565b6125d781612357565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b600080604083850312156126115761261061232d565b5b600061261f858286016125e5565b925050602061263085828601612562565b9150509250929050565b600080604083850312156126515761265061232d565b5b600061265f85828601612562565b925050602061267085828601612562565b9150509250929050565b61268381612541565b82525050565b600060208201905061269e600083018461267a565b92915050565b6000806000606084860312156126bd576126bc61232d565b5b60006126cb868287016125e5565b93505060206126dc868287016125e5565b92505060406126ed86828701612562565b9150509250925092565b6000819050919050565b600061271c61271761271284612337565b6126f7565b612337565b9050919050565b600061272e82612701565b9050919050565b600061274082612723565b9050919050565b61275081612735565b82525050565b600060208201905061276b6000830184612747565b92915050565b6000602082840312156127875761278661232d565b5b6000612795848285016125e5565b91505092915050565b6127a781612459565b81146127b257600080fd5b50565b6000813590506127c48161279e565b92915050565b600080604083850312156127e1576127e061232d565b5b60006127ef858286016125e5565b9250506020612800858286016127b5565b9150509250929050565b600063ffffffff82169050919050565b6128238161280a565b811461282e57600080fd5b50565b6000813590506128408161281a565b92915050565b60006020828403121561285c5761285b61232d565b5b600061286a84828501612831565b91505092915050565b6000602082840312156128895761288861232d565b5b6000612897848285016127b5565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128e2826124d5565b810181811067ffffffffffffffff82111715612901576129006128aa565b5b80604052505050565b6000612914612323565b905061292082826128d9565b919050565b600067ffffffffffffffff8211156129405761293f6128aa565b5b612949826124d5565b9050602081019050919050565b82818337600083830152505050565b600061297861297384612925565b61290a565b905082815260208101848484011115612994576129936128a5565b5b61299f848285612956565b509392505050565b600082601f8301126129bc576129bb6128a0565b5b81356129cc848260208601612965565b91505092915050565b600080600080608085870312156129ef576129ee61232d565b5b60006129fd878288016125e5565b9450506020612a0e878288016125e5565b9350506040612a1f87828801612562565b925050606085013567ffffffffffffffff811115612a4057612a3f612332565b5b612a4c878288016129a7565b91505092959194509250565b60008060408385031215612a6f57612a6e61232d565b5b6000612a7d858286016125e5565b9250506020612a8e858286016125e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612adf57607f821691505b602082108103612af257612af1612a98565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612b2e60188361249a565b9150612b3982612af8565b602082019050919050565b60006020820190508181036000830152612b5d81612b21565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc060218361249a565b9150612bcb82612b64565b604082019050919050565b60006020820190508181036000830152612bef81612bb3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612c5260388361249a565b9150612c5d82612bf6565b604082019050919050565b60006020820190508181036000830152612c8181612c45565b9050919050565b7f43616e6e6f742073657420746865207365656400000000000000000000000000600082015250565b6000612cbe60138361249a565b9150612cc982612c88565b602082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d7f602d8361249a565b9150612d8a82612d23565b604082019050919050565b60006020820190508181036000830152612dae81612d72565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612e11602b8361249a565b9150612e1c82612db5565b604082019050919050565b60006020820190508181036000830152612e4081612e04565b9050919050565b600081905092915050565b50565b6000612e62600083612e47565b9150612e6d82612e52565b600082019050919050565b6000612e8382612e55565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612ec360158361249a565b9150612ece82612e8d565b602082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612f55602c8361249a565b9150612f6082612ef9565b604082019050919050565b60006020820190508181036000830152612f8481612f48565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fe760298361249a565b9150612ff282612f8b565b604082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061305360198361249a565b915061305e8261301d565b602082019050919050565b6000602082019050818103600083015261308281613046565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b60006130e5602c8361249a565b91506130f082613089565b604082019050919050565b60006020820190508181036000830152613114816130d8565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000613151601c8361249a565b915061315c8261311b565b602082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006131bd60138361249a565b91506131c882613187565b602082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b7f4d6f6e6b657920646f6573206e6f742065786973742e00000000000000000000600082015250565b600061322960168361249a565b9150613234826131f3565b602082019050919050565b600060208201905081810360008301526132588161321c565b9050919050565b6000604082019050613274600083018561267a565b613281602083018461267a565b9392505050565b600067ffffffffffffffff8211156132a3576132a26128aa565b5b6132ac826124d5565b9050602081019050919050565b60006132cc6132c784613288565b61290a565b9050828152602081018484840111156132e8576132e76128a5565b5b6132f38482856124ab565b509392505050565b600082601f8301126133105761330f6128a0565b5b81516133208482602086016132b9565b91505092915050565b60006020828403121561333f5761333e61232d565b5b600082015167ffffffffffffffff81111561335d5761335c612332565b5b613369848285016132fb565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ce60268361249a565b91506133d982613372565b604082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061343a60208361249a565b915061344582613404565b602082019050919050565b600060208201905081810360008301526134698161342d565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006134cc60258361249a565b91506134d782613470565b604082019050919050565b600060208201905081810360008301526134fb816134bf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061355e60248361249a565b915061356982613502565b604082019050919050565b6000602082019050818103600083015261358d81613551565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135ce82612541565b91506135d983612541565b9250826135e9576135e8613594565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362e82612541565b915061363983612541565b9250828201905080821115613651576136506135f4565b5b92915050565b600061366282612541565b915061366d83612541565b925082820261367b81612541565b91508282048414831517613692576136916135f4565b5b5092915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006136cf601c8361249a565b91506136da82613699565b602082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061376160328361249a565b915061376c82613705565b604082019050919050565b6000602082019050818103600083015261379081613754565b9050919050565b60006137a282612541565b91506137ad83612541565b92508282039050818111156137c5576137c46135f4565b5b92915050565b6000819050919050565b6000819050919050565b6137f06137eb826137cb565b6137d5565b82525050565b6000819050919050565b61381161380c82612541565b6137f6565b82525050565b600061382382856137df565b6020820191506138338284613800565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061386a82613843565b613874818561384e565b93506138848185602086016124ab565b61388d816124d5565b840191505092915050565b60006080820190506138ad60008301876125a4565b6138ba60208301866125a4565b6138c7604083018561267a565b81810360608301526138d9818461385f565b905095945050505050565b6000815190506138f381612400565b92915050565b60006020828403121561390f5761390e61232d565b5b600061391d848285016138e4565b9150509291505056fea26469706673582212203c4683abe781f2eb0db49c28e341ecb72899c62074439ded1cd9ceffee6bd14a64736f6c63430008120033000000000000000000000000821e8b82d1b4915745b2a832c8015990e3a484f3

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80634f6ccce711610102578063a71bbebe11610095578063d5abeb0111610064578063d5abeb011461067a578063e0d4ea37146106a5578063e985e9c5146106e2578063f2fde38b1461071f576101d8565b8063a71bbebe146105cf578063b4c7f066146105eb578063b88d4fde14610614578063c87b56dd1461063d576101d8565b80637dc2268c116100d15780637dc2268c146105255780638da5cb5b1461055057806395d89b411461057b578063a22cb465146105a6576101d8565b80634f6ccce7146104575780636352211e1461049457806370a08231146104d1578063715018a61461050e576101d8565b806323b872dd1161017a5780633bb2c938116101495780633bb2c938146103e45780633ccfd60b146103fb57806342842e0e1461040557806342966c681461042e576101d8565b806323b872dd146103285780632f745c5914610351578063303e74df1461038e57806333101e1f146103b9576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab578063176b72b4146102d457806318160ddd146102fd576101d8565b806301b9a397146101dd57806301ffc9a71461020657806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906123a7565b610748565b005b34801561021257600080fd5b5061022d6004803603810190610228919061242c565b610794565b60405161023a9190612474565b60405180910390f35b34801561024f57600080fd5b5061025861080e565b604051610265919061251f565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612577565b6108a0565b6040516102a291906125b3565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd91906125fa565b610925565b005b3480156102e057600080fd5b506102fb60048036038101906102f6919061263a565b610a3c565b005b34801561030957600080fd5b50610312610ae7565b60405161031f9190612689565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a91906126a4565b610b86565b005b34801561035d57600080fd5b50610378600480360381019061037391906125fa565b610be6565b6040516103859190612689565b60405180910390f35b34801561039a57600080fd5b506103a3610d19565b6040516103b09190612756565b60405180910390f35b3480156103c557600080fd5b506103ce610d3f565b6040516103db9190612474565b60405180910390f35b3480156103f057600080fd5b506103f9610d52565b005b610403610d77565b005b34801561041157600080fd5b5061042c600480360381019061042791906126a4565b610dff565b005b34801561043a57600080fd5b5061045560048036038101906104509190612577565b610e1f565b005b34801561046357600080fd5b5061047e60048036038101906104799190612577565b610e92565b60405161048b9190612689565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612577565b610ee3565b6040516104c891906125b3565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190612771565b610f9f565b6040516105059190612689565b60405180910390f35b34801561051a57600080fd5b506105236110ad565b005b34801561053157600080fd5b5061053a6110c1565b6040516105479190612474565b60405180910390f35b34801561055c57600080fd5b506105656110d4565b60405161057291906125b3565b60405180910390f35b34801561058757600080fd5b506105906110fe565b60405161059d919061251f565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c891906127ca565b611190565b005b6105e960048036038101906105e49190612846565b611310565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612873565b61145d565b005b34801561062057600080fd5b5061063b600480360381019061063691906129d5565b611482565b005b34801561064957600080fd5b50610664600480360381019061065f9190612577565b6114e4565b604051610671919061251f565b60405180910390f35b34801561068657600080fd5b5061068f6115f1565b60405161069c9190612689565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c79190612577565b6115f7565b6040516106d99190612689565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190612a58565b61165c565b6040516107169190612474565b60405180910390f35b34801561072b57600080fd5b5061074660048036038101906107419190612771565b6116f0565b005b610750611773565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108075750610806826117f1565b5b9050919050565b60606000805461081d90612ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461084990612ac7565b80156108965780601f1061086b57610100808354040283529160200191610896565b820191906000526020600020905b81548152906001019060200180831161087957829003601f168201915b5050505050905090565b60006108ab826118d3565b6108ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e190612b44565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093082610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790612bd6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109bf61195b565b73ffffffffffffffffffffffffffffffffffffffff1614806109ee57506109ed816109e861195b565b61165c565b5b610a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2490612c68565b60405180910390fd5b610a378383611963565b505050565b610a44611773565b600960019054906101000a900460ff16610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90612cd4565b60405180910390fd5b806006600084815260200190815260200160002081905550817faabfe5e8bccf1a1352f72b557ce580211305c37f88d5783ae467a1ba5e0761e082604051610adb9190612689565b60405180910390a25050565b60008060005b600280549050811015610b7e57600073ffffffffffffffffffffffffffffffffffffffff1660028281548110610b2657610b25612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b73578160010191505b806001019050610aed565b508091505090565b610b97610b9161195b565b82611a1c565b610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90612d95565b60405180910390fd5b610be1838383611ab1565b505050565b6000610bf183610f9f565b8210610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2990612e27565b60405180910390fd5b6000805b600280549050811015610cd75760028181548110610c5757610c56612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ccc57838203610cc5578092505050610d13565b8160010191505b806001019050610c36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a90612e27565b60405180910390fd5b92915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960019054906101000a900460ff1681565b610d5a611773565b6000600960016101000a81548160ff021916908315150217905550565b610d7f611773565b6000610d896110d4565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dac90612e78565b60006040518083038185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610dfc57600080fd5b50565b610e1a83838360405180602001604052806000815250611482565b505050565b610e30610e2a61195b565b82611a1c565b610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690612ed9565b60405180910390fd5b6006600082815260200190815260200160002060009055610e8f81611c89565b50565b60006002805490508210610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed290612f6b565b60405180910390fd5b819050919050565b60008060028381548110610efa57610ef9612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90612b44565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690612ffd565b60405180910390fd5b6000805b6002805490508110156110a3576002818154811061103457611033612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611098578160010191505b806001019050611013565b5080915050919050565b6110b5611773565b6110bf6000611d6d565b565b600960009054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461110d90612ac7565b80601f016020809104026020016040519081016040528092919081815260200182805461113990612ac7565b80156111865780601f1061115b57610100808354040283529160200191611186565b820191906000526020600020905b81548152906001019060200180831161116957829003601f168201915b5050505050905090565b8173ffffffffffffffffffffffffffffffffffffffff166111af61195b565b73ffffffffffffffffffffffffffffffffffffffff1603611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90613069565b60405180910390fd5b806004600061121261195b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112bf61195b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113049190612474565b60405180910390a35050565b600960009054906101000a900460ff1661135f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611356906130fb565b60405180910390fd5b60088163ffffffff1611156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a090613167565b60405180910390fd5b600060028054905090506008548263ffffffff168201106113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f6906131d3565b60405180910390fd5b60005b8263ffffffff168163ffffffff1610156114585761141f82611e33565b600660008481526020019081526020016000208190555061144761144161195b565b83611f75565b816001019150806001019050611402565b505050565b611465611773565b80600960006101000a81548160ff02191690831515021790555050565b61149361148d61195b565b83611a1c565b6114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612d95565b60405180910390fd5b6114de84848484612081565b50505050565b60606114ef826118d3565b61152e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115259061323f565b60405180910390fd5b600060066000848152602001908152602001600020549050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392cb829d84836040518363ffffffff1660e01b81526004016115a392919061325f565b600060405180830381865afa1580156115c0573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115e99190613329565b915050919050565b60085481565b6000611602826118d3565b611641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116389061323f565b60405180910390fd5b60066000838152602001908152602001600020549050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f8611773565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906133e4565b60405180910390fd5b61177081611d6d565b50565b61177b61195b565b73ffffffffffffffffffffffffffffffffffffffff166117996110d4565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690613450565b60405180910390fd5b565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806118bc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118cc57506118cb826120dd565b5b9050919050565b6000600280549050821080156119545750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106119105761190f612cf4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119d683610ee3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611a2883610ee3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a6a5750611a69818561165c565b5b80611aa857508373ffffffffffffffffffffffffffffffffffffffff16611a90846108a0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ad182610ee3565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906134e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8d90613574565b60405180910390fd5b6003600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690558160028281548110611be157611be0612cf4565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000611c9482610ee3565b90506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560028281548110611ce057611cdf612cf4565b5b9060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080611e3f83612147565b90506000600a6014603084901c611e5691906135c3565b611e609190613623565b600a600784611e6f91906135c3565b611e799190613623565b6064611e859190613657565b611e8f9190613623565b90506000600a6014606085901c611ea691906135c3565b611eb09190613623565b600a6006606086901c611ec391906135c3565b611ecd9190613623565b6064611ed99190613657565b611ee39190613623565b90506000600a6014609086901c611efa91906135c3565b611f049190613623565b600a6007609087901c611f1791906135c3565b611f219190613623565b6064611f2d9190613657565b611f379190613623565b9050808284612710611f499190613657565b611f539190613623565b612710611f609190613657565b611f6a9190613623565b945050505050919050565b611f7e816118d3565b15611fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb5906136e5565b60405180910390fd5b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b61208c848484611ab1565b61209884848484612189565b6120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90613777565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006001436121569190613797565b4082604051602001612169929190613817565b6040516020818303038152906040528051906020012060001c9050919050565b60006121aa8473ffffffffffffffffffffffffffffffffffffffff16612310565b15612303578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121d361195b565b8786866040518563ffffffff1660e01b81526004016121f59493929190613898565b6020604051808303816000875af192505050801561223157506040513d601f19601f8201168201806040525081019061222e91906138f9565b60015b6122b3573d8060008114612261576040519150601f19603f3d011682016040523d82523d6000602084013e612266565b606091505b5060008151036122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613777565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612308565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061236282612337565b9050919050565b600061237482612357565b9050919050565b61238481612369565b811461238f57600080fd5b50565b6000813590506123a18161237b565b92915050565b6000602082840312156123bd576123bc61232d565b5b60006123cb84828501612392565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612409816123d4565b811461241457600080fd5b50565b60008135905061242681612400565b92915050565b6000602082840312156124425761244161232d565b5b600061245084828501612417565b91505092915050565b60008115159050919050565b61246e81612459565b82525050565b60006020820190506124896000830184612465565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124c95780820151818401526020810190506124ae565b60008484015250505050565b6000601f19601f8301169050919050565b60006124f18261248f565b6124fb818561249a565b935061250b8185602086016124ab565b612514816124d5565b840191505092915050565b6000602082019050818103600083015261253981846124e6565b905092915050565b6000819050919050565b61255481612541565b811461255f57600080fd5b50565b6000813590506125718161254b565b92915050565b60006020828403121561258d5761258c61232d565b5b600061259b84828501612562565b91505092915050565b6125ad81612357565b82525050565b60006020820190506125c860008301846125a4565b92915050565b6125d781612357565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b600080604083850312156126115761261061232d565b5b600061261f858286016125e5565b925050602061263085828601612562565b9150509250929050565b600080604083850312156126515761265061232d565b5b600061265f85828601612562565b925050602061267085828601612562565b9150509250929050565b61268381612541565b82525050565b600060208201905061269e600083018461267a565b92915050565b6000806000606084860312156126bd576126bc61232d565b5b60006126cb868287016125e5565b93505060206126dc868287016125e5565b92505060406126ed86828701612562565b9150509250925092565b6000819050919050565b600061271c61271761271284612337565b6126f7565b612337565b9050919050565b600061272e82612701565b9050919050565b600061274082612723565b9050919050565b61275081612735565b82525050565b600060208201905061276b6000830184612747565b92915050565b6000602082840312156127875761278661232d565b5b6000612795848285016125e5565b91505092915050565b6127a781612459565b81146127b257600080fd5b50565b6000813590506127c48161279e565b92915050565b600080604083850312156127e1576127e061232d565b5b60006127ef858286016125e5565b9250506020612800858286016127b5565b9150509250929050565b600063ffffffff82169050919050565b6128238161280a565b811461282e57600080fd5b50565b6000813590506128408161281a565b92915050565b60006020828403121561285c5761285b61232d565b5b600061286a84828501612831565b91505092915050565b6000602082840312156128895761288861232d565b5b6000612897848285016127b5565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128e2826124d5565b810181811067ffffffffffffffff82111715612901576129006128aa565b5b80604052505050565b6000612914612323565b905061292082826128d9565b919050565b600067ffffffffffffffff8211156129405761293f6128aa565b5b612949826124d5565b9050602081019050919050565b82818337600083830152505050565b600061297861297384612925565b61290a565b905082815260208101848484011115612994576129936128a5565b5b61299f848285612956565b509392505050565b600082601f8301126129bc576129bb6128a0565b5b81356129cc848260208601612965565b91505092915050565b600080600080608085870312156129ef576129ee61232d565b5b60006129fd878288016125e5565b9450506020612a0e878288016125e5565b9350506040612a1f87828801612562565b925050606085013567ffffffffffffffff811115612a4057612a3f612332565b5b612a4c878288016129a7565b91505092959194509250565b60008060408385031215612a6f57612a6e61232d565b5b6000612a7d858286016125e5565b9250506020612a8e858286016125e5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612adf57607f821691505b602082108103612af257612af1612a98565b5b50919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612b2e60188361249a565b9150612b3982612af8565b602082019050919050565b60006020820190508181036000830152612b5d81612b21565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc060218361249a565b9150612bcb82612b64565b604082019050919050565b60006020820190508181036000830152612bef81612bb3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612c5260388361249a565b9150612c5d82612bf6565b604082019050919050565b60006020820190508181036000830152612c8181612c45565b9050919050565b7f43616e6e6f742073657420746865207365656400000000000000000000000000600082015250565b6000612cbe60138361249a565b9150612cc982612c88565b602082019050919050565b60006020820190508181036000830152612ced81612cb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612d7f602d8361249a565b9150612d8a82612d23565b604082019050919050565b60006020820190508181036000830152612dae81612d72565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612e11602b8361249a565b9150612e1c82612db5565b604082019050919050565b60006020820190508181036000830152612e4081612e04565b9050919050565b600081905092915050565b50565b6000612e62600083612e47565b9150612e6d82612e52565b600082019050919050565b6000612e8382612e55565b9150819050919050565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b6000612ec360158361249a565b9150612ece82612e8d565b602082019050919050565b60006020820190508181036000830152612ef281612eb6565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612f55602c8361249a565b9150612f6082612ef9565b604082019050919050565b60006020820190508181036000830152612f8481612f48565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fe760298361249a565b9150612ff282612f8b565b604082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061305360198361249a565b915061305e8261301d565b602082019050919050565b6000602082019050818103600083015261308281613046565b9050919050565b7f4d696e74696e67206e6565647320746f20626520656e61626c656420746f207360008201527f74617274206d696e74696e670000000000000000000000000000000000000000602082015250565b60006130e5602c8361249a565b91506130f082613089565b604082019050919050565b60006020820190508181036000830152613114816130d8565b9050919050565b7f45786365656473206d617820706572207472616e73616374696f6e2e00000000600082015250565b6000613151601c8361249a565b915061315c8261311b565b602082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b60006131bd60138361249a565b91506131c882613187565b602082019050919050565b600060208201905081810360008301526131ec816131b0565b9050919050565b7f4d6f6e6b657920646f6573206e6f742065786973742e00000000000000000000600082015250565b600061322960168361249a565b9150613234826131f3565b602082019050919050565b600060208201905081810360008301526132588161321c565b9050919050565b6000604082019050613274600083018561267a565b613281602083018461267a565b9392505050565b600067ffffffffffffffff8211156132a3576132a26128aa565b5b6132ac826124d5565b9050602081019050919050565b60006132cc6132c784613288565b61290a565b9050828152602081018484840111156132e8576132e76128a5565b5b6132f38482856124ab565b509392505050565b600082601f8301126133105761330f6128a0565b5b81516133208482602086016132b9565b91505092915050565b60006020828403121561333f5761333e61232d565b5b600082015167ffffffffffffffff81111561335d5761335c612332565b5b613369848285016132fb565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006133ce60268361249a565b91506133d982613372565b604082019050919050565b600060208201905081810360008301526133fd816133c1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061343a60208361249a565b915061344582613404565b602082019050919050565b600060208201905081810360008301526134698161342d565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006134cc60258361249a565b91506134d782613470565b604082019050919050565b600060208201905081810360008301526134fb816134bf565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061355e60248361249a565b915061356982613502565b604082019050919050565b6000602082019050818103600083015261358d81613551565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135ce82612541565b91506135d983612541565b9250826135e9576135e8613594565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061362e82612541565b915061363983612541565b9250828201905080821115613651576136506135f4565b5b92915050565b600061366282612541565b915061366d83612541565b925082820261367b81612541565b91508282048414831517613692576136916135f4565b5b5092915050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006136cf601c8361249a565b91506136da82613699565b602082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061376160328361249a565b915061376c82613705565b604082019050919050565b6000602082019050818103600083015261379081613754565b9050919050565b60006137a282612541565b91506137ad83612541565b92508282039050818111156137c5576137c46135f4565b5b92915050565b6000819050919050565b6000819050919050565b6137f06137eb826137cb565b6137d5565b82525050565b6000819050919050565b61381161380c82612541565b6137f6565b82525050565b600061382382856137df565b6020820191506138338284613800565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061386a82613843565b613874818561384e565b93506138848185602086016124ab565b61388d816124d5565b840191505092915050565b60006080820190506138ad60008301876125a4565b6138ba60208301866125a4565b6138c7604083018561267a565b81810360608301526138d9818461385f565b905095945050505050565b6000815190506138f381612400565b92915050565b60006020828403121561390f5761390e61232d565b5b600061391d848285016138e4565b9150509291505056fea26469706673582212203c4683abe781f2eb0db49c28e341ecb72899c62074439ded1cd9ceffee6bd14a64736f6c63430008120033

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

000000000000000000000000821e8b82d1b4915745b2a832c8015990e3a484f3

-----Decoded View---------------
Arg [0] : newDescriptor (address): 0x821e8b82d1b4915745B2A832c8015990E3A484F3

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000821e8b82d1b4915745b2a832c8015990e3a484f3


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.