ETH Price: $2,731.67 (+8.55%)
 

Overview

Max Total Supply

7 PoG0

Holders

5

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
malikelbay.eth
Balance
1 PoG0
0x6f2d01c820a9daf11a5be0ba77b41e5035e57099
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:
ProofOfGroove

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : ProofOfGroove.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "base64-sol/base64.sol";

// import "hardhat/console.sol";

contract ProofOfGroove is Ownable, ERC721 {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 MAX_INT =
        0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;

    event StartSet(uint256 startBlock, uint256 setNumber);
    event FinalizeSet(uint256 setNumber);

    uint256 private _startBlock = MAX_INT;

    uint256 private _totalSets;
    uint256 private _groovesPerSet;
    uint256 private _price;
    // Community address that receives the _preSetMints when the set starts
    address private _communityWallet;
    // Team address that receives the _postSetMints when a set is finalized
    address private _teamWallet;
    // Address that receives the collected ETH. Will be a 0xSplit contract splitting 75% to the community wallet and 25% to the team wallet.
    address private _beneficiary;

    uint256 private _totalSupply = 0;
    uint256 private _preSetMints = 3;
    uint256 private _postSetMints = 5;
    uint256 private _currentSet = 0; // First set is 1. 0 => no started yet.
    string private __baseURI;

    mapping(uint256 => bytes32) private _tokenSeeds;

    constructor(
        uint256 totalSets_,
        uint256 groovesPerSet_,
        uint256 price_,
        address communityWallet_,
        address teamWallet_,
        address payable beneficiary_
    ) ERC721("Proof of Groove Generation Eternity", "PoG0") {
        __baseURI = "https://proofofgroove.com/api/0/";
        _groovesPerSet = groovesPerSet_;
        _totalSets = totalSets_;
        _price = price_;

        _communityWallet = communityWallet_;
        _teamWallet = teamWallet_;
        _beneficiary = beneficiary_;
    }

    function _mint(address to) private {
        uint256 tokenIndex = totalSupply();
        _tokenSeeds[tokenIndex] = keccak256(
            abi.encode(
                block.number + uint256(uint160(address(to)) + tokenIndex)
            )
        );
        _safeMint(to, totalSupply());
        _totalSupply = totalSupply() + 1;
    }

    function startSet(uint256 startBlock_) public onlyOwner {
        require(_totalSupply % _groovesPerSet == 0, "Set not finalized");
        require(_currentSet < _totalSets, "Last set");

        _startBlock = startBlock_;
        _currentSet = _currentSet.add(1);

        for (uint256 i = 0; i < _preSetMints; i++) {
            _mint(_communityWallet);
        }

        emit StartSet(_startBlock, _currentSet);
    }

    function finalizeSet() public {
        require(
            (_totalSupply.add(_postSetMints) % _groovesPerSet) == 0,
            "Not sold out"
        );

        for (uint256 i = 0; i < _postSetMints; i++) {
            _mint(_teamWallet); // TODO: To team wallet
        }

        emit FinalizeSet(_currentSet);
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    function mint(address to) public payable {
        require(block.number > _startBlock, "Sale not started");
        require(_currentSet > 0, "Set not started");

        require(
            totalSupply() < _currentSet.mul(_groovesPerSet).sub(_postSetMints),
            "Set sold out"
        );
        require(msg.value == _price, "Price not met");
        _mint(to);
    }

    function getTokenSeed(uint256 tokenId) public view returns (bytes32 seed) {
        return _tokenSeeds[tokenId];
    }

    function withdraw() public {
        uint256 balance = address(this).balance;
        payable(_beneficiary).transfer(balance);
    }

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

    function setBaseURI(string memory baseURI_) public onlyOwner {
        __baseURI = baseURI_;
    }

    function getTraitBase(uint256 tokenId) public pure returns (string memory) {
        return
            ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"][
                tokenId % 12
            ];
    }

    function getTraitInstrument(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        bytes32 seed = getTokenSeed(tokenId);
        return ["Drift", "Island", "Dirty", "Button"][uint8(seed[0]) % 4];
    }

    function getTraitChill(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        bytes32 seed = getTokenSeed(tokenId);
        return
            [
                "Lethargic",
                "Sluggish",
                "Chill",
                "Relaxed",
                "Neutral",
                "Tense",
                "Nervous",
                "Fidgety",
                "Hectic",
                "Stressfull"
            ][uint8(seed[1]) % 10];
    }

    function getTraitBPM(uint256 tokenId) public view returns (string memory) {
        bytes32 seed = getTokenSeed(tokenId);
        return Strings.toString(85 + (uint8(seed[2]) % 26));
    }

    function getTraitScale(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        bytes32 seed = getTokenSeed(tokenId);
        uint8 slice1 = uint8(seed[3]);
        uint8 slice2 = uint8(seed[4]);
        uint256 random = (slice1 * 256 + slice2) % 300;

        string[24] memory scales = [
            "Major",
            "Aeolian",
            "Melodic Minor",
            "Mixolydian",
            "Dorian",
            "Phrygian",
            "Lydian",
            "Melodic Minor Fifth Mode",
            "Melodic Minor Second Mode",
            "Spanish",
            "Harmonic Minor",
            "Dorian #4",
            "Harmonic Major",
            "Lydian Dominant",
            "Double Harmonic Major",
            "Neopolitan",
            "Oriental",
            "Lydian #9",
            "Mystery #1",
            "Hungarian Minor",
            "Augmented Heptatonic",
            "Lydian Minor",
            "Double Harmonic Lydian",
            "Hungarian Major"
        ];

        uint16[24] memory weights = [
            24,
            47,
            69,
            90,
            110,
            129,
            147,
            164,
            180,
            195,
            209,
            222,
            234,
            245,
            255,
            264,
            272,
            279,
            285,
            290,
            294,
            297,
            299,
            300
        ];

        for (uint256 i = 0; i < 24; i++) {
            //for loop example
            if (random < weights[i]) {
                return scales[i];
            }
        }

        // Should never happen
        return scales[0];
    }

    function getTraitSet(uint256 tokenId) public view returns (string memory) {
        return tokenId.div(_groovesPerSet).add(1).toString();
    }

    function getTraitSetName(uint256 tokenId)
        public
        view
        returns (string memory)
    {
        uint256 setIndex = tokenId.div(_groovesPerSet);

        return
            [
                "Live",
                "Drop",
                "Step",
                "Core",
                "Tech",
                "Dance",
                "Beat",
                "Synth",
                "Wave",
                "Break",
                "Drone",
                "Noise"
            ][setIndex];
    }

    // Helper function to avoid "Stack too deep when compiling inline assembly"
    function traits(uint256 tokenId) public view returns (string memory) {
        return
            string(
                abi.encodePacked(
                    '[{ "trait_type": "BPM", "value": "',
                    getTraitBPM(tokenId),
                    '"}, { "trait_type": "Scale", "value": "',
                    getTraitScale(tokenId),
                    '"}, { "trait_type": "Chill", "value": "',
                    getTraitChill(tokenId),
                    '"}, { "trait_type": "Instrument", "value": "',
                    getTraitInstrument(tokenId),
                    '"}, { "trait_type": "Set Name", "value": "',
                    getTraitSetName(tokenId),
                    '"}, { "trait_type": "Base", "value": "',
                    getTraitBase(tokenId),
                    '"}]'
                )
            );
    }

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

        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    Base64.encode(
                        abi.encodePacked(
                            '{"name": "Proof of Groove Generation Eternity #',
                            tokenId.toString(),
                            '", "description": "A uniquely generated piece of music with matching visual representation.",',
                            '"image": "',
                            _baseURI(),
                            "image/",
                            tokenId.toString(),
                            '.svg",'
                            '"animation_url": "',
                            _baseURI(),
                            "animation/",
                            tokenId.toString(),
                            '",'
                            '"external_url": "',
                            _baseURI(),
                            "jump/",
                            tokenId.toString(),
                            '",'
                            '"seed": "',
                            Strings.toHexString(uint256(getTokenSeed(tokenId))),
                            '",'
                            '"attributes":',
                            traits(tokenId),
                            "}"
                        )
                    )
                )
            );
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 13 : base64.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0;

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides functions for encoding/decoding base64
library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

File 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 13 : IERC721.sol
// SPDX-License-Identifier: MIT

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

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

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

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

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

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

