ETH Price: $3,434.31 (+11.70%)
Gas: 67 Gwei

Token

Superlative Secret Society (SuperlativeSS)
 

Overview

Max Total Supply

11,110 SuperlativeSS

Holders

5,943

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ghall.eth
Balance
1 SuperlativeSS
0x4d10f9f71dd4c0a7c35a7c377eeea2117a3ae8db
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Superlative Secret Society are collectible #NFTs inspired by primary personality traits.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SuperlativeSS

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : SuperlativeSS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract SuperlativeSS is ERC721Pausable, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public constant MAX_TOKENS = 11_111;
    uint256 public constant MAX_TOKENS_PER_ADDRESS = 222;
    uint256 public constant PRICE = 0.079 ether;

    uint256 private constant mintLimit = 22;

    bool public isPresaleActive = false;
    bool public isSaleActive = false;

    mapping(address => uint256) public presaleList;

    string private mContractURI;
    string private mBaseURI;
    string private mRevealedBaseURI;

    event PresaleMint(address minter, uint256 amount);
    event SaleMint(address minter, uint256 amount);

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
        _pause();
    }

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

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

    function togglePresaleStatus() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function toggleSaleStatus() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function addPresaleList(
        address[] calldata _addrs,
        uint256[] calldata _limit
    ) external onlyOwner {
        require(_addrs.length == _limit.length);
        for (uint256 i = 0; i < _addrs.length; i++) {
            presaleList[_addrs[i]] = _limit[i];
        }
    }

    function presaleMint(uint256 amount) external payable {
        require(isPresaleActive, "Presale is not active");
        require(amount <= mintLimit, "Max mint 22 tokens at a time");

        uint256 senderLimit = presaleList[msg.sender];

        require(senderLimit > 0, "You have no tokens left");
        require(amount <= senderLimit, "Your max token holding exceeded");
        require(
            _tokenIdCounter.current() + amount < MAX_TOKENS,
            "Max token supply exceeded"
        );
        require(msg.value >= amount * PRICE, "Insufficient funds");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, _tokenIdCounter.current());
            _tokenIdCounter.increment();
            senderLimit -= 1;
        }

        presaleList[msg.sender] = senderLimit;
        emit PresaleMint(msg.sender, amount);
    }

    function mint(uint256 amount) external payable {
        require(isSaleActive, "Sale is not active");
        require(amount <= mintLimit, "Max mint 22 tokens at a time");
        require(
            balanceOf(msg.sender) + amount <= MAX_TOKENS_PER_ADDRESS,
            "Your max token holding exceeded"
        );
        require(
            _tokenIdCounter.current() + amount < MAX_TOKENS,
            "Max token supply exceeded"
        );
        require(msg.value >= amount * PRICE, "Insufficient funds");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }

        emit SaleMint(msg.sender, amount);
    }

    function gift(address to, uint256 amount) external onlyOwner {
        require(
            _tokenIdCounter.current() + amount < MAX_TOKENS,
            "Max token supply exceeded"
        );
        for (uint256 i = 0; i < amount; i++) {
            _safeMint(to, _tokenIdCounter.current());
            _tokenIdCounter.increment();
        }
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function setContractURI(string calldata URI) external onlyOwner {
        mContractURI = URI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        mBaseURI = URI;
    }

    function setRevealedBaseURI(string calldata URI) external onlyOwner {
        mRevealedBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return mContractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        string memory revealedBaseURI = mRevealedBaseURI;
        return
            bytes(revealedBaseURI).length > 0
                ? string(abi.encodePacked(revealedBaseURI, tokenId.toString()))
                : mBaseURI;
    }
}

File 2 of 14 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 3 of 14 : 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 4 of 14 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 14 : 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 6 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    bool private _paused;

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

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

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

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

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

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

File 7 of 14 : 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 8 of 14 : 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 9 of 14 : 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 10 of 14 : 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 11 of 14 : 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 12 of 14 : 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 13 of 14 : 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 14 of 14 : 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",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_limit","type":"uint256[]"}],"name":"addPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setRevealedBaseURI","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055503480156200004757600080fd5b5060405162004d3038038062004d3083398181016040528101906200006d9190620003b5565b818181600090805190602001906200008792919062000293565b508060019080519060200190620000a092919062000293565b5050506000600660006101000a81548160ff021916908315150217905550620000de620000d2620000f660201b60201c565b620000fe60201b60201c565b620000ee620001c460201b60201c565b50506200067d565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001d46200027c60201b60201c565b1562000217576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200020e906200047d565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000263620000f660201b60201c565b60405162000272919062000460565b60405180910390a1565b6000600660009054906101000a900460ff16905090565b828054620002a19062000579565b90600052602060002090601f016020900481019282620002c5576000855562000311565b82601f10620002e057805160ff191683800117855562000311565b8280016001018555821562000311579182015b8281111562000310578251825591602001919060010190620002f3565b5b50905062000320919062000324565b5090565b5b808211156200033f57600081600090555060010162000325565b5090565b60006200035a6200035484620004c8565b6200049f565b9050828152602081018484840111156200037357600080fd5b6200038084828562000543565b509392505050565b600082601f8301126200039a57600080fd5b8151620003ac84826020860162000343565b91505092915050565b60008060408385031215620003c957600080fd5b600083015167ffffffffffffffff811115620003e457600080fd5b620003f28582860162000388565b925050602083015167ffffffffffffffff8111156200041057600080fd5b6200041e8582860162000388565b9150509250929050565b62000433816200050f565b82525050565b600062000448601083620004fe565b9150620004558262000654565b602082019050919050565b600060208201905062000477600083018462000428565b92915050565b60006020820190508181036000830152620004988162000439565b9050919050565b6000620004ab620004be565b9050620004b98282620005af565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e657620004e562000614565b5b620004f18262000643565b9050602081019050919050565b600082825260208201905092915050565b60006200051c8262000523565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200056357808201518184015260208101905062000546565b8381111562000573576000848401525b50505050565b600060028204905060018216806200059257607f821691505b60208210811415620005a957620005a8620005e5565b5b50919050565b620005ba8262000643565b810181811067ffffffffffffffff82111715620005dc57620005db62000614565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6146a3806200068d6000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063cbce4c971161006f578063cbce4c9714610743578063e8a3d4851461076c578063e985e9c514610797578063f2fde38b146107d4578063f47c84c5146107fd5761021a565b8063a0712d681461067c578063a22cb46514610698578063b88d4fde146106c1578063c87b56dd146106ea578063c9b298f1146107275761021a565b806385fa8328116100f257806385fa8328146105a95780638d859f3e146105d25780638da5cb5b146105fd578063938e3d7b1461062857806395d89b41146106515761021a565b806370a0823114610527578063715018a6146105645780637bffb4ce1461057b5780638456cb59146105925761021a565b80633f4ba83a116101a65780635c975abb116101755780635c975abb1461044057806360d938dc1461046b5780636352211e1461049657806365407358146104d35780636e83843a146104fe5761021a565b80633f4ba83a146103ac57806342842e0e146103c357806355f804b3146103ec578063564566a8146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102db57806312fb92e01461030457806318160ddd1461034157806323b872dd1461036c5780633ccfd60b146103955761021a565b806301ffc9a71461021f578063049c5c491461025c57806306fdde0314610273578063081812fc1461029e575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132a7565b610828565b6040516102539190613879565b60405180910390f35b34801561026857600080fd5b5061027161090a565b005b34801561027f57600080fd5b506102886109b2565b6040516102959190613894565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061333e565b610a44565b6040516102d291906137e9565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd91906131f6565b610ac9565b005b34801561031057600080fd5b5061032b6004803603810190610326919061308b565b610be1565b6040516103389190613bf6565b60405180910390f35b34801561034d57600080fd5b50610356610bf9565b6040516103639190613bf6565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906130f0565b610c0a565b005b3480156103a157600080fd5b506103aa610c6a565b005b3480156103b857600080fd5b506103c1610d2f565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906130f0565b610db5565b005b3480156103f857600080fd5b50610413600480360381019061040e91906132f9565b610dd5565b005b34801561042157600080fd5b5061042a610e67565b6040516104379190613879565b60405180910390f35b34801561044c57600080fd5b50610455610e7a565b6040516104629190613879565b60405180910390f35b34801561047757600080fd5b50610480610e91565b60405161048d9190613879565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b8919061333e565b610ea4565b6040516104ca91906137e9565b60405180910390f35b3480156104df57600080fd5b506104e8610f56565b6040516104f59190613bf6565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906132f9565b610f5b565b005b34801561053357600080fd5b5061054e6004803603810190610549919061308b565b610fed565b60405161055b9190613bf6565b60405180910390f35b34801561057057600080fd5b506105796110a5565b005b34801561058757600080fd5b5061059061112d565b005b34801561059e57600080fd5b506105a76111d5565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613232565b61125b565b005b3480156105de57600080fd5b506105e76113e1565b6040516105f49190613bf6565b60405180910390f35b34801561060957600080fd5b506106126113ed565b60405161061f91906137e9565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906132f9565b611417565b005b34801561065d57600080fd5b506106666114a9565b6040516106739190613894565b60405180910390f35b6106966004803603810190610691919061333e565b61153b565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906131ba565b61174b565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061313f565b6118cc565b005b3480156106f657600080fd5b50610711600480360381019061070c919061333e565b61192e565b60405161071e9190613894565b60405180910390f35b610741600480360381019061073c919061333e565b611ad3565b005b34801561074f57600080fd5b5061076a600480360381019061076591906131f6565b611daa565b005b34801561077857600080fd5b50610781611ebe565b60405161078e9190613894565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b991906130b4565b611f50565b6040516107cb9190613879565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061308b565b611fe4565b005b34801561080957600080fd5b506108126120dc565b60405161081f9190613bf6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109035750610902826120e2565b5b9050919050565b61091261214c565b73ffffffffffffffffffffffffffffffffffffffff166109306113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90613b36565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b6060600080546109c190613e75565b80601f01602080910402602001604051908101604052809291908181526020018280546109ed90613e75565b8015610a3a5780601f10610a0f57610100808354040283529160200191610a3a565b820191906000526020600020905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b6000610a4f82612154565b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613b16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad482610ea4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613b96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6461214c565b73ffffffffffffffffffffffffffffffffffffffff161480610b935750610b9281610b8d61214c565b611f50565b5b610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990613a96565b60405180910390fd5b610bdc83836121c0565b505050565b60096020528060005260406000206000915090505481565b6000610c056007612279565b905090565b610c1b610c1561214c565b82612287565b610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613bb6565b60405180910390fd5b610c65838383612365565b505050565b610c7261214c565b73ffffffffffffffffffffffffffffffffffffffff16610c906113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613b36565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2c573d6000803e3d6000fd5b50565b610d3761214c565b73ffffffffffffffffffffffffffffffffffffffff16610d556113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290613b36565b60405180910390fd5b610db36125c1565b565b610dd0838383604051806020016040528060008152506118cc565b505050565b610ddd61214c565b73ffffffffffffffffffffffffffffffffffffffff16610dfb6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890613b36565b60405180910390fd5b8181600b9190610e62929190612e39565b505050565b600860019054906101000a900460ff1681565b6000600660009054906101000a900460ff16905090565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613ad6565b60405180910390fd5b80915050919050565b60de81565b610f6361214c565b73ffffffffffffffffffffffffffffffffffffffff16610f816113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613b36565b60405180910390fd5b8181600c9190610fe8929190612e39565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613ab6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ad61214c565b73ffffffffffffffffffffffffffffffffffffffff166110cb6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613b36565b60405180910390fd5b61112b6000612663565b565b61113561214c565b73ffffffffffffffffffffffffffffffffffffffff166111536113ed565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613b36565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6111dd61214c565b73ffffffffffffffffffffffffffffffffffffffff166111fb6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613b36565b60405180910390fd5b611259612729565b565b61126361214c565b73ffffffffffffffffffffffffffffffffffffffff166112816113ed565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613b36565b60405180910390fd5b8181905084849050146112e957600080fd5b60005b848490508110156113da57828282818110611330577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560096000878785818110611374577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611389919061308b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806113d290613ed8565b9150506112ec565b5050505050565b670118aa14d941800081565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61141f61214c565b73ffffffffffffffffffffffffffffffffffffffff1661143d6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613b36565b60405180910390fd5b8181600a91906114a4929190612e39565b505050565b6060600180546114b890613e75565b80601f01602080910402602001604051908101604052809291908181526020018280546114e490613e75565b80156115315780601f1061150657610100808354040283529160200191611531565b820191906000526020600020905b81548152906001019060200180831161151457829003601f168201915b5050505050905090565b600860019054906101000a900460ff1661158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906139f6565b60405180910390fd5b60168111156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613996565b60405180910390fd5b60de816115da33610fed565b6115e49190613caa565b1115611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613936565b60405180910390fd5b612b67816116336007612279565b61163d9190613caa565b1061167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490613b76565b60405180910390fd5b670118aa14d9418000816116919190613d31565b3410156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613a56565b60405180910390fd5b60005b8181101561170e576116f1336116ec6007612279565b6127cc565b6116fb60076127ea565b808061170690613ed8565b9150506116d6565b507f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3382604051611740929190613850565b60405180910390a150565b61175361214c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b8906139d6565b60405180910390fd5b80600560006117ce61214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187b61214c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c09190613879565b60405180910390a35050565b6118dd6118d761214c565b83612287565b61191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390613bb6565b60405180910390fd5b61192884848484612800565b50505050565b606061193982612154565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613a16565b60405180910390fd5b6000600c805461198790613e75565b80601f01602080910402602001604051908101604052809291908181526020018280546119b390613e75565b8015611a005780601f106119d557610100808354040283529160200191611a00565b820191906000526020600020905b8154815290600101906020018083116119e357829003601f168201915b505050505090506000815111611aa057600b8054611a1d90613e75565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4990613e75565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b5050505050611acb565b80611aaa8461285c565b604051602001611abb9291906137c5565b6040516020818303038152906040525b915050919050565b600860009054906101000a900460ff16611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990613bd6565b60405180910390fd5b6016811115611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90613996565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be4906138f6565b60405180910390fd5b80821115611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2790613936565b60405180910390fd5b612b6782611c3e6007612279565b611c489190613caa565b10611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613b76565b60405180910390fd5b670118aa14d941800082611c9c9190613d31565b341015611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590613a56565b60405180910390fd5b60005b82811015611d2857611cfc33611cf76007612279565b6127cc565b611d0660076127ea565b600182611d139190613d8b565b91508080611d2090613ed8565b915050611ce1565b5080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a33383604051611d9e929190613850565b60405180910390a15050565b611db261214c565b73ffffffffffffffffffffffffffffffffffffffff16611dd06113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90613b36565b60405180910390fd5b612b6781611e346007612279565b611e3e9190613caa565b10611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590613b76565b60405180910390fd5b60005b81811015611eb957611e9c83611e976007612279565b6127cc565b611ea660076127ea565b8080611eb190613ed8565b915050611e81565b505050565b6060600a8054611ecd90613e75565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef990613e75565b8015611f465780601f10611f1b57610100808354040283529160200191611f46565b820191906000526020600020905b815481529060010190602001808311611f2957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fec61214c565b73ffffffffffffffffffffffffffffffffffffffff1661200a6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613b36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790613956565b60405180910390fd5b6120d981612663565b50565b612b6781565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223383610ea4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061229282612154565b6122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890613a36565b60405180910390fd5b60006122dc83610ea4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234b57508373ffffffffffffffffffffffffffffffffffffffff1661233384610a44565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235c575061235b8185611f50565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238582610ea4565b73ffffffffffffffffffffffffffffffffffffffff16146123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290613b56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906139b6565b60405180910390fd5b612456838383612a09565b6124616000826121c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b19190613d8b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125089190613caa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125c9610e7a565b612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906138d6565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61264c61214c565b60405161265991906137e9565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612731610e7a565b15612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613a76565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127b561214c565b6040516127c291906137e9565b60405180910390a1565b6127e6828260405180602001604052806000815250612a61565b5050565b6001816000016000828254019250508190555050565b61280b848484612365565b61281784848484612abc565b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90613916565b60405180910390fd5b50505050565b606060008214156128a4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a04565b600082905060005b600082146128d65780806128bf90613ed8565b915050600a826128cf9190613d00565b91506128ac565b60008167ffffffffffffffff811115612918577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561294a5781602001600182028036833780820191505090505b5090505b600085146129fd576001826129639190613d8b565b9150600a856129729190613f21565b603061297e9190613caa565b60f81b8183815181106129ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f69190613d00565b945061294e565b8093505050505b919050565b612a14838383612c53565b612a1c610e7a565b15612a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a53906138b6565b60405180910390fd5b505050565b612a6b8383612c58565b612a786000848484612abc565b612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90613916565b60405180910390fd5b505050565b6000612add8473ffffffffffffffffffffffffffffffffffffffff16612e26565b15612c46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b0661214c565b8786866040518563ffffffff1660e01b8152600401612b289493929190613804565b602060405180830381600087803b158015612b4257600080fd5b505af1925050508015612b7357506040513d601f19601f82011682018060405250810190612b7091906132d0565b60015b612bf6573d8060008114612ba3576040519150601f19603f3d011682016040523d82523d6000602084013e612ba8565b606091505b50600081511415612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590613916565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4b565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbf90613af6565b60405180910390fd5b612cd181612154565b15612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0890613976565b60405180910390fd5b612d1d60008383612a09565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6d9190613caa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e4590613e75565b90600052602060002090601f016020900481019282612e675760008555612eae565b82601f10612e8057803560ff1916838001178555612eae565b82800160010185558215612eae579182015b82811115612ead578235825591602001919060010190612e92565b5b509050612ebb9190612ebf565b5090565b5b80821115612ed8576000816000905550600101612ec0565b5090565b6000612eef612eea84613c36565b613c11565b905082815260208101848484011115612f0757600080fd5b612f12848285613e33565b509392505050565b600081359050612f2981614611565b92915050565b60008083601f840112612f4157600080fd5b8235905067ffffffffffffffff811115612f5a57600080fd5b602083019150836020820283011115612f7257600080fd5b9250929050565b60008083601f840112612f8b57600080fd5b8235905067ffffffffffffffff811115612fa457600080fd5b602083019150836020820283011115612fbc57600080fd5b9250929050565b600081359050612fd281614628565b92915050565b600081359050612fe78161463f565b92915050565b600081519050612ffc8161463f565b92915050565b600082601f83011261301357600080fd5b8135613023848260208601612edc565b91505092915050565b60008083601f84011261303e57600080fd5b8235905067ffffffffffffffff81111561305757600080fd5b60208301915083600182028301111561306f57600080fd5b9250929050565b60008135905061308581614656565b92915050565b60006020828403121561309d57600080fd5b60006130ab84828501612f1a565b91505092915050565b600080604083850312156130c757600080fd5b60006130d585828601612f1a565b92505060206130e685828601612f1a565b9150509250929050565b60008060006060848603121561310557600080fd5b600061311386828701612f1a565b935050602061312486828701612f1a565b925050604061313586828701613076565b9150509250925092565b6000806000806080858703121561315557600080fd5b600061316387828801612f1a565b945050602061317487828801612f1a565b935050604061318587828801613076565b925050606085013567ffffffffffffffff8111156131a257600080fd5b6131ae87828801613002565b91505092959194509250565b600080604083850312156131cd57600080fd5b60006131db85828601612f1a565b92505060206131ec85828601612fc3565b9150509250929050565b6000806040838503121561320957600080fd5b600061321785828601612f1a565b925050602061322885828601613076565b9150509250929050565b6000806000806040858703121561324857600080fd5b600085013567ffffffffffffffff81111561326257600080fd5b61326e87828801612f2f565b9450945050602085013567ffffffffffffffff81111561328d57600080fd5b61329987828801612f79565b925092505092959194509250565b6000602082840312156132b957600080fd5b60006132c784828501612fd8565b91505092915050565b6000602082840312156132e257600080fd5b60006132f084828501612fed565b91505092915050565b6000806020838503121561330c57600080fd5b600083013567ffffffffffffffff81111561332657600080fd5b6133328582860161302c565b92509250509250929050565b60006020828403121561335057600080fd5b600061335e84828501613076565b91505092915050565b61337081613dbf565b82525050565b61337f81613dd1565b82525050565b600061339082613c67565b61339a8185613c7d565b93506133aa818560208601613e42565b6133b38161400e565b840191505092915050565b60006133c982613c72565b6133d38185613c8e565b93506133e3818560208601613e42565b6133ec8161400e565b840191505092915050565b600061340282613c72565b61340c8185613c9f565b935061341c818560208601613e42565b80840191505092915050565b6000613435602b83613c8e565b91506134408261401f565b604082019050919050565b6000613458601483613c8e565b91506134638261406e565b602082019050919050565b600061347b601783613c8e565b915061348682614097565b602082019050919050565b600061349e603283613c8e565b91506134a9826140c0565b604082019050919050565b60006134c1601f83613c8e565b91506134cc8261410f565b602082019050919050565b60006134e4602683613c8e565b91506134ef82614138565b604082019050919050565b6000613507601c83613c8e565b915061351282614187565b602082019050919050565b600061352a601c83613c8e565b9150613535826141b0565b602082019050919050565b600061354d602483613c8e565b9150613558826141d9565b604082019050919050565b6000613570601983613c8e565b915061357b82614228565b602082019050919050565b6000613593601283613c8e565b915061359e82614251565b602082019050919050565b60006135b6601483613c8e565b91506135c18261427a565b602082019050919050565b60006135d9602c83613c8e565b91506135e4826142a3565b604082019050919050565b60006135fc601283613c8e565b9150613607826142f2565b602082019050919050565b600061361f601083613c8e565b915061362a8261431b565b602082019050919050565b6000613642603883613c8e565b915061364d82614344565b604082019050919050565b6000613665602a83613c8e565b915061367082614393565b604082019050919050565b6000613688602983613c8e565b9150613693826143e2565b604082019050919050565b60006136ab602083613c8e565b91506136b682614431565b602082019050919050565b60006136ce602c83613c8e565b91506136d98261445a565b604082019050919050565b60006136f1602083613c8e565b91506136fc826144a9565b602082019050919050565b6000613714602983613c8e565b915061371f826144d2565b604082019050919050565b6000613737601983613c8e565b915061374282614521565b602082019050919050565b600061375a602183613c8e565b91506137658261454a565b604082019050919050565b600061377d603183613c8e565b915061378882614599565b604082019050919050565b60006137a0601583613c8e565b91506137ab826145e8565b602082019050919050565b6137bf81613e29565b82525050565b60006137d182856133f7565b91506137dd82846133f7565b91508190509392505050565b60006020820190506137fe6000830184613367565b92915050565b60006080820190506138196000830187613367565b6138266020830186613367565b61383360408301856137b6565b81810360608301526138458184613385565b905095945050505050565b60006040820190506138656000830185613367565b61387260208301846137b6565b9392505050565b600060208201905061388e6000830184613376565b92915050565b600060208201905081810360008301526138ae81846133be565b905092915050565b600060208201905081810360008301526138cf81613428565b9050919050565b600060208201905081810360008301526138ef8161344b565b9050919050565b6000602082019050818103600083015261390f8161346e565b9050919050565b6000602082019050818103600083015261392f81613491565b9050919050565b6000602082019050818103600083015261394f816134b4565b9050919050565b6000602082019050818103600083015261396f816134d7565b9050919050565b6000602082019050818103600083015261398f816134fa565b9050919050565b600060208201905081810360008301526139af8161351d565b9050919050565b600060208201905081810360008301526139cf81613540565b9050919050565b600060208201905081810360008301526139ef81613563565b9050919050565b60006020820190508181036000830152613a0f81613586565b9050919050565b60006020820190508181036000830152613a2f816135a9565b9050919050565b60006020820190508181036000830152613a4f816135cc565b9050919050565b60006020820190508181036000830152613a6f816135ef565b9050919050565b60006020820190508181036000830152613a8f81613612565b9050919050565b60006020820190508181036000830152613aaf81613635565b9050919050565b60006020820190508181036000830152613acf81613658565b9050919050565b60006020820190508181036000830152613aef8161367b565b9050919050565b60006020820190508181036000830152613b0f8161369e565b9050919050565b60006020820190508181036000830152613b2f816136c1565b9050919050565b60006020820190508181036000830152613b4f816136e4565b9050919050565b60006020820190508181036000830152613b6f81613707565b9050919050565b60006020820190508181036000830152613b8f8161372a565b9050919050565b60006020820190508181036000830152613baf8161374d565b9050919050565b60006020820190508181036000830152613bcf81613770565b9050919050565b60006020820190508181036000830152613bef81613793565b9050919050565b6000602082019050613c0b60008301846137b6565b92915050565b6000613c1b613c2c565b9050613c278282613ea7565b919050565b6000604051905090565b600067ffffffffffffffff821115613c5157613c50613fdf565b5b613c5a8261400e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cb582613e29565b9150613cc083613e29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf557613cf4613f52565b5b828201905092915050565b6000613d0b82613e29565b9150613d1683613e29565b925082613d2657613d25613f81565b5b828204905092915050565b6000613d3c82613e29565b9150613d4783613e29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8057613d7f613f52565b5b828202905092915050565b6000613d9682613e29565b9150613da183613e29565b925082821015613db457613db3613f52565b5b828203905092915050565b6000613dca82613e09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e60578082015181840152602081019050613e45565b83811115613e6f576000848401525b50505050565b60006002820490506001821680613e8d57607f821691505b60208210811415613ea157613ea0613fb0565b5b50919050565b613eb08261400e565b810181811067ffffffffffffffff82111715613ecf57613ece613fdf565b5b80604052505050565b6000613ee382613e29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1657613f15613f52565b5b600182019050919050565b6000613f2c82613e29565b9150613f3783613e29565b925082613f4757613f46613f81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f596f752068617665206e6f20746f6b656e73206c656674000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f7572206d617820746f6b656e20686f6c64696e6720657863656564656400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420323220746f6b656e7320617420612074696d6500000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d617820746f6b656e20737570706c7920657863656564656400000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b61461a81613dbf565b811461462557600080fd5b50565b61463181613dd1565b811461463c57600080fd5b50565b61464881613ddd565b811461465357600080fd5b50565b61465f81613e29565b811461466a57600080fd5b5056fea2646970667358221220a89adee8912519a96c67b04dbdeb5bdc414b35263cbc7168898835828602b53964736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001a53757065726c61746976652053656372657420536f6369657479000000000000000000000000000000000000000000000000000000000000000000000000000d53757065726c6174697665535300000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063cbce4c971161006f578063cbce4c9714610743578063e8a3d4851461076c578063e985e9c514610797578063f2fde38b146107d4578063f47c84c5146107fd5761021a565b8063a0712d681461067c578063a22cb46514610698578063b88d4fde146106c1578063c87b56dd146106ea578063c9b298f1146107275761021a565b806385fa8328116100f257806385fa8328146105a95780638d859f3e146105d25780638da5cb5b146105fd578063938e3d7b1461062857806395d89b41146106515761021a565b806370a0823114610527578063715018a6146105645780637bffb4ce1461057b5780638456cb59146105925761021a565b80633f4ba83a116101a65780635c975abb116101755780635c975abb1461044057806360d938dc1461046b5780636352211e1461049657806365407358146104d35780636e83843a146104fe5761021a565b80633f4ba83a146103ac57806342842e0e146103c357806355f804b3146103ec578063564566a8146104155761021a565b8063095ea7b3116101ed578063095ea7b3146102db57806312fb92e01461030457806318160ddd1461034157806323b872dd1461036c5780633ccfd60b146103955761021a565b806301ffc9a71461021f578063049c5c491461025c57806306fdde0314610273578063081812fc1461029e575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906132a7565b610828565b6040516102539190613879565b60405180910390f35b34801561026857600080fd5b5061027161090a565b005b34801561027f57600080fd5b506102886109b2565b6040516102959190613894565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c0919061333e565b610a44565b6040516102d291906137e9565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd91906131f6565b610ac9565b005b34801561031057600080fd5b5061032b6004803603810190610326919061308b565b610be1565b6040516103389190613bf6565b60405180910390f35b34801561034d57600080fd5b50610356610bf9565b6040516103639190613bf6565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e91906130f0565b610c0a565b005b3480156103a157600080fd5b506103aa610c6a565b005b3480156103b857600080fd5b506103c1610d2f565b005b3480156103cf57600080fd5b506103ea60048036038101906103e591906130f0565b610db5565b005b3480156103f857600080fd5b50610413600480360381019061040e91906132f9565b610dd5565b005b34801561042157600080fd5b5061042a610e67565b6040516104379190613879565b60405180910390f35b34801561044c57600080fd5b50610455610e7a565b6040516104629190613879565b60405180910390f35b34801561047757600080fd5b50610480610e91565b60405161048d9190613879565b60405180910390f35b3480156104a257600080fd5b506104bd60048036038101906104b8919061333e565b610ea4565b6040516104ca91906137e9565b60405180910390f35b3480156104df57600080fd5b506104e8610f56565b6040516104f59190613bf6565b60405180910390f35b34801561050a57600080fd5b50610525600480360381019061052091906132f9565b610f5b565b005b34801561053357600080fd5b5061054e6004803603810190610549919061308b565b610fed565b60405161055b9190613bf6565b60405180910390f35b34801561057057600080fd5b506105796110a5565b005b34801561058757600080fd5b5061059061112d565b005b34801561059e57600080fd5b506105a76111d5565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613232565b61125b565b005b3480156105de57600080fd5b506105e76113e1565b6040516105f49190613bf6565b60405180910390f35b34801561060957600080fd5b506106126113ed565b60405161061f91906137e9565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906132f9565b611417565b005b34801561065d57600080fd5b506106666114a9565b6040516106739190613894565b60405180910390f35b6106966004803603810190610691919061333e565b61153b565b005b3480156106a457600080fd5b506106bf60048036038101906106ba91906131ba565b61174b565b005b3480156106cd57600080fd5b506106e860048036038101906106e3919061313f565b6118cc565b005b3480156106f657600080fd5b50610711600480360381019061070c919061333e565b61192e565b60405161071e9190613894565b60405180910390f35b610741600480360381019061073c919061333e565b611ad3565b005b34801561074f57600080fd5b5061076a600480360381019061076591906131f6565b611daa565b005b34801561077857600080fd5b50610781611ebe565b60405161078e9190613894565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b991906130b4565b611f50565b6040516107cb9190613879565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f6919061308b565b611fe4565b005b34801561080957600080fd5b506108126120dc565b60405161081f9190613bf6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109035750610902826120e2565b5b9050919050565b61091261214c565b73ffffffffffffffffffffffffffffffffffffffff166109306113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90613b36565b60405180910390fd5b600860019054906101000a900460ff1615600860016101000a81548160ff021916908315150217905550565b6060600080546109c190613e75565b80601f01602080910402602001604051908101604052809291908181526020018280546109ed90613e75565b8015610a3a5780601f10610a0f57610100808354040283529160200191610a3a565b820191906000526020600020905b815481529060010190602001808311610a1d57829003601f168201915b5050505050905090565b6000610a4f82612154565b610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8590613b16565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ad482610ea4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3c90613b96565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6461214c565b73ffffffffffffffffffffffffffffffffffffffff161480610b935750610b9281610b8d61214c565b611f50565b5b610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc990613a96565b60405180910390fd5b610bdc83836121c0565b505050565b60096020528060005260406000206000915090505481565b6000610c056007612279565b905090565b610c1b610c1561214c565b82612287565b610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613bb6565b60405180910390fd5b610c65838383612365565b505050565b610c7261214c565b73ffffffffffffffffffffffffffffffffffffffff16610c906113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd90613b36565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d2c573d6000803e3d6000fd5b50565b610d3761214c565b73ffffffffffffffffffffffffffffffffffffffff16610d556113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290613b36565b60405180910390fd5b610db36125c1565b565b610dd0838383604051806020016040528060008152506118cc565b505050565b610ddd61214c565b73ffffffffffffffffffffffffffffffffffffffff16610dfb6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4890613b36565b60405180910390fd5b8181600b9190610e62929190612e39565b505050565b600860019054906101000a900460ff1681565b6000600660009054906101000a900460ff16905090565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490613ad6565b60405180910390fd5b80915050919050565b60de81565b610f6361214c565b73ffffffffffffffffffffffffffffffffffffffff16610f816113ed565b73ffffffffffffffffffffffffffffffffffffffff1614610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90613b36565b60405180910390fd5b8181600c9190610fe8929190612e39565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613ab6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ad61214c565b73ffffffffffffffffffffffffffffffffffffffff166110cb6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890613b36565b60405180910390fd5b61112b6000612663565b565b61113561214c565b73ffffffffffffffffffffffffffffffffffffffff166111536113ed565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613b36565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b6111dd61214c565b73ffffffffffffffffffffffffffffffffffffffff166111fb6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613b36565b60405180910390fd5b611259612729565b565b61126361214c565b73ffffffffffffffffffffffffffffffffffffffff166112816113ed565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613b36565b60405180910390fd5b8181905084849050146112e957600080fd5b60005b848490508110156113da57828282818110611330577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560096000878785818110611374577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611389919061308b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806113d290613ed8565b9150506112ec565b5050505050565b670118aa14d941800081565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61141f61214c565b73ffffffffffffffffffffffffffffffffffffffff1661143d6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a90613b36565b60405180910390fd5b8181600a91906114a4929190612e39565b505050565b6060600180546114b890613e75565b80601f01602080910402602001604051908101604052809291908181526020018280546114e490613e75565b80156115315780601f1061150657610100808354040283529160200191611531565b820191906000526020600020905b81548152906001019060200180831161151457829003601f168201915b5050505050905090565b600860019054906101000a900460ff1661158a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611581906139f6565b60405180910390fd5b60168111156115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613996565b60405180910390fd5b60de816115da33610fed565b6115e49190613caa565b1115611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90613936565b60405180910390fd5b612b67816116336007612279565b61163d9190613caa565b1061167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490613b76565b60405180910390fd5b670118aa14d9418000816116919190613d31565b3410156116d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ca90613a56565b60405180910390fd5b60005b8181101561170e576116f1336116ec6007612279565b6127cc565b6116fb60076127ea565b808061170690613ed8565b9150506116d6565b507f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3382604051611740929190613850565b60405180910390a150565b61175361214c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b8906139d6565b60405180910390fd5b80600560006117ce61214c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661187b61214c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c09190613879565b60405180910390a35050565b6118dd6118d761214c565b83612287565b61191c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191390613bb6565b60405180910390fd5b61192884848484612800565b50505050565b606061193982612154565b611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f90613a16565b60405180910390fd5b6000600c805461198790613e75565b80601f01602080910402602001604051908101604052809291908181526020018280546119b390613e75565b8015611a005780601f106119d557610100808354040283529160200191611a00565b820191906000526020600020905b8154815290600101906020018083116119e357829003601f168201915b505050505090506000815111611aa057600b8054611a1d90613e75565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4990613e75565b8015611a965780601f10611a6b57610100808354040283529160200191611a96565b820191906000526020600020905b815481529060010190602001808311611a7957829003601f168201915b5050505050611acb565b80611aaa8461285c565b604051602001611abb9291906137c5565b6040516020818303038152906040525b915050919050565b600860009054906101000a900460ff16611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990613bd6565b60405180910390fd5b6016811115611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d90613996565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111611bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be4906138f6565b60405180910390fd5b80821115611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2790613936565b60405180910390fd5b612b6782611c3e6007612279565b611c489190613caa565b10611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613b76565b60405180910390fd5b670118aa14d941800082611c9c9190613d31565b341015611cde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd590613a56565b60405180910390fd5b60005b82811015611d2857611cfc33611cf76007612279565b6127cc565b611d0660076127ea565b600182611d139190613d8b565b91508080611d2090613ed8565b915050611ce1565b5080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a33383604051611d9e929190613850565b60405180910390a15050565b611db261214c565b73ffffffffffffffffffffffffffffffffffffffff16611dd06113ed565b73ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d90613b36565b60405180910390fd5b612b6781611e346007612279565b611e3e9190613caa565b10611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590613b76565b60405180910390fd5b60005b81811015611eb957611e9c83611e976007612279565b6127cc565b611ea660076127ea565b8080611eb190613ed8565b915050611e81565b505050565b6060600a8054611ecd90613e75565b80601f0160208091040260200160405190810160405280929190818152602001828054611ef990613e75565b8015611f465780601f10611f1b57610100808354040283529160200191611f46565b820191906000526020600020905b815481529060010190602001808311611f2957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611fec61214c565b73ffffffffffffffffffffffffffffffffffffffff1661200a6113ed565b73ffffffffffffffffffffffffffffffffffffffff1614612060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205790613b36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c790613956565b60405180910390fd5b6120d981612663565b50565b612b6781565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661223383610ea4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061229282612154565b6122d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c890613a36565b60405180910390fd5b60006122dc83610ea4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061234b57508373ffffffffffffffffffffffffffffffffffffffff1661233384610a44565b73ffffffffffffffffffffffffffffffffffffffff16145b8061235c575061235b8185611f50565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661238582610ea4565b73ffffffffffffffffffffffffffffffffffffffff16146123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d290613b56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561244b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612442906139b6565b60405180910390fd5b612456838383612a09565b6124616000826121c0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124b19190613d8b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125089190613caa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6125c9610e7a565b612608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ff906138d6565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61264c61214c565b60405161265991906137e9565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612731610e7a565b15612771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613a76565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127b561214c565b6040516127c291906137e9565b60405180910390a1565b6127e6828260405180602001604052806000815250612a61565b5050565b6001816000016000828254019250508190555050565b61280b848484612365565b61281784848484612abc565b612856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284d90613916565b60405180910390fd5b50505050565b606060008214156128a4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a04565b600082905060005b600082146128d65780806128bf90613ed8565b915050600a826128cf9190613d00565b91506128ac565b60008167ffffffffffffffff811115612918577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561294a5781602001600182028036833780820191505090505b5090505b600085146129fd576001826129639190613d8b565b9150600a856129729190613f21565b603061297e9190613caa565b60f81b8183815181106129ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f69190613d00565b945061294e565b8093505050505b919050565b612a14838383612c53565b612a1c610e7a565b15612a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a53906138b6565b60405180910390fd5b505050565b612a6b8383612c58565b612a786000848484612abc565b612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90613916565b60405180910390fd5b505050565b6000612add8473ffffffffffffffffffffffffffffffffffffffff16612e26565b15612c46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b0661214c565b8786866040518563ffffffff1660e01b8152600401612b289493929190613804565b602060405180830381600087803b158015612b4257600080fd5b505af1925050508015612b7357506040513d601f19601f82011682018060405250810190612b7091906132d0565b60015b612bf6573d8060008114612ba3576040519150601f19603f3d011682016040523d82523d6000602084013e612ba8565b606091505b50600081511415612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590613916565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c4b565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cbf90613af6565b60405180910390fd5b612cd181612154565b15612d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0890613976565b60405180910390fd5b612d1d60008383612a09565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6d9190613caa565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e4590613e75565b90600052602060002090601f016020900481019282612e675760008555612eae565b82601f10612e8057803560ff1916838001178555612eae565b82800160010185558215612eae579182015b82811115612ead578235825591602001919060010190612e92565b5b509050612ebb9190612ebf565b5090565b5b80821115612ed8576000816000905550600101612ec0565b5090565b6000612eef612eea84613c36565b613c11565b905082815260208101848484011115612f0757600080fd5b612f12848285613e33565b509392505050565b600081359050612f2981614611565b92915050565b60008083601f840112612f4157600080fd5b8235905067ffffffffffffffff811115612f5a57600080fd5b602083019150836020820283011115612f7257600080fd5b9250929050565b60008083601f840112612f8b57600080fd5b8235905067ffffffffffffffff811115612fa457600080fd5b602083019150836020820283011115612fbc57600080fd5b9250929050565b600081359050612fd281614628565b92915050565b600081359050612fe78161463f565b92915050565b600081519050612ffc8161463f565b92915050565b600082601f83011261301357600080fd5b8135613023848260208601612edc565b91505092915050565b60008083601f84011261303e57600080fd5b8235905067ffffffffffffffff81111561305757600080fd5b60208301915083600182028301111561306f57600080fd5b9250929050565b60008135905061308581614656565b92915050565b60006020828403121561309d57600080fd5b60006130ab84828501612f1a565b91505092915050565b600080604083850312156130c757600080fd5b60006130d585828601612f1a565b92505060206130e685828601612f1a565b9150509250929050565b60008060006060848603121561310557600080fd5b600061311386828701612f1a565b935050602061312486828701612f1a565b925050604061313586828701613076565b9150509250925092565b6000806000806080858703121561315557600080fd5b600061316387828801612f1a565b945050602061317487828801612f1a565b935050604061318587828801613076565b925050606085013567ffffffffffffffff8111156131a257600080fd5b6131ae87828801613002565b91505092959194509250565b600080604083850312156131cd57600080fd5b60006131db85828601612f1a565b92505060206131ec85828601612fc3565b9150509250929050565b6000806040838503121561320957600080fd5b600061321785828601612f1a565b925050602061322885828601613076565b9150509250929050565b6000806000806040858703121561324857600080fd5b600085013567ffffffffffffffff81111561326257600080fd5b61326e87828801612f2f565b9450945050602085013567ffffffffffffffff81111561328d57600080fd5b61329987828801612f79565b925092505092959194509250565b6000602082840312156132b957600080fd5b60006132c784828501612fd8565b91505092915050565b6000602082840312156132e257600080fd5b60006132f084828501612fed565b91505092915050565b6000806020838503121561330c57600080fd5b600083013567ffffffffffffffff81111561332657600080fd5b6133328582860161302c565b92509250509250929050565b60006020828403121561335057600080fd5b600061335e84828501613076565b91505092915050565b61337081613dbf565b82525050565b61337f81613dd1565b82525050565b600061339082613c67565b61339a8185613c7d565b93506133aa818560208601613e42565b6133b38161400e565b840191505092915050565b60006133c982613c72565b6133d38185613c8e565b93506133e3818560208601613e42565b6133ec8161400e565b840191505092915050565b600061340282613c72565b61340c8185613c9f565b935061341c818560208601613e42565b80840191505092915050565b6000613435602b83613c8e565b91506134408261401f565b604082019050919050565b6000613458601483613c8e565b91506134638261406e565b602082019050919050565b600061347b601783613c8e565b915061348682614097565b602082019050919050565b600061349e603283613c8e565b91506134a9826140c0565b604082019050919050565b60006134c1601f83613c8e565b91506134cc8261410f565b602082019050919050565b60006134e4602683613c8e565b91506134ef82614138565b604082019050919050565b6000613507601c83613c8e565b915061351282614187565b602082019050919050565b600061352a601c83613c8e565b9150613535826141b0565b602082019050919050565b600061354d602483613c8e565b9150613558826141d9565b604082019050919050565b6000613570601983613c8e565b915061357b82614228565b602082019050919050565b6000613593601283613c8e565b915061359e82614251565b602082019050919050565b60006135b6601483613c8e565b91506135c18261427a565b602082019050919050565b60006135d9602c83613c8e565b91506135e4826142a3565b604082019050919050565b60006135fc601283613c8e565b9150613607826142f2565b602082019050919050565b600061361f601083613c8e565b915061362a8261431b565b602082019050919050565b6000613642603883613c8e565b915061364d82614344565b604082019050919050565b6000613665602a83613c8e565b915061367082614393565b604082019050919050565b6000613688602983613c8e565b9150613693826143e2565b604082019050919050565b60006136ab602083613c8e565b91506136b682614431565b602082019050919050565b60006136ce602c83613c8e565b91506136d98261445a565b604082019050919050565b60006136f1602083613c8e565b91506136fc826144a9565b602082019050919050565b6000613714602983613c8e565b915061371f826144d2565b604082019050919050565b6000613737601983613c8e565b915061374282614521565b602082019050919050565b600061375a602183613c8e565b91506137658261454a565b604082019050919050565b600061377d603183613c8e565b915061378882614599565b604082019050919050565b60006137a0601583613c8e565b91506137ab826145e8565b602082019050919050565b6137bf81613e29565b82525050565b60006137d182856133f7565b91506137dd82846133f7565b91508190509392505050565b60006020820190506137fe6000830184613367565b92915050565b60006080820190506138196000830187613367565b6138266020830186613367565b61383360408301856137b6565b81810360608301526138458184613385565b905095945050505050565b60006040820190506138656000830185613367565b61387260208301846137b6565b9392505050565b600060208201905061388e6000830184613376565b92915050565b600060208201905081810360008301526138ae81846133be565b905092915050565b600060208201905081810360008301526138cf81613428565b9050919050565b600060208201905081810360008301526138ef8161344b565b9050919050565b6000602082019050818103600083015261390f8161346e565b9050919050565b6000602082019050818103600083015261392f81613491565b9050919050565b6000602082019050818103600083015261394f816134b4565b9050919050565b6000602082019050818103600083015261396f816134d7565b9050919050565b6000602082019050818103600083015261398f816134fa565b9050919050565b600060208201905081810360008301526139af8161351d565b9050919050565b600060208201905081810360008301526139cf81613540565b9050919050565b600060208201905081810360008301526139ef81613563565b9050919050565b60006020820190508181036000830152613a0f81613586565b9050919050565b60006020820190508181036000830152613a2f816135a9565b9050919050565b60006020820190508181036000830152613a4f816135cc565b9050919050565b60006020820190508181036000830152613a6f816135ef565b9050919050565b60006020820190508181036000830152613a8f81613612565b9050919050565b60006020820190508181036000830152613aaf81613635565b9050919050565b60006020820190508181036000830152613acf81613658565b9050919050565b60006020820190508181036000830152613aef8161367b565b9050919050565b60006020820190508181036000830152613b0f8161369e565b9050919050565b60006020820190508181036000830152613b2f816136c1565b9050919050565b60006020820190508181036000830152613b4f816136e4565b9050919050565b60006020820190508181036000830152613b6f81613707565b9050919050565b60006020820190508181036000830152613b8f8161372a565b9050919050565b60006020820190508181036000830152613baf8161374d565b9050919050565b60006020820190508181036000830152613bcf81613770565b9050919050565b60006020820190508181036000830152613bef81613793565b9050919050565b6000602082019050613c0b60008301846137b6565b92915050565b6000613c1b613c2c565b9050613c278282613ea7565b919050565b6000604051905090565b600067ffffffffffffffff821115613c5157613c50613fdf565b5b613c5a8261400e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cb582613e29565b9150613cc083613e29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cf557613cf4613f52565b5b828201905092915050565b6000613d0b82613e29565b9150613d1683613e29565b925082613d2657613d25613f81565b5b828204905092915050565b6000613d3c82613e29565b9150613d4783613e29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d8057613d7f613f52565b5b828202905092915050565b6000613d9682613e29565b9150613da183613e29565b925082821015613db457613db3613f52565b5b828203905092915050565b6000613dca82613e09565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e60578082015181840152602081019050613e45565b83811115613e6f576000848401525b50505050565b60006002820490506001821680613e8d57607f821691505b60208210811415613ea157613ea0613fb0565b5b50919050565b613eb08261400e565b810181811067ffffffffffffffff82111715613ecf57613ece613fdf565b5b80604052505050565b6000613ee382613e29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1657613f15613f52565b5b600182019050919050565b6000613f2c82613e29565b9150613f3783613e29565b925082613f4757613f46613f81565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f596f752068617665206e6f20746f6b656e73206c656674000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f7572206d617820746f6b656e20686f6c64696e6720657863656564656400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420323220746f6b656e7320617420612074696d6500000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f74206578697374000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d617820746f6b656e20737570706c7920657863656564656400000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b61461a81613dbf565b811461462557600080fd5b50565b61463181613dd1565b811461463c57600080fd5b50565b61464881613ddd565b811461465357600080fd5b50565b61465f81613e29565b811461466a57600080fd5b5056fea2646970667358221220a89adee8912519a96c67b04dbdeb5bdc414b35263cbc7168898835828602b53964736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001a53757065726c61746976652053656372657420536f6369657479000000000000000000000000000000000000000000000000000000000000000000000000000d53757065726c6174697665535300000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Superlative Secret Society
Arg [1] : symbol (string): SuperlativeSS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [3] : 53757065726c61746976652053656372657420536f6369657479000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 53757065726c6174697665535300000000000000000000000000000000000000


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.