File 9 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"totalSets_","type":"uint256"},{"internalType":"uint256","name":"groovesPerSet_","type":"uint256"},{"internalType":"uint256","name":"price_","type":"uint256"},{"internalType":"address","name":"communityWallet_","type":"address"},{"internalType":"address","name":"teamWallet_","type":"address"},{"internalType":"address payable","name":"beneficiary_","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":false,"internalType":"uint256","name":"setNumber","type":"uint256"}],"name":"FinalizeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"setNumber","type":"uint256"}],"name":"StartSet","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":[],"name":"finalizeSet","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":"getTokenSeed","outputs":[{"internalType":"bytes32","name":"seed","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitBPM","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitBase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitChill","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitInstrument","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitScale","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitSet","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTraitSetName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startBlock_","type":"uint256"}],"name":"startSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traits","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6007556007546008556000600f556003601055600560115560006012553480156200004f57600080fd5b506040516200655b3803806200655b83398181016040528101906200007591906200040c565b60405180606001604052806023815260200162006538602391396040518060400160405280600481526020017f506f473000000000000000000000000000000000000000000000000000000000815250620000e5620000d96200024b60201b60201c565b6200025360201b60201c565b8160019080519060200190620000fd92919062000317565b5080600290805190602001906200011692919062000317565b5050506040518060400160405280602081526020017f68747470733a2f2f70726f6f666f6667726f6f76652e636f6d2f6170692f302f815250601390805190602001906200016692919062000317565b5084600a819055508560098190555083600b8190555082600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050620005a7565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032590620004f4565b90600052602060002090601f01602090048101928262000349576000855562000395565b82601f106200036457805160ff191683800117855562000395565b8280016001018555821562000395579182015b828111156200039457825182559160200191906001019062000377565b5b509050620003a49190620003a8565b5090565b5b80821115620003c3576000816000905550600101620003a9565b5090565b600081519050620003d88162000559565b92915050565b600081519050620003ef8162000573565b92915050565b60008151905062000406816200058d565b92915050565b60008060008060008060c087890312156200042657600080fd5b60006200043689828a01620003f5565b96505060206200044989828a01620003f5565b95505060406200045c89828a01620003f5565b94505060606200046f89828a01620003c7565b93505060806200048289828a01620003c7565b92505060a06200049589828a01620003de565b9150509295509295509295565b6000620004af82620004ca565b9050919050565b6000620004c382620004ca565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200050d57607f821691505b602082108114156200052457620005236200052a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200056481620004a2565b81146200057057600080fd5b50565b6200057e81620004b6565b81146200058a57600080fd5b50565b6200059881620004ea565b8114620005a457600080fd5b50565b615f8180620005b76000396000f3fe6080604052600436106101d85760003560e01c80636a62784211610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146106e5578063d07dd84f14610722578063e985e9c51461075f578063f2fde38b1461079c576101d8565b8063a22cb4651461063f578063a45c35e614610668578063b12f9eab146106a5578063b88d4fde146106bc576101d8565b80638a5a1ef6116100d15780638a5a1ef6146105835780638da5cb5b146105c057806395d89b41146105eb578063986c0c6314610616576101d8565b80636a627842146104d657806370a08231146104f2578063715018a61461052f5780637f6a7cb114610546576101d8565b80632e4031611161017a57806355f804b31161014957806355f804b3146103f65780635a4c16241461041f578063633ce0591461045c5780636352211e14610499576101d8565b80632e4031611461033c5780633ccfd60b1461037957806342842e0e146103905780634c9d68fc146103b9576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632d72225b146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906141d5565b6107c5565b6040516102119190614b77565b60405180910390f35b34801561022657600080fd5b5061022f6108a7565b60405161023c9190614bad565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190614268565b610939565b6040516102799190614b10565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190614199565b6109be565b005b3480156102b757600080fd5b506102c0610ad6565b6040516102cd9190614ecf565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190614093565b610ae0565b005b34801561030b57600080fd5b5061032660048036038101906103219190614268565b610b40565b6040516103339190614bad565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190614268565b610ba3565b6040516103709190614bad565b60405180910390f35b34801561038557600080fd5b5061038e610ec3565b005b34801561039c57600080fd5b506103b760048036038101906103b29190614093565b610f34565b005b3480156103c557600080fd5b506103e060048036038101906103db9190614268565b610f54565b6040516103ed9190614bad565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190614227565b6110ec565b005b34801561042b57600080fd5b5061044660048036038101906104419190614268565b611182565b6040516104539190614b92565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614268565b61119f565b6040516104909190614bad565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190614268565b6114cd565b6040516104cd9190614b10565b60405180910390f35b6104f060048036038101906104eb919061402e565b61157f565b005b3480156104fe57600080fd5b506105196004803603810190610514919061402e565b6116cb565b6040516105269190614ecf565b60405180910390f35b34801561053b57600080fd5b50610544611783565b005b34801561055257600080fd5b5061056d60048036038101906105689190614268565b61180b565b60405161057a9190614bad565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190614268565b611b06565b6040516105b79190614bad565b60405180910390f35b3480156105cc57600080fd5b506105d5611b81565b6040516105e29190614b10565b60405180910390f35b3480156105f757600080fd5b50610600611baa565b60405161060d9190614bad565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190614268565b611c3c565b005b34801561064b57600080fd5b506106666004803603810190610661919061415d565b611dff565b005b34801561067457600080fd5b5061068f600480360381019061068a9190614268565b611f80565b60405161069c9190614bad565b60405180910390f35b3480156106b157600080fd5b506106ba612804565b005b3480156106c857600080fd5b506106e360048036038101906106de91906140e2565b6128f1565b005b3480156106f157600080fd5b5061070c60048036038101906107079190614268565b612953565b6040516107199190614bad565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190614268565b612a4b565b6040516107569190614bad565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190614057565b612a84565b6040516107939190614b77565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be919061402e565b612b18565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a0575061089f82612c10565b5b9050919050565b6060600180546108b6906152a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108e2906152a2565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482612c7a565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90614def565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c9826114cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190614e8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a59612ce6565b73ffffffffffffffffffffffffffffffffffffffff161480610a885750610a8781610a82612ce6565b612a84565b5b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90614d6f565b60405180910390fd5b610ad18383612cee565b505050565b6000600f54905090565b610af1610aeb612ce6565b82612da7565b610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790614eaf565b60405180910390fd5b610b3b838383612e85565b505050565b6060610b4b82611b06565b610b5483611f80565b610b5d8461180b565b610b6685610f54565b610b6f8661119f565b610b7887610ba3565b604051602001610b8d96959493929190614951565b6040516020818303038152906040529050919050565b60606040518061018001604052806040518060400160405280600181526020017f430000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f432300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f440000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f442300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f450000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f460000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f462300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f470000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f472300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f410000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f412300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f4200000000000000000000000000000000000000000000000000000000000000815250815250600c83610e80919061537f565b600c8110610eb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201519050919050565b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f30573d6000803e3d6000fd5b5050565b610f4f838383604051806020016040528060008152506128f1565b505050565b60606000610f6183611182565b905060405180608001604052806040518060400160405280600581526020017f447269667400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f49736c616e64000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f446972747900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f427574746f6e0000000000000000000000000000000000000000000000000000815250815250600482600060208110611094577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c6110a591906153b0565b60ff16600481106110df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151915050919050565b6110f4612ce6565b73ffffffffffffffffffffffffffffffffffffffff16611112611b81565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90614e0f565b60405180910390fd5b806013908051906020019061117e929190613e52565b5050565b600060146000838152602001908152602001600020549050919050565b606060006111b8600a54846130e190919063ffffffff16565b90506040518061018001604052806040518060400160405280600481526020017f4c6976650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f44726f700000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f537465700000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436f72650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f546563680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44616e636500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426561740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f53796e746800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f576176650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f427265616b00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44726f6e6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4e6f69736500000000000000000000000000000000000000000000000000000081525081525081600c81106114c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151915050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90614daf565b60405180910390fd5b80915050919050565b60085443116115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614d4f565b60405180910390fd5b600060125411611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90614ccf565b60405180910390fd5b611633601154611625600a546012546130f790919063ffffffff16565b61310d90919063ffffffff16565b61163b610ad6565b1061167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614c4f565b60405180910390fd5b600b5434146116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690614e2f565b60405180910390fd5b6116c881613123565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390614d8f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61178b612ce6565b73ffffffffffffffffffffffffffffffffffffffff166117a9611b81565b73ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690614e0f565b60405180910390fd5b61180960006131c8565b565b6060600061181883611182565b90506040518061014001604052806040518060400160405280600981526020017f4c6574686172676963000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f536c75676769736800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4368696c6c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f52656c617865640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4e65757472616c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f54656e736500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4e6572766f75730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f466964676574790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f486563746963000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f53747265737366756c6c00000000000000000000000000000000000000000000815250815250600a82600160208110611aae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c611abf91906153b0565b60ff16600a8110611af9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151915050919050565b60606000611b1383611182565b9050611b79601a82600260208110611b54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c611b6591906153b0565b6055611b71919061506b565b60ff1661328c565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bb9906152a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611be5906152a2565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b5050505050905090565b611c44612ce6565b73ffffffffffffffffffffffffffffffffffffffff16611c62611b81565b73ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90614e0f565b60405180910390fd5b6000600a54600f54611cca919061537f565b14611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0190614c8f565b60405180910390fd5b60095460125410611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614c0f565b60405180910390fd5b80600881905550611d6d600160125461343990919063ffffffff16565b60128190555060005b601054811015611dbe57611dab600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613123565b8080611db690615305565b915050611d76565b507f55d35b4292da305a0db36555001d795d3dfc81bae423612f33afc0869d36fef6600854601254604051611df4929190614eea565b60405180910390a150565b611e07612ce6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90614d0f565b60405180910390fd5b8060066000611e82612ce6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f2f612ce6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f749190614b77565b60405180910390a35050565b60606000611f8d83611182565b9050600081600360208110611fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c9050600082600460208110612010577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c9050600061012c8260ff166101008560ff1661203391906150d3565b61203d9190614fdd565b612047919061534e565b61ffff16905060006040518061030001604052806040518060400160405280600581526020017f4d616a6f7200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f41656f6c69616e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4d656c6f646963204d696e6f720000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4d69786f6c796469616e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f446f7269616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f506872796769616e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c796469616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601881526020017f4d656c6f646963204d696e6f72204669667468204d6f6465000000000000000081525081526020016040518060400160405280601981526020017f4d656c6f646963204d696e6f72205365636f6e64204d6f64650000000000000081525081526020016040518060400160405280600781526020017f5370616e6973680000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4861726d6f6e6963204d696e6f7200000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f446f7269616e202334000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4861726d6f6e6963204d616a6f7200000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4c796469616e20446f6d696e616e74000000000000000000000000000000000081525081526020016040518060400160405280601581526020017f446f75626c65204861726d6f6e6963204d616a6f72000000000000000000000081525081526020016040518060400160405280600a81526020017f4e656f706f6c6974616e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4f7269656e74616c00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4c796469616e202339000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4d7973746572792023310000000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f48756e67617269616e204d696e6f72000000000000000000000000000000000081525081526020016040518060400160405280601481526020017f4175676d656e746564204865707461746f6e696300000000000000000000000081525081526020016040518060400160405280600c81526020017f4c796469616e204d696e6f72000000000000000000000000000000000000000081525081526020016040518060400160405280601681526020017f446f75626c65204861726d6f6e6963204c796469616e0000000000000000000081525081526020016040518060400160405280600f81526020017f48756e67617269616e204d616a6f72000000000000000000000000000000000081525081525090506000604051806103000160405280601861ffff168152602001602f61ffff168152602001604561ffff168152602001605a61ffff168152602001606e61ffff168152602001608161ffff168152602001609361ffff16815260200160a461ffff16815260200160b461ffff16815260200160c361ffff16815260200160d161ffff16815260200160de61ffff16815260200160ea61ffff16815260200160f561ffff16815260200160ff61ffff16815260200161010861ffff16815260200161011061ffff16815260200161011761ffff16815260200161011d61ffff16815260200161012261ffff16815260200161012661ffff16815260200161012961ffff16815260200161012b61ffff16815260200161012c61ffff16815250905060005b60188110156127b657818160188110612747577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015161ffff168410156127a357828160188110612790577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201519750505050505050506127ff565b80806127ae90615305565b915050612705565b50816000601881106127f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015196505050505050505b919050565b6000600a54612820601154600f5461343990919063ffffffff16565b61282a919061537f565b1461286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190614bef565b60405180910390fd5b60005b6011548110156128b5576128a2600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613123565b80806128ad90615305565b91505061286d565b507ff45815c3f6a640216c79d2d3506efea0598dddaa0579fedaf6ff9ed5fd8a91a86012546040516128e79190614ecf565b60405180910390a1565b6129026128fc612ce6565b83612da7565b612941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293890614eaf565b60405180910390fd5b61294d8484848461344f565b50505050565b606061295e82612c7a565b61299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490614e6f565b60405180910390fd5b612a256129a98361328c565b6129b16134ab565b6129ba8561328c565b6129c26134ab565b6129cb8761328c565b6129d36134ab565b6129dc8961328c565b6129f06129e88b611182565b60001c61353d565b6129f98b610b40565b604051602001612a1199989796959493929190614a18565b6040516020818303038152906040526135c3565b604051602001612a3591906149f6565b6040516020818303038152906040529050919050565b6060612a7d612a786001612a6a600a54866130e190919063ffffffff16565b61343990919063ffffffff16565b61328c565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b20612ce6565b73ffffffffffffffffffffffffffffffffffffffff16612b3e611b81565b73ffffffffffffffffffffffffffffffffffffffff1614612b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8b90614e0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb90614c6f565b60405180910390fd5b612c0d816131c8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d61836114cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612db282612c7a565b612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de890614d2f565b60405180910390fd5b6000612dfc836114cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e6b57508373ffffffffffffffffffffffffffffffffffffffff16612e5384610939565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e7c5750612e7b8185612a84565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ea5826114cd565b73ffffffffffffffffffffffffffffffffffffffff1614612efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef290614e4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6290614cef565b60405180910390fd5b612f76838383613762565b612f81600082612cee565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd19190615169565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130289190615015565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836130ef91906150a2565b905092915050565b60008183613105919061510f565b905092915050565b6000818361311b9190615169565b905092915050565b600061312d610ad6565b9050808273ffffffffffffffffffffffffffffffffffffffff166131519190615015565b4361315c9190615015565b60405160200161316c9190614ecf565b6040516020818303038152906040528051906020012060146000838152602001908152602001600020819055506131aa826131a5610ad6565b613767565b60016131b4610ad6565b6131be9190615015565b600f819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606060008214156132d4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613434565b600082905060005b600082146133065780806132ef90615305565b915050600a826132ff91906150a2565b91506132dc565b60008167ffffffffffffffff811115613348577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561337a5781602001600182028036833780820191505090505b5090505b6000851461342d576001826133939190615169565b9150600a856133a2919061537f565b60306133ae9190615015565b60f81b8183815181106133ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561342691906150a2565b945061337e565b8093505050505b919050565b600081836134479190615015565b905092915050565b61345a848484612e85565b61346684848484613785565b6134a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349c90614c2f565b60405180910390fd5b50505050565b6060601380546134ba906152a2565b80601f01602080910402602001604051908101604052809291908181526020018280546134e6906152a2565b80156135335780601f1061350857610100808354040283529160200191613533565b820191906000526020600020905b81548152906001019060200180831161351657829003601f168201915b5050505050905090565b60606000821415613585576040518060400160405280600481526020017f307830300000000000000000000000000000000000000000000000000000000081525090506135be565b600082905060005b600082146135af5780806135a090615305565b915050600882901c915061358d565b6135b9848261391c565b925050505b919050565b60606000825114156135e65760405180602001604052806000815250905061375d565b6000604051806060016040528060408152602001615f0c60409139905060006003600285516136159190615015565b61361f91906150a2565b600461362b919061510f565b9050600060208261363c9190615015565b67ffffffffffffffff81111561367b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136ad5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561371c576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f81168501518253600182019150506136c1565b600389510660018114613736576002811461374657613751565b613d3d60f01b6002830352613751565b603d60f81b60018303525b50505050508093505050505b919050565b505050565b613781828260405180602001604052806000815250613c16565b5050565b60006137a68473ffffffffffffffffffffffffffffffffffffffff16613c71565b1561390f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137cf612ce6565b8786866040518563ffffffff1660e01b81526004016137f19493929190614b2b565b602060405180830381600087803b15801561380b57600080fd5b505af192505050801561383c57506040513d601f19601f8201168201806040525081019061383991906141fe565b60015b6138bf573d806000811461386c576040519150601f19603f3d011682016040523d82523d6000602084013e613871565b606091505b506000815114156138b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ae90614c2f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613914565b600190505b949350505050565b60606000600283600261392f919061510f565b6139399190615015565b67ffffffffffffffff811115613978577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156139aa5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613a08577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613a92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613ad2919061510f565b613adc9190615015565b90505b6001811115613bc8577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613b44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110613b81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613bc190615278565b9050613adf565b5060008414613c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0390614bcf565b60405180910390fd5b8091505092915050565b613c208383613c84565b613c2d6000848484613785565b613c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6390614c2f565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ceb90614dcf565b60405180910390fd5b613cfd81612c7a565b15613d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3490614caf565b60405180910390fd5b613d4960008383613762565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d999190615015565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e5e906152a2565b90600052602060002090601f016020900481019282613e805760008555613ec7565b82601f10613e9957805160ff1916838001178555613ec7565b82800160010185558215613ec7579182015b82811115613ec6578251825591602001919060010190613eab565b5b509050613ed49190613ed8565b5090565b5b80821115613ef1576000816000905550600101613ed9565b5090565b6000613f08613f0384614f38565b614f13565b905082815260208101848484011115613f2057600080fd5b613f2b848285615236565b509392505050565b6000613f46613f4184614f69565b614f13565b905082815260208101848484011115613f5e57600080fd5b613f69848285615236565b509392505050565b600081359050613f8081615eaf565b92915050565b600081359050613f9581615ec6565b92915050565b600081359050613faa81615edd565b92915050565b600081519050613fbf81615edd565b92915050565b600082601f830112613fd657600080fd5b8135613fe6848260208601613ef5565b91505092915050565b600082601f83011261400057600080fd5b8135614010848260208601613f33565b91505092915050565b60008135905061402881615ef4565b92915050565b60006020828403121561404057600080fd5b600061404e84828501613f71565b91505092915050565b6000806040838503121561406a57600080fd5b600061407885828601613f71565b925050602061408985828601613f71565b9150509250929050565b6000806000606084860312156140a857600080fd5b60006140b686828701613f71565b93505060206140c786828701613f71565b92505060406140d886828701614019565b9150509250925092565b600080600080608085870312156140f857600080fd5b600061410687828801613f71565b945050602061411787828801613f71565b935050604061412887828801614019565b925050606085013567ffffffffffffffff81111561414557600080fd5b61415187828801613fc5565b91505092959194509250565b6000806040838503121561417057600080fd5b600061417e85828601613f71565b925050602061418f85828601613f86565b9150509250929050565b600080604083850312156141ac57600080fd5b60006141ba85828601613f71565b92505060206141cb85828601614019565b9150509250929050565b6000602082840312156141e757600080fd5b60006141f584828501613f9b565b91505092915050565b60006020828403121561421057600080fd5b600061421e84828501613fb0565b91505092915050565b60006020828403121561423957600080fd5b600082013567ffffffffffffffff81111561425357600080fd5b61425f84828501613fef565b91505092915050565b60006020828403121561427a57600080fd5b600061428884828501614019565b91505092915050565b61429a8161519d565b82525050565b6142a9816151af565b82525050565b6142b8816151bb565b82525050565b60006142c982614f9a565b6142d38185614fb0565b93506142e3818560208601615245565b6142ec8161549d565b840191505092915050565b600061430282614fa5565b61430c8185614fc1565b935061431c818560208601615245565b6143258161549d565b840191505092915050565b600061433b82614fa5565b6143458185614fd2565b9350614355818560208601615245565b80840191505092915050565b600061436e602083614fc1565b9150614379826154ae565b602082019050919050565b6000614391600c83614fc1565b915061439c826154d7565b602082019050919050565b60006143b4600883614fc1565b91506143bf82615500565b602082019050919050565b60006143d7600583614fd2565b91506143e282615529565b600582019050919050565b60006143fa600b83614fd2565b915061440582615552565b600b82019050919050565b600061441d605d83614fd2565b91506144288261557b565b605d82019050919050565b6000614440603283614fc1565b915061444b826155f0565b604082019050919050565b6000614463600c83614fc1565b915061446e8261563f565b602082019050919050565b6000614486602683614fc1565b915061449182615668565b604082019050919050565b60006144a9601183614fc1565b91506144b4826156b7565b602082019050919050565b60006144cc601c83614fc1565b91506144d7826156e0565b602082019050919050565b60006144ef602283614fd2565b91506144fa82615709565b602282019050919050565b6000614512600f83614fd2565b915061451d82615758565b600f82019050919050565b6000614535600f83614fc1565b915061454082615781565b602082019050919050565b6000614558602483614fc1565b9150614563826157aa565b604082019050919050565b600061457b601983614fc1565b9150614586826157f9565b602082019050919050565b600061459e602a83614fd2565b91506145a982615822565b602a82019050919050565b60006145c1602783614fd2565b91506145cc82615871565b602782019050919050565b60006145e4600383614fd2565b91506145ef826158c0565b600382019050919050565b6000614607600683614fd2565b9150614612826158e9565b600682019050919050565b600061462a602c83614fc1565b915061463582615912565b604082019050919050565b600061464d601083614fc1565b915061465882615961565b602082019050919050565b6000614670603883614fc1565b915061467b8261598a565b604082019050919050565b6000614693602a83614fc1565b915061469e826159d9565b604082019050919050565b60006146b6601383614fd2565b91506146c182615a28565b601382019050919050565b60006146d9602983614fc1565b91506146e482615a51565b604082019050919050565b60006146fc602083614fc1565b915061470782615aa0565b602082019050919050565b600061471f600183614fd2565b915061472a82615ac9565b600182019050919050565b6000614742602c83614fc1565b915061474d82615af2565b604082019050919050565b6000614765602083614fc1565b915061477082615b41565b602082019050919050565b6000614788600d83614fc1565b915061479382615b6a565b602082019050919050565b60006147ab602983614fc1565b91506147b682615b93565b604082019050919050565b60006147ce602f83614fc1565b91506147d982615be2565b604082019050919050565b60006147f1602c83614fd2565b91506147fc82615c31565b602c82019050919050565b6000614814602183614fc1565b915061481f82615c80565b604082019050919050565b6000614837601d83614fd2565b915061484282615ccf565b601d82019050919050565b600061485a603183614fc1565b915061486582615cf8565b604082019050919050565b600061487d602683614fd2565b915061488882615d47565b602682019050919050565b60006148a0601883614fd2565b91506148ab82615d96565b601882019050919050565b60006148c3600a83614fd2565b91506148ce82615dbf565b600a82019050919050565b60006148e6602783614fd2565b91506148f182615de8565b602782019050919050565b6000614909602f83614fd2565b915061491482615e37565b602f82019050919050565b600061492c600a83614fd2565b915061493782615e86565b600a82019050919050565b61494b8161521f565b82525050565b600061495c826144e2565b91506149688289614330565b9150614973826148d9565b915061497f8288614330565b915061498a826145b4565b91506149968287614330565b91506149a1826147e4565b91506149ad8286614330565b91506149b882614591565b91506149c48285614330565b91506149cf82614870565b91506149db8284614330565b91506149e6826145d7565b9150819050979650505050505050565b6000614a018261482a565b9150614a0d8284614330565b915081905092915050565b6000614a23826148fc565b9150614a2f828c614330565b9150614a3a82614410565b9150614a45826148b6565b9150614a51828b614330565b9150614a5c826145fa565b9150614a68828a614330565b9150614a7382614893565b9150614a7f8289614330565b9150614a8a8261491f565b9150614a968288614330565b9150614aa1826146a9565b9150614aad8287614330565b9150614ab8826143ca565b9150614ac48286614330565b9150614acf826143ed565b9150614adb8285614330565b9150614ae682614505565b9150614af28284614330565b9150614afd82614712565b91508190509a9950505050505050505050565b6000602082019050614b256000830184614291565b92915050565b6000608082019050614b406000830187614291565b614b4d6020830186614291565b614b5a6040830185614942565b8181036060830152614b6c81846142be565b905095945050505050565b6000602082019050614b8c60008301846142a0565b92915050565b6000602082019050614ba760008301846142af565b92915050565b60006020820190508181036000830152614bc781846142f7565b905092915050565b60006020820190508181036000830152614be881614361565b9050919050565b60006020820190508181036000830152614c0881614384565b9050919050565b60006020820190508181036000830152614c28816143a7565b9050919050565b60006020820190508181036000830152614c4881614433565b9050919050565b60006020820190508181036000830152614c6881614456565b9050919050565b60006020820190508181036000830152614c8881614479565b9050919050565b60006020820190508181036000830152614ca88161449c565b9050919050565b60006020820190508181036000830152614cc8816144bf565b9050919050565b60006020820190508181036000830152614ce881614528565b9050919050565b60006020820190508181036000830152614d088161454b565b9050919050565b60006020820190508181036000830152614d288161456e565b9050919050565b60006020820190508181036000830152614d488161461d565b9050919050565b60006020820190508181036000830152614d6881614640565b9050919050565b60006020820190508181036000830152614d8881614663565b9050919050565b60006020820190508181036000830152614da881614686565b9050919050565b60006020820190508181036000830152614dc8816146cc565b9050919050565b60006020820190508181036000830152614de8816146ef565b9050919050565b60006020820190508181036000830152614e0881614735565b9050919050565b60006020820190508181036000830152614e2881614758565b9050919050565b60006020820190508181036000830152614e488161477b565b9050919050565b60006020820190508181036000830152614e688161479e565b9050919050565b60006020820190508181036000830152614e88816147c1565b9050919050565b60006020820190508181036000830152614ea881614807565b9050919050565b60006020820190508181036000830152614ec88161484d565b9050919050565b6000602082019050614ee46000830184614942565b92915050565b6000604082019050614eff6000830185614942565b614f0c6020830184614942565b9392505050565b6000614f1d614f2e565b9050614f2982826152d4565b919050565b6000604051905090565b600067ffffffffffffffff821115614f5357614f5261546e565b5b614f5c8261549d565b9050602081019050919050565b600067ffffffffffffffff821115614f8457614f8361546e565b5b614f8d8261549d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fe8826151f1565b9150614ff3836151f1565b92508261ffff0382111561500a576150096153e1565b5b828201905092915050565b60006150208261521f565b915061502b8361521f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150605761505f6153e1565b5b828201905092915050565b600061507682615229565b915061508183615229565b92508260ff03821115615097576150966153e1565b5b828201905092915050565b60006150ad8261521f565b91506150b88361521f565b9250826150c8576150c7615410565b5b828204905092915050565b60006150de826151f1565b91506150e9836151f1565b92508161ffff0483118215151615615104576151036153e1565b5b828202905092915050565b600061511a8261521f565b91506151258361521f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561515e5761515d6153e1565b5b828202905092915050565b60006151748261521f565b915061517f8361521f565b925082821015615192576151916153e1565b5b828203905092915050565b60006151a8826151ff565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615263578082015181840152602081019050615248565b83811115615272576000848401525b50505050565b60006152838261521f565b91506000821415615297576152966153e1565b5b600182039050919050565b600060028204905060018216806152ba57607f821691505b602082108114156152ce576152cd61543f565b5b50919050565b6152dd8261549d565b810181811067ffffffffffffffff821117156152fc576152fb61546e565b5b80604052505050565b60006153108261521f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615343576153426153e1565b5b600182019050919050565b6000615359826151f1565b9150615364836151f1565b92508261537457615373615410565b5b828206905092915050565b600061538a8261521f565b91506153958361521f565b9250826153a5576153a4615410565b5b828206905092915050565b60006153bb82615229565b91506153c683615229565b9250826153d6576153d5615410565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4e6f7420736f6c64206f75740000000000000000000000000000000000000000600082015250565b7f4c61737420736574000000000000000000000000000000000000000000000000600082015250565b7f6a756d702f000000000000000000000000000000000000000000000000000000600082015250565b7f222c2273656564223a2022000000000000000000000000000000000000000000600082015250565b7f222c20226465736372697074696f6e223a20224120756e697175656c7920676560008201527f6e657261746564207069656365206f66206d757369632077697468206d61746360208201527f68696e672076697375616c20726570726573656e746174696f6e2e222c000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f53657420736f6c64206f75740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536574206e6f742066696e616c697a6564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5b7b202274726169745f74797065223a202242504d222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c2261747472696275746573223a0000000000000000000000000000000000600082015250565b7f536574206e6f7420737461727465640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f227d2c207b202274726169745f74797065223a2022536574204e616d65222c2060008201527f2276616c7565223a202200000000000000000000000000000000000000000000602082015250565b7f227d2c207b202274726169745f74797065223a20224368696c6c222c2022766160008201527f6c7565223a202200000000000000000000000000000000000000000000000000602082015250565b7f227d5d0000000000000000000000000000000000000000000000000000000000600082015250565b7f696d6167652f0000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f222c2265787465726e616c5f75726c223a202200000000000000000000000000600082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5072696365206e6f74206d657400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f227d2c207b202274726169745f74797065223a2022496e737472756d656e742260008201527f2c202276616c7565223a20220000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f227d2c207b202274726169745f74797065223a202242617365222c202276616c60008201527f7565223a20220000000000000000000000000000000000000000000000000000602082015250565b7f2e737667222c22616e696d6174696f6e5f75726c223a20220000000000000000600082015250565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b7f227d2c207b202274726169745f74797065223a20225363616c65222c2022766160008201527f6c7565223a202200000000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a202250726f6f66206f662047726f6f76652047656e65726160008201527f74696f6e20457465726e69747920230000000000000000000000000000000000602082015250565b7f616e696d6174696f6e2f00000000000000000000000000000000000000000000600082015250565b615eb88161519d565b8114615ec357600080fd5b50565b615ecf816151af565b8114615eda57600080fd5b50565b615ee6816151c5565b8114615ef157600080fd5b50565b615efd8161521f565b8114615f0857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220b5c5d2d8501f3fafcd4343c54691213a5462ffb5757da8693941ea87afa2c0de64736f6c6343000804003350726f6f66206f662047726f6f76652047656e65726174696f6e20457465726e697479000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000013bcbf936b38e380000000000000000000000008ed607f4ec926385873edeb7bd117044ec887f30000000000000000000000000a82d51e6d399b80e3deaec4ba9a42a01484be1980000000000000000000000008ec02407334cd144547af4c752ac4818acd93311

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80636a62784211610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146106e5578063d07dd84f14610722578063e985e9c51461075f578063f2fde38b1461079c576101d8565b8063a22cb4651461063f578063a45c35e614610668578063b12f9eab146106a5578063b88d4fde146106bc576101d8565b80638a5a1ef6116100d15780638a5a1ef6146105835780638da5cb5b146105c057806395d89b41146105eb578063986c0c6314610616576101d8565b80636a627842146104d657806370a08231146104f2578063715018a61461052f5780637f6a7cb114610546576101d8565b80632e4031611161017a57806355f804b31161014957806355f804b3146103f65780635a4c16241461041f578063633ce0591461045c5780636352211e14610499576101d8565b80632e4031611461033c5780633ccfd60b1461037957806342842e0e146103905780634c9d68fc146103b9576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632d72225b146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff91906141d5565b6107c5565b6040516102119190614b77565b60405180910390f35b34801561022657600080fd5b5061022f6108a7565b60405161023c9190614bad565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190614268565b610939565b6040516102799190614b10565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190614199565b6109be565b005b3480156102b757600080fd5b506102c0610ad6565b6040516102cd9190614ecf565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190614093565b610ae0565b005b34801561030b57600080fd5b5061032660048036038101906103219190614268565b610b40565b6040516103339190614bad565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190614268565b610ba3565b6040516103709190614bad565b60405180910390f35b34801561038557600080fd5b5061038e610ec3565b005b34801561039c57600080fd5b506103b760048036038101906103b29190614093565b610f34565b005b3480156103c557600080fd5b506103e060048036038101906103db9190614268565b610f54565b6040516103ed9190614bad565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190614227565b6110ec565b005b34801561042b57600080fd5b5061044660048036038101906104419190614268565b611182565b6040516104539190614b92565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190614268565b61119f565b6040516104909190614bad565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190614268565b6114cd565b6040516104cd9190614b10565b60405180910390f35b6104f060048036038101906104eb919061402e565b61157f565b005b3480156104fe57600080fd5b506105196004803603810190610514919061402e565b6116cb565b6040516105269190614ecf565b60405180910390f35b34801561053b57600080fd5b50610544611783565b005b34801561055257600080fd5b5061056d60048036038101906105689190614268565b61180b565b60405161057a9190614bad565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190614268565b611b06565b6040516105b79190614bad565b60405180910390f35b3480156105cc57600080fd5b506105d5611b81565b6040516105e29190614b10565b60405180910390f35b3480156105f757600080fd5b50610600611baa565b60405161060d9190614bad565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190614268565b611c3c565b005b34801561064b57600080fd5b506106666004803603810190610661919061415d565b611dff565b005b34801561067457600080fd5b5061068f600480360381019061068a9190614268565b611f80565b60405161069c9190614bad565b60405180910390f35b3480156106b157600080fd5b506106ba612804565b005b3480156106c857600080fd5b506106e360048036038101906106de91906140e2565b6128f1565b005b3480156106f157600080fd5b5061070c60048036038101906107079190614268565b612953565b6040516107199190614bad565b60405180910390f35b34801561072e57600080fd5b5061074960048036038101906107449190614268565b612a4b565b6040516107569190614bad565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190614057565b612a84565b6040516107939190614b77565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be919061402e565b612b18565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a0575061089f82612c10565b5b9050919050565b6060600180546108b6906152a2565b80601f01602080910402602001604051908101604052809291908181526020018280546108e2906152a2565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b600061094482612c7a565b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90614def565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c9826114cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190614e8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a59612ce6565b73ffffffffffffffffffffffffffffffffffffffff161480610a885750610a8781610a82612ce6565b612a84565b5b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90614d6f565b60405180910390fd5b610ad18383612cee565b505050565b6000600f54905090565b610af1610aeb612ce6565b82612da7565b610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790614eaf565b60405180910390fd5b610b3b838383612e85565b505050565b6060610b4b82611b06565b610b5483611f80565b610b5d8461180b565b610b6685610f54565b610b6f8661119f565b610b7887610ba3565b604051602001610b8d96959493929190614951565b6040516020818303038152906040529050919050565b60606040518061018001604052806040518060400160405280600181526020017f430000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f432300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f440000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f442300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f450000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f460000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f462300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f470000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f472300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f410000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f412300000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f4200000000000000000000000000000000000000000000000000000000000000815250815250600c83610e80919061537f565b600c8110610eb7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201519050919050565b6000479050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f30573d6000803e3d6000fd5b5050565b610f4f838383604051806020016040528060008152506128f1565b505050565b60606000610f6183611182565b905060405180608001604052806040518060400160405280600581526020017f447269667400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f49736c616e64000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f446972747900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f427574746f6e0000000000000000000000000000000000000000000000000000815250815250600482600060208110611094577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c6110a591906153b0565b60ff16600481106110df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151915050919050565b6110f4612ce6565b73ffffffffffffffffffffffffffffffffffffffff16611112611b81565b73ffffffffffffffffffffffffffffffffffffffff1614611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90614e0f565b60405180910390fd5b806013908051906020019061117e929190613e52565b5050565b600060146000838152602001908152602001600020549050919050565b606060006111b8600a54846130e190919063ffffffff16565b90506040518061018001604052806040518060400160405280600481526020017f4c6976650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f44726f700000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f537465700000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436f72650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f546563680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44616e636500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426561740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f53796e746800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f576176650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f427265616b00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44726f6e6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4e6f69736500000000000000000000000000000000000000000000000000000081525081525081600c81106114c0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151915050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156d90614daf565b60405180910390fd5b80915050919050565b60085443116115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614d4f565b60405180910390fd5b600060125411611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90614ccf565b60405180910390fd5b611633601154611625600a546012546130f790919063ffffffff16565b61310d90919063ffffffff16565b61163b610ad6565b1061167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614c4f565b60405180910390fd5b600b5434146116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690614e2f565b60405180910390fd5b6116c881613123565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390614d8f565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61178b612ce6565b73ffffffffffffffffffffffffffffffffffffffff166117a9611b81565b73ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690614e0f565b60405180910390fd5b61180960006131c8565b565b6060600061181883611182565b90506040518061014001604052806040518060400160405280600981526020017f4c6574686172676963000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f536c75676769736800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4368696c6c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f52656c617865640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4e65757472616c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f54656e736500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4e6572766f75730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f466964676574790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f486563746963000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f53747265737366756c6c00000000000000000000000000000000000000000000815250815250600a82600160208110611aae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c611abf91906153b0565b60ff16600a8110611af9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151915050919050565b60606000611b1383611182565b9050611b79601a82600260208110611b54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c611b6591906153b0565b6055611b71919061506b565b60ff1661328c565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060028054611bb9906152a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611be5906152a2565b8015611c325780601f10611c0757610100808354040283529160200191611c32565b820191906000526020600020905b815481529060010190602001808311611c1557829003601f168201915b5050505050905090565b611c44612ce6565b73ffffffffffffffffffffffffffffffffffffffff16611c62611b81565b73ffffffffffffffffffffffffffffffffffffffff1614611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90614e0f565b60405180910390fd5b6000600a54600f54611cca919061537f565b14611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0190614c8f565b60405180910390fd5b60095460125410611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4790614c0f565b60405180910390fd5b80600881905550611d6d600160125461343990919063ffffffff16565b60128190555060005b601054811015611dbe57611dab600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613123565b8080611db690615305565b915050611d76565b507f55d35b4292da305a0db36555001d795d3dfc81bae423612f33afc0869d36fef6600854601254604051611df4929190614eea565b60405180910390a150565b611e07612ce6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6c90614d0f565b60405180910390fd5b8060066000611e82612ce6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f2f612ce6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f749190614b77565b60405180910390a35050565b60606000611f8d83611182565b9050600081600360208110611fcb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c9050600082600460208110612010577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b60f81c9050600061012c8260ff166101008560ff1661203391906150d3565b61203d9190614fdd565b612047919061534e565b61ffff16905060006040518061030001604052806040518060400160405280600581526020017f4d616a6f7200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f41656f6c69616e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4d656c6f646963204d696e6f720000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4d69786f6c796469616e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f446f7269616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f506872796769616e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c796469616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601881526020017f4d656c6f646963204d696e6f72204669667468204d6f6465000000000000000081525081526020016040518060400160405280601981526020017f4d656c6f646963204d696e6f72205365636f6e64204d6f64650000000000000081525081526020016040518060400160405280600781526020017f5370616e6973680000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4861726d6f6e6963204d696e6f7200000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f446f7269616e202334000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f4861726d6f6e6963204d616a6f7200000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4c796469616e20446f6d696e616e74000000000000000000000000000000000081525081526020016040518060400160405280601581526020017f446f75626c65204861726d6f6e6963204d616a6f72000000000000000000000081525081526020016040518060400160405280600a81526020017f4e656f706f6c6974616e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4f7269656e74616c00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4c796469616e202339000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4d7973746572792023310000000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f48756e67617269616e204d696e6f72000000000000000000000000000000000081525081526020016040518060400160405280601481526020017f4175676d656e746564204865707461746f6e696300000000000000000000000081525081526020016040518060400160405280600c81526020017f4c796469616e204d696e6f72000000000000000000000000000000000000000081525081526020016040518060400160405280601681526020017f446f75626c65204861726d6f6e6963204c796469616e0000000000000000000081525081526020016040518060400160405280600f81526020017f48756e67617269616e204d616a6f72000000000000000000000000000000000081525081525090506000604051806103000160405280601861ffff168152602001602f61ffff168152602001604561ffff168152602001605a61ffff168152602001606e61ffff168152602001608161ffff168152602001609361ffff16815260200160a461ffff16815260200160b461ffff16815260200160c361ffff16815260200160d161ffff16815260200160de61ffff16815260200160ea61ffff16815260200160f561ffff16815260200160ff61ffff16815260200161010861ffff16815260200161011061ffff16815260200161011761ffff16815260200161011d61ffff16815260200161012261ffff16815260200161012661ffff16815260200161012961ffff16815260200161012b61ffff16815260200161012c61ffff16815250905060005b60188110156127b657818160188110612747577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015161ffff168410156127a357828160188110612790577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201519750505050505050506127ff565b80806127ae90615305565b915050612705565b50816000601881106127f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015196505050505050505b919050565b6000600a54612820601154600f5461343990919063ffffffff16565b61282a919061537f565b1461286a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286190614bef565b60405180910390fd5b60005b6011548110156128b5576128a2600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16613123565b80806128ad90615305565b91505061286d565b507ff45815c3f6a640216c79d2d3506efea0598dddaa0579fedaf6ff9ed5fd8a91a86012546040516128e79190614ecf565b60405180910390a1565b6129026128fc612ce6565b83612da7565b612941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293890614eaf565b60405180910390fd5b61294d8484848461344f565b50505050565b606061295e82612c7a565b61299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490614e6f565b60405180910390fd5b612a256129a98361328c565b6129b16134ab565b6129ba8561328c565b6129c26134ab565b6129cb8761328c565b6129d36134ab565b6129dc8961328c565b6129f06129e88b611182565b60001c61353d565b6129f98b610b40565b604051602001612a1199989796959493929190614a18565b6040516020818303038152906040526135c3565b604051602001612a3591906149f6565b6040516020818303038152906040529050919050565b6060612a7d612a786001612a6a600a54866130e190919063ffffffff16565b61343990919063ffffffff16565b61328c565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b20612ce6565b73ffffffffffffffffffffffffffffffffffffffff16612b3e611b81565b73ffffffffffffffffffffffffffffffffffffffff1614612b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8b90614e0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfb90614c6f565b60405180910390fd5b612c0d816131c8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d61836114cd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612db282612c7a565b612df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de890614d2f565b60405180910390fd5b6000612dfc836114cd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e6b57508373ffffffffffffffffffffffffffffffffffffffff16612e5384610939565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e7c5750612e7b8185612a84565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612ea5826114cd565b73ffffffffffffffffffffffffffffffffffffffff1614612efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef290614e4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6290614cef565b60405180910390fd5b612f76838383613762565b612f81600082612cee565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd19190615169565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130289190615015565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836130ef91906150a2565b905092915050565b60008183613105919061510f565b905092915050565b6000818361311b9190615169565b905092915050565b600061312d610ad6565b9050808273ffffffffffffffffffffffffffffffffffffffff166131519190615015565b4361315c9190615015565b60405160200161316c9190614ecf565b6040516020818303038152906040528051906020012060146000838152602001908152602001600020819055506131aa826131a5610ad6565b613767565b60016131b4610ad6565b6131be9190615015565b600f819055505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b606060008214156132d4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613434565b600082905060005b600082146133065780806132ef90615305565b915050600a826132ff91906150a2565b91506132dc565b60008167ffffffffffffffff811115613348577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561337a5781602001600182028036833780820191505090505b5090505b6000851461342d576001826133939190615169565b9150600a856133a2919061537f565b60306133ae9190615015565b60f81b8183815181106133ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561342691906150a2565b945061337e565b8093505050505b919050565b600081836134479190615015565b905092915050565b61345a848484612e85565b61346684848484613785565b6134a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349c90614c2f565b60405180910390fd5b50505050565b6060601380546134ba906152a2565b80601f01602080910402602001604051908101604052809291908181526020018280546134e6906152a2565b80156135335780601f1061350857610100808354040283529160200191613533565b820191906000526020600020905b81548152906001019060200180831161351657829003601f168201915b5050505050905090565b60606000821415613585576040518060400160405280600481526020017f307830300000000000000000000000000000000000000000000000000000000081525090506135be565b600082905060005b600082146135af5780806135a090615305565b915050600882901c915061358d565b6135b9848261391c565b925050505b919050565b60606000825114156135e65760405180602001604052806000815250905061375d565b6000604051806060016040528060408152602001615f0c60409139905060006003600285516136159190615015565b61361f91906150a2565b600461362b919061510f565b9050600060208261363c9190615015565b67ffffffffffffffff81111561367b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156136ad5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b8183101561371c576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f81168501518253600182019150506136c1565b600389510660018114613736576002811461374657613751565b613d3d60f01b6002830352613751565b603d60f81b60018303525b50505050508093505050505b919050565b505050565b613781828260405180602001604052806000815250613c16565b5050565b60006137a68473ffffffffffffffffffffffffffffffffffffffff16613c71565b1561390f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137cf612ce6565b8786866040518563ffffffff1660e01b81526004016137f19493929190614b2b565b602060405180830381600087803b15801561380b57600080fd5b505af192505050801561383c57506040513d601f19601f8201168201806040525081019061383991906141fe565b60015b6138bf573d806000811461386c576040519150601f19603f3d011682016040523d82523d6000602084013e613871565b606091505b506000815114156138b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ae90614c2f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613914565b600190505b949350505050565b60606000600283600261392f919061510f565b6139399190615015565b67ffffffffffffffff811115613978577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156139aa5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613a08577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613a92577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002613ad2919061510f565b613adc9190615015565b90505b6001811115613bc8577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613b44577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110613b81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080613bc190615278565b9050613adf565b5060008414613c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0390614bcf565b60405180910390fd5b8091505092915050565b613c208383613c84565b613c2d6000848484613785565b613c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6390614c2f565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ceb90614dcf565b60405180910390fd5b613cfd81612c7a565b15613d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d3490614caf565b60405180910390fd5b613d4960008383613762565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613d999190615015565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613e5e906152a2565b90600052602060002090601f016020900481019282613e805760008555613ec7565b82601f10613e9957805160ff1916838001178555613ec7565b82800160010185558215613ec7579182015b82811115613ec6578251825591602001919060010190613eab565b5b509050613ed49190613ed8565b5090565b5b80821115613ef1576000816000905550600101613ed9565b5090565b6000613f08613f0384614f38565b614f13565b905082815260208101848484011115613f2057600080fd5b613f2b848285615236565b509392505050565b6000613f46613f4184614f69565b614f13565b905082815260208101848484011115613f5e57600080fd5b613f69848285615236565b509392505050565b600081359050613f8081615eaf565b92915050565b600081359050613f9581615ec6565b92915050565b600081359050613faa81615edd565b92915050565b600081519050613fbf81615edd565b92915050565b600082601f830112613fd657600080fd5b8135613fe6848260208601613ef5565b91505092915050565b600082601f83011261400057600080fd5b8135614010848260208601613f33565b91505092915050565b60008135905061402881615ef4565b92915050565b60006020828403121561404057600080fd5b600061404e84828501613f71565b91505092915050565b6000806040838503121561406a57600080fd5b600061407885828601613f71565b925050602061408985828601613f71565b9150509250929050565b6000806000606084860312156140a857600080fd5b60006140b686828701613f71565b93505060206140c786828701613f71565b92505060406140d886828701614019565b9150509250925092565b600080600080608085870312156140f857600080fd5b600061410687828801613f71565b945050602061411787828801613f71565b935050604061412887828801614019565b925050606085013567ffffffffffffffff81111561414557600080fd5b61415187828801613fc5565b91505092959194509250565b6000806040838503121561417057600080fd5b600061417e85828601613f71565b925050602061418f85828601613f86565b9150509250929050565b600080604083850312156141ac57600080fd5b60006141ba85828601613f71565b92505060206141cb85828601614019565b9150509250929050565b6000602082840312156141e757600080fd5b60006141f584828501613f9b565b91505092915050565b60006020828403121561421057600080fd5b600061421e84828501613fb0565b91505092915050565b60006020828403121561423957600080fd5b600082013567ffffffffffffffff81111561425357600080fd5b61425f84828501613fef565b91505092915050565b60006020828403121561427a57600080fd5b600061428884828501614019565b91505092915050565b61429a8161519d565b82525050565b6142a9816151af565b82525050565b6142b8816151bb565b82525050565b60006142c982614f9a565b6142d38185614fb0565b93506142e3818560208601615245565b6142ec8161549d565b840191505092915050565b600061430282614fa5565b61430c8185614fc1565b935061431c818560208601615245565b6143258161549d565b840191505092915050565b600061433b82614fa5565b6143458185614fd2565b9350614355818560208601615245565b80840191505092915050565b600061436e602083614fc1565b9150614379826154ae565b602082019050919050565b6000614391600c83614fc1565b915061439c826154d7565b602082019050919050565b60006143b4600883614fc1565b91506143bf82615500565b602082019050919050565b60006143d7600583614fd2565b91506143e282615529565b600582019050919050565b60006143fa600b83614fd2565b915061440582615552565b600b82019050919050565b600061441d605d83614fd2565b91506144288261557b565b605d82019050919050565b6000614440603283614fc1565b915061444b826155f0565b604082019050919050565b6000614463600c83614fc1565b915061446e8261563f565b602082019050919050565b6000614486602683614fc1565b915061449182615668565b604082019050919050565b60006144a9601183614fc1565b91506144b4826156b7565b602082019050919050565b60006144cc601c83614fc1565b91506144d7826156e0565b602082019050919050565b60006144ef602283614fd2565b91506144fa82615709565b602282019050919050565b6000614512600f83614fd2565b915061451d82615758565b600f82019050919050565b6000614535600f83614fc1565b915061454082615781565b602082019050919050565b6000614558602483614fc1565b9150614563826157aa565b604082019050919050565b600061457b601983614fc1565b9150614586826157f9565b602082019050919050565b600061459e602a83614fd2565b91506145a982615822565b602a82019050919050565b60006145c1602783614fd2565b91506145cc82615871565b602782019050919050565b60006145e4600383614fd2565b91506145ef826158c0565b600382019050919050565b6000614607600683614fd2565b9150614612826158e9565b600682019050919050565b600061462a602c83614fc1565b915061463582615912565b604082019050919050565b600061464d601083614fc1565b915061465882615961565b602082019050919050565b6000614670603883614fc1565b915061467b8261598a565b604082019050919050565b6000614693602a83614fc1565b915061469e826159d9565b604082019050919050565b60006146b6601383614fd2565b91506146c182615a28565b601382019050919050565b60006146d9602983614fc1565b91506146e482615a51565b604082019050919050565b60006146fc602083614fc1565b915061470782615aa0565b602082019050919050565b600061471f600183614fd2565b915061472a82615ac9565b600182019050919050565b6000614742602c83614fc1565b915061474d82615af2565b604082019050919050565b6000614765602083614fc1565b915061477082615b41565b602082019050919050565b6000614788600d83614fc1565b915061479382615b6a565b602082019050919050565b60006147ab602983614fc1565b91506147b682615b93565b604082019050919050565b60006147ce602f83614fc1565b91506147d982615be2565b604082019050919050565b60006147f1602c83614fd2565b91506147fc82615c31565b602c82019050919050565b6000614814602183614fc1565b915061481f82615c80565b604082019050919050565b6000614837601d83614fd2565b915061484282615ccf565b601d82019050919050565b600061485a603183614fc1565b915061486582615cf8565b604082019050919050565b600061487d602683614fd2565b915061488882615d47565b602682019050919050565b60006148a0601883614fd2565b91506148ab82615d96565b601882019050919050565b60006148c3600a83614fd2565b91506148ce82615dbf565b600a82019050919050565b60006148e6602783614fd2565b91506148f182615de8565b602782019050919050565b6000614909602f83614fd2565b915061491482615e37565b602f82019050919050565b600061492c600a83614fd2565b915061493782615e86565b600a82019050919050565b61494b8161521f565b82525050565b600061495c826144e2565b91506149688289614330565b9150614973826148d9565b915061497f8288614330565b915061498a826145b4565b91506149968287614330565b91506149a1826147e4565b91506149ad8286614330565b91506149b882614591565b91506149c48285614330565b91506149cf82614870565b91506149db8284614330565b91506149e6826145d7565b9150819050979650505050505050565b6000614a018261482a565b9150614a0d8284614330565b915081905092915050565b6000614a23826148fc565b9150614a2f828c614330565b9150614a3a82614410565b9150614a45826148b6565b9150614a51828b614330565b9150614a5c826145fa565b9150614a68828a614330565b9150614a7382614893565b9150614a7f8289614330565b9150614a8a8261491f565b9150614a968288614330565b9150614aa1826146a9565b9150614aad8287614330565b9150614ab8826143ca565b9150614ac48286614330565b9150614acf826143ed565b9150614adb8285614330565b9150614ae682614505565b9150614af28284614330565b9150614afd82614712565b91508190509a9950505050505050505050565b6000602082019050614b256000830184614291565b92915050565b6000608082019050614b406000830187614291565b614b4d6020830186614291565b614b5a6040830185614942565b8181036060830152614b6c81846142be565b905095945050505050565b6000602082019050614b8c60008301846142a0565b92915050565b6000602082019050614ba760008301846142af565b92915050565b60006020820190508181036000830152614bc781846142f7565b905092915050565b60006020820190508181036000830152614be881614361565b9050919050565b60006020820190508181036000830152614c0881614384565b9050919050565b60006020820190508181036000830152614c28816143a7565b9050919050565b60006020820190508181036000830152614c4881614433565b9050919050565b60006020820190508181036000830152614c6881614456565b9050919050565b60006020820190508181036000830152614c8881614479565b9050919050565b60006020820190508181036000830152614ca88161449c565b9050919050565b60006020820190508181036000830152614cc8816144bf565b9050919050565b60006020820190508181036000830152614ce881614528565b9050919050565b60006020820190508181036000830152614d088161454b565b9050919050565b60006020820190508181036000830152614d288161456e565b9050919050565b60006020820190508181036000830152614d488161461d565b9050919050565b60006020820190508181036000830152614d6881614640565b9050919050565b60006020820190508181036000830152614d8881614663565b9050919050565b60006020820190508181036000830152614da881614686565b9050919050565b60006020820190508181036000830152614dc8816146cc565b9050919050565b60006020820190508181036000830152614de8816146ef565b9050919050565b60006020820190508181036000830152614e0881614735565b9050919050565b60006020820190508181036000830152614e2881614758565b9050919050565b60006020820190508181036000830152614e488161477b565b9050919050565b60006020820190508181036000830152614e688161479e565b9050919050565b60006020820190508181036000830152614e88816147c1565b9050919050565b60006020820190508181036000830152614ea881614807565b9050919050565b60006020820190508181036000830152614ec88161484d565b9050919050565b6000602082019050614ee46000830184614942565b92915050565b6000604082019050614eff6000830185614942565b614f0c6020830184614942565b9392505050565b6000614f1d614f2e565b9050614f2982826152d4565b919050565b6000604051905090565b600067ffffffffffffffff821115614f5357614f5261546e565b5b614f5c8261549d565b9050602081019050919050565b600067ffffffffffffffff821115614f8457614f8361546e565b5b614f8d8261549d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fe8826151f1565b9150614ff3836151f1565b92508261ffff0382111561500a576150096153e1565b5b828201905092915050565b60006150208261521f565b915061502b8361521f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150605761505f6153e1565b5b828201905092915050565b600061507682615229565b915061508183615229565b92508260ff03821115615097576150966153e1565b5b828201905092915050565b60006150ad8261521f565b91506150b88361521f565b9250826150c8576150c7615410565b5b828204905092915050565b60006150de826151f1565b91506150e9836151f1565b92508161ffff0483118215151615615104576151036153e1565b5b828202905092915050565b600061511a8261521f565b91506151258361521f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561515e5761515d6153e1565b5b828202905092915050565b60006151748261521f565b915061517f8361521f565b925082821015615192576151916153e1565b5b828203905092915050565b60006151a8826151ff565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015615263578082015181840152602081019050615248565b83811115615272576000848401525b50505050565b60006152838261521f565b91506000821415615297576152966153e1565b5b600182039050919050565b600060028204905060018216806152ba57607f821691505b602082108114156152ce576152cd61543f565b5b50919050565b6152dd8261549d565b810181811067ffffffffffffffff821117156152fc576152fb61546e565b5b80604052505050565b60006153108261521f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615343576153426153e1565b5b600182019050919050565b6000615359826151f1565b9150615364836151f1565b92508261537457615373615410565b5b828206905092915050565b600061538a8261521f565b91506153958361521f565b9250826153a5576153a4615410565b5b828206905092915050565b60006153bb82615229565b91506153c683615229565b9250826153d6576153d5615410565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4e6f7420736f6c64206f75740000000000000000000000000000000000000000600082015250565b7f4c61737420736574000000000000000000000000000000000000000000000000600082015250565b7f6a756d702f000000000000000000000000000000000000000000000000000000600082015250565b7f222c2273656564223a2022000000000000000000000000000000000000000000600082015250565b7f222c20226465736372697074696f6e223a20224120756e697175656c7920676560008201527f6e657261746564207069656365206f66206d757369632077697468206d61746360208201527f68696e672076697375616c20726570726573656e746174696f6e2e222c000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f53657420736f6c64206f75740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536574206e6f742066696e616c697a6564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5b7b202274726169745f74797065223a202242504d222c202276616c7565223a60008201527f2022000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c2261747472696275746573223a0000000000000000000000000000000000600082015250565b7f536574206e6f7420737461727465640000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f227d2c207b202274726169745f74797065223a2022536574204e616d65222c2060008201527f2276616c7565223a202200000000000000000000000000000000000000000000602082015250565b7f227d2c207b202274726169745f74797065223a20224368696c6c222c2022766160008201527f6c7565223a202200000000000000000000000000000000000000000000000000602082015250565b7f227d5d0000000000000000000000000000000000000000000000000000000000600082015250565b7f696d6167652f0000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f222c2265787465726e616c5f75726c223a202200000000000000000000000000600082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5072696365206e6f74206d657400000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f227d2c207b202274726169745f74797065223a2022496e737472756d656e742260008201527f2c202276616c7565223a20220000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f227d2c207b202274726169745f74797065223a202242617365222c202276616c60008201527f7565223a20220000000000000000000000000000000000000000000000000000602082015250565b7f2e737667222c22616e696d6174696f6e5f75726c223a20220000000000000000600082015250565b7f22696d616765223a202200000000000000000000000000000000000000000000600082015250565b7f227d2c207b202274726169745f74797065223a20225363616c65222c2022766160008201527f6c7565223a202200000000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a202250726f6f66206f662047726f6f76652047656e65726160008201527f74696f6e20457465726e69747920230000000000000000000000000000000000602082015250565b7f616e696d6174696f6e2f00000000000000000000000000000000000000000000600082015250565b615eb88161519d565b8114615ec357600080fd5b50565b615ecf816151af565b8114615eda57600080fd5b50565b615ee6816151c5565b8114615ef157600080fd5b50565b615efd8161521f565b8114615f0857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220b5c5d2d8501f3fafcd4343c54691213a5462ffb5757da8693941ea87afa2c0de64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000013bcbf936b38e380000000000000000000000008ed607f4ec926385873edeb7bd117044ec887f30000000000000000000000000a82d51e6d399b80e3deaec4ba9a42a01484be1980000000000000000000000008ec02407334cd144547af4c752ac4818acd93311

-----Decoded View---------------
Arg [0] : totalSets_ (uint256): 12
Arg [1] : groovesPerSet_ (uint256): 96
Arg [2] : price_ (uint256): 88888888888888888
Arg [3] : communityWallet_ (address): 0x8ed607F4EC926385873EdEb7Bd117044eC887f30
Arg [4] : teamWallet_ (address): 0xa82D51E6D399B80E3DeaeC4bA9A42a01484BE198
Arg [5] : beneficiary_ (address): 0x8eC02407334CD144547aF4C752aC4818AcD93311

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 000000000000000000000000000000000000000000000000013bcbf936b38e38
Arg [3] : 0000000000000000000000008ed607f4ec926385873edeb7bd117044ec887f30
Arg [4] : 000000000000000000000000a82d51e6d399b80e3deaec4ba9a42a01484be198
Arg [5] : 0000000000000000000000008ec02407334cd144547af4c752ac4818acd93311


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.