ETH Price: $3,258.31 (-4.46%)
Gas: 9 Gwei

Token

BlueChip Tracker Pass (BCTP)
 

Overview

Max Total Supply

0 BCTP

Holders

46

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bowse.eth
Balance
1 BCTP
0x21dc1aDe6498739F95B69d43Bb4Ad6063D2ad7B1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BlueChipTrackerPass

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

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

contract BlueChipTrackerPass is ERC721, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter public tokenIdCounter;

    uint256 public MAX_MINTS = 4;
    uint256 public MINT_PRICE = 0.025 ether;
    uint256 public TOTAL_SUPPLY = 2048;

    bool public whitelistSaleActive = true;

    mapping(address => bool) public whitelistMembers;

    constructor(address[] memory _whitelistMembers) ERC721("BlueChip Tracker Pass", "BCTP") {
        for (uint i = 0; i < _whitelistMembers.length; i++) {
            whitelistMembers[_whitelistMembers[i]] = true;
        }
    }

    function _baseURI() internal pure virtual override returns (string memory) {
        return "ipfs://bafybeifscf2it4fdhud5zg5euvr5mou3orpocegqtzy7xudolpyae42pgy/";
    }

    function mint(uint _quantity) external payable {
        require(!whitelistSaleActive, "Whitelist is enabled");
        require(msg.value >= MINT_PRICE * _quantity, "Insufficient ETH amount");
        require(_quantity <= MAX_MINTS, "Max mint per TX reached");
        require(tokenIdCounter.current() + _quantity <= TOTAL_SUPPLY, "Reached total supply");

        for (uint i; i < _quantity; i++) {
            tokenIdCounter.increment();
            uint256 tokenId = tokenIdCounter.current();
            _mint(msg.sender, tokenId);
        }
    }

    function whitelistMint() external {
        require(whitelistSaleActive, "Whitelist minting disabled");
        require(whitelistMembers[msg.sender], "Not whitelisted");

        whitelistMembers[msg.sender] = false;

        tokenIdCounter.increment();
        uint256 tokenId = tokenIdCounter.current();
        _mint(msg.sender, tokenId);
    }

    function ownerMint(address to, uint _quantity) external onlyOwner {
        require(tokenIdCounter.current() + _quantity <= TOTAL_SUPPLY, "Reached total supply");

        for (uint i; i < _quantity; i++) {
            tokenIdCounter.increment();
            uint256 tokenId = tokenIdCounter.current();
            _mint(to, tokenId);
        }
    }

    function flipWhitelistSaleActive() external onlyOwner {
        whitelistSaleActive = !whitelistSaleActive;
    }

    function withdraw(address _to, uint _amount) external onlyOwner {
        require(address(this).balance >= _amount, "Not enough ETH in the contract");
        (bool success,) = _to.call{value : _amount}("");
        require(success, "Failed to send Ether");
    }
}

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

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 overridden 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 {
        _setApprovalForAll(_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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

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 11 of 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_whitelistMembers","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMembers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260046008556658d15e17628000600955610800600a556001600b60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b5060405162003ec738038062003ec7833981810160405281019062000068919062000423565b6040518060400160405280601581526020017f426c75654368697020547261636b6572205061737300000000000000000000008152506040518060400160405280600481526020017f42435450000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ec929190620002ba565b50806001908051906020019062000105929190620002ba565b505050620001286200011c620001ec60201b60201c565b620001f460201b60201c565b60005b8151811015620001e4576001600c600084848151811062000175577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620001db906200056a565b9150506200012b565b505062000670565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c890620004fe565b90600052602060002090601f016020900481019282620002ec576000855562000338565b82601f106200030757805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003375782518255916020019190600101906200031a565b5b5090506200034791906200034b565b5090565b5b80821115620003665760008160009055506001016200034c565b5090565b6000620003816200037b8462000491565b62000468565b90508083825260208201905082856020860282011115620003a157600080fd5b60005b85811015620003d55781620003ba8882620003df565b845260208401935060208301925050600181019050620003a4565b5050509392505050565b600081519050620003f08162000656565b92915050565b600082601f8301126200040857600080fd5b81516200041a8482602086016200036a565b91505092915050565b6000602082840312156200043657600080fd5b600082015167ffffffffffffffff8111156200045157600080fd5b6200045f84828501620003f6565b91505092915050565b60006200047462000487565b905062000482828262000534565b919050565b6000604051905090565b600067ffffffffffffffff821115620004af57620004ae62000616565b5b602082029050602081019050919050565b6000620004cd82620004d4565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200051757607f821691505b602082108114156200052e576200052d620005e7565b5b50919050565b6200053f8262000645565b810181811067ffffffffffffffff8211171562000561576200056062000616565b5b80604052505050565b60006200057782620004f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620005ad57620005ac620005b8565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200066181620004c0565b81146200066d57600080fd5b50565b61384780620006806000396000f3fe60806040526004361061019c5760003560e01c8063902d55a5116100ec578063c87b56dd1161008a578063f2fde38b11610064578063f2fde38b146105a7578063f3fef3a3146105d0578063f6ecf215146105f9578063fc18dae0146106105761019c565b8063c87b56dd14610502578063cce132d11461053f578063e985e9c51461056a5761019c565b8063a0712d68116100c6578063a0712d6814610469578063a22cb46514610485578063b88d4fde146104ae578063c002d23d146104d75761019c565b8063902d55a5146103e857806395d89b411461041357806398bdf6f51461043e5761019c565b806342842e0e1161015957806370a082311161013357806370a0823114610352578063715018a61461038f578063804f43cd146103a65780638da5cb5b146103bd5761019c565b806342842e0e146102c3578063484b973c146102ec5780636352211e146103155761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806323b872dd1461026f5780633ad7f56c14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612508565b61064d565b6040516101d59190612a5e565b60405180910390f35b3480156101ea57600080fd5b506101f361072f565b6040516102009190612a79565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061255a565b6107c1565b60405161023d91906129f7565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906124cc565b610846565b005b34801561027b57600080fd5b50610296600480360381019061029191906123c6565b61095e565b005b3480156102a457600080fd5b506102ad6109be565b6040516102ba9190612a5e565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e591906123c6565b6109d1565b005b3480156102f857600080fd5b50610313600480360381019061030e91906124cc565b6109f1565b005b34801561032157600080fd5b5061033c6004803603810190610337919061255a565b610b0c565b60405161034991906129f7565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612361565b610bbe565b6040516103869190612d9b565b60405180910390f35b34801561039b57600080fd5b506103a4610c76565b005b3480156103b257600080fd5b506103bb610cfe565b005b3480156103c957600080fd5b506103d2610e56565b6040516103df91906129f7565b60405180910390f35b3480156103f457600080fd5b506103fd610e80565b60405161040a9190612d9b565b60405180910390f35b34801561041f57600080fd5b50610428610e86565b6040516104359190612a79565b60405180910390f35b34801561044a57600080fd5b50610453610f18565b6040516104609190612d9b565b60405180910390f35b610483600480360381019061047e919061255a565b610f24565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612490565b6110a7565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612415565b6110bd565b005b3480156104e357600080fd5b506104ec61111f565b6040516104f99190612d9b565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061255a565b611125565b6040516105369190612a79565b60405180910390f35b34801561054b57600080fd5b506105546111cc565b6040516105619190612d9b565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c919061238a565b6111d2565b60405161059e9190612a5e565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612361565b611266565b005b3480156105dc57600080fd5b506105f760048036038101906105f291906124cc565b61135e565b005b34801561060557600080fd5b5061060e6114ce565b005b34801561061c57600080fd5b5061063760048036038101906106329190612361565b611576565b6040516106449190612a5e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610728575061072782611596565b5b9050919050565b60606000805461073e90613025565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90613025565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b60006107cc82611600565b61080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290612c9b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085182610b0c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990612d3b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e161166c565b73ffffffffffffffffffffffffffffffffffffffff161480610910575061090f8161090a61166c565b6111d2565b5b61094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690612bdb565b60405180910390fd5b6109598383611674565b505050565b61096f61096961166c565b8261172d565b6109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590612d5b565b60405180910390fd5b6109b983838361180b565b505050565b600b60009054906101000a900460ff1681565b6109ec838383604051806020016040528060008152506110bd565b505050565b6109f961166c565b73ffffffffffffffffffffffffffffffffffffffff16610a17610e56565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490612cdb565b60405180910390fd5b600a5481610a7b6007611a72565b610a859190612e5a565b1115610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90612bfb565b60405180910390fd5b60005b81811015610b0757610adb6007611a80565b6000610ae76007611a72565b9050610af38482611a96565b508080610aff90613088565b915050610ac9565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90612c5b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690612c3b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c7e61166c565b73ffffffffffffffffffffffffffffffffffffffff16610c9c610e56565b73ffffffffffffffffffffffffffffffffffffffff1614610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990612cdb565b60405180910390fd5b610cfc6000611c70565b565b600b60009054906101000a900460ff16610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490612d1b565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090612c1b565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e3b6007611a80565b6000610e476007611a72565b9050610e533382611a96565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b606060018054610e9590613025565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190613025565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b60078060000154905081565b600b60009054906101000a900460ff1615610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90612bbb565b60405180910390fd5b80600954610f829190612ee1565b341015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612d7b565b60405180910390fd5b600854811115611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612cbb565b60405180910390fd5b600a54816110176007611a72565b6110219190612e5a565b1115611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612bfb565b60405180910390fd5b60005b818110156110a3576110776007611a80565b60006110836007611a72565b905061108f3382611a96565b50808061109b90613088565b915050611065565b5050565b6110b96110b261166c565b8383611d36565b5050565b6110ce6110c861166c565b8361172d565b61110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612d5b565b60405180910390fd5b61111984848484611ea3565b50505050565b60095481565b606061113082611600565b61116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690612cfb565b60405180910390fd5b6000611179611eff565b9050600081511161119957604051806020016040528060008152506111c4565b806111a384611f1f565b6040516020016111b49291906129be565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126e61166c565b73ffffffffffffffffffffffffffffffffffffffff1661128c610e56565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612cdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990612abb565b60405180910390fd5b61135b81611c70565b50565b61136661166c565b73ffffffffffffffffffffffffffffffffffffffff16611384610e56565b73ffffffffffffffffffffffffffffffffffffffff16146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190612cdb565b60405180910390fd5b8047101561141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490612b7b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611443906129e2565b60006040518083038185875af1925050503d8060008114611480576040519150601f19603f3d011682016040523d82523d6000602084013e611485565b606091505b50509050806114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090612b1b565b60405180910390fd5b505050565b6114d661166c565b73ffffffffffffffffffffffffffffffffffffffff166114f4610e56565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190612cdb565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600c6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116e783610b0c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061173882611600565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90612b9b565b60405180910390fd5b600061178283610b0c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117c457506117c381856111d2565b5b8061180257508373ffffffffffffffffffffffffffffffffffffffff166117ea846107c1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661182b82610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890612adb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890612b3b565b60405180910390fd5b6118fc8383836120cc565b611907600082611674565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119579190612f3b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ae9190612e5a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6d8383836120d1565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90612c7b565b60405180910390fd5b611b0f81611600565b15611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690612afb565b60405180910390fd5b611b5b600083836120cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bab9190612e5a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c6c600083836120d1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90612b5b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e969190612a5e565b60405180910390a3505050565b611eae84848461180b565b611eba848484846120d6565b611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090612a9b565b60405180910390fd5b50505050565b60606040518060800160405280604381526020016137cf60439139905090565b60606000821415611f67576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c7565b600082905060005b60008214611f99578080611f8290613088565b915050600a82611f929190612eb0565b9150611f6f565b60008167ffffffffffffffff811115611fdb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561200d5781602001600182028036833780820191505090505b5090505b600085146120c0576001826120269190612f3b565b9150600a8561203591906130d1565b60306120419190612e5a565b60f81b81838151811061207d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b99190612eb0565b9450612011565b8093505050505b919050565b505050565b505050565b60006120f78473ffffffffffffffffffffffffffffffffffffffff1661226d565b15612260578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212061166c565b8786866040518563ffffffff1660e01b81526004016121429493929190612a12565b602060405180830381600087803b15801561215c57600080fd5b505af192505050801561218d57506040513d601f19601f8201168201806040525081019061218a9190612531565b60015b612210573d80600081146121bd576040519150601f19603f3d011682016040523d82523d6000602084013e6121c2565b606091505b50600081511415612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90612a9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612265565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006122a361229e84612ddb565b612db6565b9050828152602081018484840111156122bb57600080fd5b6122c6848285612fe3565b509392505050565b6000813590506122dd81613772565b92915050565b6000813590506122f281613789565b92915050565b600081359050612307816137a0565b92915050565b60008151905061231c816137a0565b92915050565b600082601f83011261233357600080fd5b8135612343848260208601612290565b91505092915050565b60008135905061235b816137b7565b92915050565b60006020828403121561237357600080fd5b6000612381848285016122ce565b91505092915050565b6000806040838503121561239d57600080fd5b60006123ab858286016122ce565b92505060206123bc858286016122ce565b9150509250929050565b6000806000606084860312156123db57600080fd5b60006123e9868287016122ce565b93505060206123fa868287016122ce565b925050604061240b8682870161234c565b9150509250925092565b6000806000806080858703121561242b57600080fd5b6000612439878288016122ce565b945050602061244a878288016122ce565b935050604061245b8782880161234c565b925050606085013567ffffffffffffffff81111561247857600080fd5b61248487828801612322565b91505092959194509250565b600080604083850312156124a357600080fd5b60006124b1858286016122ce565b92505060206124c2858286016122e3565b9150509250929050565b600080604083850312156124df57600080fd5b60006124ed858286016122ce565b92505060206124fe8582860161234c565b9150509250929050565b60006020828403121561251a57600080fd5b6000612528848285016122f8565b91505092915050565b60006020828403121561254357600080fd5b60006125518482850161230d565b91505092915050565b60006020828403121561256c57600080fd5b600061257a8482850161234c565b91505092915050565b61258c81612f6f565b82525050565b61259b81612f81565b82525050565b60006125ac82612e0c565b6125b68185612e22565b93506125c6818560208601612ff2565b6125cf816131be565b840191505092915050565b60006125e582612e17565b6125ef8185612e3e565b93506125ff818560208601612ff2565b612608816131be565b840191505092915050565b600061261e82612e17565b6126288185612e4f565b9350612638818560208601612ff2565b80840191505092915050565b6000612651603283612e3e565b915061265c826131cf565b604082019050919050565b6000612674602683612e3e565b915061267f8261321e565b604082019050919050565b6000612697602583612e3e565b91506126a28261326d565b604082019050919050565b60006126ba601c83612e3e565b91506126c5826132bc565b602082019050919050565b60006126dd601483612e3e565b91506126e8826132e5565b602082019050919050565b6000612700602483612e3e565b915061270b8261330e565b604082019050919050565b6000612723601983612e3e565b915061272e8261335d565b602082019050919050565b6000612746601e83612e3e565b915061275182613386565b602082019050919050565b6000612769602c83612e3e565b9150612774826133af565b604082019050919050565b600061278c601483612e3e565b9150612797826133fe565b602082019050919050565b60006127af603883612e3e565b91506127ba82613427565b604082019050919050565b60006127d2601483612e3e565b91506127dd82613476565b602082019050919050565b60006127f5600f83612e3e565b91506128008261349f565b602082019050919050565b6000612818602a83612e3e565b9150612823826134c8565b604082019050919050565b600061283b602983612e3e565b915061284682613517565b604082019050919050565b600061285e602083612e3e565b915061286982613566565b602082019050919050565b6000612881602c83612e3e565b915061288c8261358f565b604082019050919050565b60006128a4601783612e3e565b91506128af826135de565b602082019050919050565b60006128c7602083612e3e565b91506128d282613607565b602082019050919050565b60006128ea602f83612e3e565b91506128f582613630565b604082019050919050565b600061290d601a83612e3e565b91506129188261367f565b602082019050919050565b6000612930602183612e3e565b915061293b826136a8565b604082019050919050565b6000612953600083612e33565b915061295e826136f7565b600082019050919050565b6000612976603183612e3e565b9150612981826136fa565b604082019050919050565b6000612999601783612e3e565b91506129a482613749565b602082019050919050565b6129b881612fd9565b82525050565b60006129ca8285612613565b91506129d68284612613565b91508190509392505050565b60006129ed82612946565b9150819050919050565b6000602082019050612a0c6000830184612583565b92915050565b6000608082019050612a276000830187612583565b612a346020830186612583565b612a4160408301856129af565b8181036060830152612a5381846125a1565b905095945050505050565b6000602082019050612a736000830184612592565b92915050565b60006020820190508181036000830152612a9381846125da565b905092915050565b60006020820190508181036000830152612ab481612644565b9050919050565b60006020820190508181036000830152612ad481612667565b9050919050565b60006020820190508181036000830152612af48161268a565b9050919050565b60006020820190508181036000830152612b14816126ad565b9050919050565b60006020820190508181036000830152612b34816126d0565b9050919050565b60006020820190508181036000830152612b54816126f3565b9050919050565b60006020820190508181036000830152612b7481612716565b9050919050565b60006020820190508181036000830152612b9481612739565b9050919050565b60006020820190508181036000830152612bb48161275c565b9050919050565b60006020820190508181036000830152612bd48161277f565b9050919050565b60006020820190508181036000830152612bf4816127a2565b9050919050565b60006020820190508181036000830152612c14816127c5565b9050919050565b60006020820190508181036000830152612c34816127e8565b9050919050565b60006020820190508181036000830152612c548161280b565b9050919050565b60006020820190508181036000830152612c748161282e565b9050919050565b60006020820190508181036000830152612c9481612851565b9050919050565b60006020820190508181036000830152612cb481612874565b9050919050565b60006020820190508181036000830152612cd481612897565b9050919050565b60006020820190508181036000830152612cf4816128ba565b9050919050565b60006020820190508181036000830152612d14816128dd565b9050919050565b60006020820190508181036000830152612d3481612900565b9050919050565b60006020820190508181036000830152612d5481612923565b9050919050565b60006020820190508181036000830152612d7481612969565b9050919050565b60006020820190508181036000830152612d948161298c565b9050919050565b6000602082019050612db060008301846129af565b92915050565b6000612dc0612dd1565b9050612dcc8282613057565b919050565b6000604051905090565b600067ffffffffffffffff821115612df657612df561318f565b5b612dff826131be565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6582612fd9565b9150612e7083612fd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ea557612ea4613102565b5b828201905092915050565b6000612ebb82612fd9565b9150612ec683612fd9565b925082612ed657612ed5613131565b5b828204905092915050565b6000612eec82612fd9565b9150612ef783612fd9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3057612f2f613102565b5b828202905092915050565b6000612f4682612fd9565b9150612f5183612fd9565b925082821015612f6457612f63613102565b5b828203905092915050565b6000612f7a82612fb9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613010578082015181840152602081019050612ff5565b8381111561301f576000848401525b50505050565b6000600282049050600182168061303d57607f821691505b6020821081141561305157613050613160565b5b50919050565b613060826131be565b810181811067ffffffffffffffff8211171561307f5761307e61318f565b5b80604052505050565b600061309382612fd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130c6576130c5613102565b5b600182019050919050565b60006130dc82612fd9565b91506130e783612fd9565b9250826130f7576130f6613131565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f7567682045544820696e2074686520636f6e74726163740000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f57686974656c69737420697320656e61626c6564000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5265616368656420746f74616c20737570706c79000000000000000000000000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178206d696e74207065722054582072656163686564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e672064697361626c6564000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742045544820616d6f756e74000000000000000000600082015250565b61377b81612f6f565b811461378657600080fd5b50565b61379281612f81565b811461379d57600080fd5b50565b6137a981612f8d565b81146137b457600080fd5b50565b6137c081612fd9565b81146137cb57600080fd5b5056fe697066733a2f2f6261667962656966736366326974346664687564357a673565757672356d6f75336f72706f63656771747a79377875646f6c7079616534327067792fa264697066735822122018e43db4543f6e319691b71c35c02205611e66f90db6336f75b942a20fa4368864736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042000000000000000000000000aaceaca8836a2624ee782b6365737ca181db72ae00000000000000000000000021dc1ade6498739f95b69d43bb4ad6063d2ad7b1000000000000000000000000e769923e53f50bc2a4fae8cce134b8913aea9f850000000000000000000000006ea714732f4a4e6f27826fb187f99abcd58db0de000000000000000000000000b6a6456c8bd587d279ab1ab52b1b758894664446000000000000000000000000baaf31168c7f9963c2a62e55c7df79fac0523188000000000000000000000000a6d8d2360c0b291d4db3ad1a5f87fab2fd2dfa3300000000000000000000000016e4104e58f849826a1c9eb89cccca2d87549e490000000000000000000000008150d941f58c65919a456ceb315579e1b810048f000000000000000000000000c1528e6bdb812e9aa85ac97b78bb0794643f1c53000000000000000000000000cad621da75a66c7a8f4ff86d30a2bf981bfc8fdd0000000000000000000000006280f2212a0756502361c162c246cf4a25d7352d0000000000000000000000006394af05673f1249fe0ba04976f4f1d687c256bc000000000000000000000000c54d829b4a63f812d499e9c4f295e29d66d6d8db000000000000000000000000317249b8118f0df4c7c571a00d90017bb0ad24a2000000000000000000000000391c8f2d68c38d1fc60869800e65e8bcdf21cfc800000000000000000000000059ab8c4ae817afb4917913d506b37d5bb9ed3a12000000000000000000000000d139039ac4abe0d6cca88986b4bcc39edb81706400000000000000000000000074ca6cd8ac0d382da8f67ff18b42943e8305e043000000000000000000000000ea1c88646b21eea5254c9182a9134f227a4fea36000000000000000000000000d6f7953dc407a56f633896076a05e0ed3a8c1fe50000000000000000000000001fa83251e3773011b4ede627b1f16824c8fb8f2e0000000000000000000000007cc15e3c2135c28b638614b082e2e17c735b1fdd00000000000000000000000081b58ad3f2f511fca9bed506d673ffcad6a41838000000000000000000000000016795127375f71b5ac1caad5e3e1bd9627926c50000000000000000000000005f1637655cc974d3d47b1e5f2ba9f98d0529066f0000000000000000000000004a8a9147ab0df5a8949f964bdba22dc4583280e200000000000000000000000026bfea7ce45796dddac99cde7ad5f5c456e551e2000000000000000000000000fe285ae8a0f7fe2dd3743966f2f1b85596f635640000000000000000000000004a7780c860809cc0896dc86f4b2b49a1b49ca77d000000000000000000000000d7d743254bf6bae1a509f96d0369eb7f45a6f19000000000000000000000000059ab8c4ae817afb4917913d506b37d5bb9ed3a1200000000000000000000000074a4ea5e66d3f180a8c22be3d3e9b9ca2ddbab69000000000000000000000000e9d8cdf0adf2b272898d1585d98a2ea8d9003fd500000000000000000000000057897b44a9e41349072f8639a3996c3dbbef5c410000000000000000000000004d46fb7c88f521b747e377b9ea466e0cf6f32f66000000000000000000000000ce85d526bef2d7fb26de5a273974b46be348605e0000000000000000000000003a57e150d79dc2a4661d0b1122253860852a880e000000000000000000000000a43a8b5ca81ccfede49c7435d2cd89cd12e128450000000000000000000000001ca6a707436d6368f62f9f9f8d3a26e4ad4d36f100000000000000000000000065b21e1f53556b550e6c400fc96fde6b47899e9e000000000000000000000000a667095770d8875af45a7188a9dbdfd99b236bf7000000000000000000000000288e55b2f3af18e051b3d4840c04b24c40867e3200000000000000000000000023f8bb63777a6cdd6103e5b5b72832360ede3bee000000000000000000000000c8f6fcd14e61ac1fec8c7bdafd82f8e4a2dfa4800000000000000000000000001a807eb2dd167f83ddc254134dd80a71b6d931d200000000000000000000000082d25f326324d70d35ef6935874698989250e368000000000000000000000000f4bdadd4af17b742f68d455af4e5115d71fe23f4000000000000000000000000959740d1608c4124cee7d1319d413f3348f221ae000000000000000000000000e6bc68924471409db23b4bc91ea2e270855a37fa0000000000000000000000006cdce3e24d227a13366adee94686aeaff4958fb50000000000000000000000005e4b49881b28fa206945bab81ced5303ef93075f0000000000000000000000006972ab424477ac48c36352acc7c4694cb9451f62000000000000000000000000a890ba9f6a08a6352a7e6f7737c6cd76fcdcfc9a00000000000000000000000001027e0b2b301a1313d7e4715c744f17f69e99d0000000000000000000000000ce0cb5184241c8e59d6ddd9bdb04f8740757f8ee00000000000000000000000041167bb57a03a3068d43c0af13e2eee42c143eb800000000000000000000000075e26bb16ae9e3caa68f7bdf731c71b9f42ca373000000000000000000000000b1f5491bc0eb4d00c6bba876460680c3ef2db169000000000000000000000000de46e83a81508260079ef0c100a01868e58951760000000000000000000000006698b8c5d53b99492cc86133fdc10bbdf071790a0000000000000000000000004d0d3926947f069a7cc7b5595ce27fb5da5c412800000000000000000000000082d25f326324d70d35ef6935874698989250e3680000000000000000000000006ad5870f9c8455a6ca5dbfc2da128681f7aba597000000000000000000000000a17bbc84adde59803d855b26810986d765a30ddd000000000000000000000000971e56d95ebbe40737641778c18291b336aab965

Deployed Bytecode

0x60806040526004361061019c5760003560e01c8063902d55a5116100ec578063c87b56dd1161008a578063f2fde38b11610064578063f2fde38b146105a7578063f3fef3a3146105d0578063f6ecf215146105f9578063fc18dae0146106105761019c565b8063c87b56dd14610502578063cce132d11461053f578063e985e9c51461056a5761019c565b8063a0712d68116100c6578063a0712d6814610469578063a22cb46514610485578063b88d4fde146104ae578063c002d23d146104d75761019c565b8063902d55a5146103e857806395d89b411461041357806398bdf6f51461043e5761019c565b806342842e0e1161015957806370a082311161013357806370a0823114610352578063715018a61461038f578063804f43cd146103a65780638da5cb5b146103bd5761019c565b806342842e0e146102c3578063484b973c146102ec5780636352211e146103155761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806323b872dd1461026f5780633ad7f56c14610298575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612508565b61064d565b6040516101d59190612a5e565b60405180910390f35b3480156101ea57600080fd5b506101f361072f565b6040516102009190612a79565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061255a565b6107c1565b60405161023d91906129f7565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906124cc565b610846565b005b34801561027b57600080fd5b50610296600480360381019061029191906123c6565b61095e565b005b3480156102a457600080fd5b506102ad6109be565b6040516102ba9190612a5e565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e591906123c6565b6109d1565b005b3480156102f857600080fd5b50610313600480360381019061030e91906124cc565b6109f1565b005b34801561032157600080fd5b5061033c6004803603810190610337919061255a565b610b0c565b60405161034991906129f7565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612361565b610bbe565b6040516103869190612d9b565b60405180910390f35b34801561039b57600080fd5b506103a4610c76565b005b3480156103b257600080fd5b506103bb610cfe565b005b3480156103c957600080fd5b506103d2610e56565b6040516103df91906129f7565b60405180910390f35b3480156103f457600080fd5b506103fd610e80565b60405161040a9190612d9b565b60405180910390f35b34801561041f57600080fd5b50610428610e86565b6040516104359190612a79565b60405180910390f35b34801561044a57600080fd5b50610453610f18565b6040516104609190612d9b565b60405180910390f35b610483600480360381019061047e919061255a565b610f24565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612490565b6110a7565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612415565b6110bd565b005b3480156104e357600080fd5b506104ec61111f565b6040516104f99190612d9b565b60405180910390f35b34801561050e57600080fd5b506105296004803603810190610524919061255a565b611125565b6040516105369190612a79565b60405180910390f35b34801561054b57600080fd5b506105546111cc565b6040516105619190612d9b565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c919061238a565b6111d2565b60405161059e9190612a5e565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612361565b611266565b005b3480156105dc57600080fd5b506105f760048036038101906105f291906124cc565b61135e565b005b34801561060557600080fd5b5061060e6114ce565b005b34801561061c57600080fd5b5061063760048036038101906106329190612361565b611576565b6040516106449190612a5e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610728575061072782611596565b5b9050919050565b60606000805461073e90613025565b80601f016020809104026020016040519081016040528092919081815260200182805461076a90613025565b80156107b75780601f1061078c576101008083540402835291602001916107b7565b820191906000526020600020905b81548152906001019060200180831161079a57829003601f168201915b5050505050905090565b60006107cc82611600565b61080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290612c9b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085182610b0c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990612d3b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e161166c565b73ffffffffffffffffffffffffffffffffffffffff161480610910575061090f8161090a61166c565b6111d2565b5b61094f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094690612bdb565b60405180910390fd5b6109598383611674565b505050565b61096f61096961166c565b8261172d565b6109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590612d5b565b60405180910390fd5b6109b983838361180b565b505050565b600b60009054906101000a900460ff1681565b6109ec838383604051806020016040528060008152506110bd565b505050565b6109f961166c565b73ffffffffffffffffffffffffffffffffffffffff16610a17610e56565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6490612cdb565b60405180910390fd5b600a5481610a7b6007611a72565b610a859190612e5a565b1115610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90612bfb565b60405180910390fd5b60005b81811015610b0757610adb6007611a80565b6000610ae76007611a72565b9050610af38482611a96565b508080610aff90613088565b915050610ac9565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90612c5b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690612c3b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c7e61166c565b73ffffffffffffffffffffffffffffffffffffffff16610c9c610e56565b73ffffffffffffffffffffffffffffffffffffffff1614610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990612cdb565b60405180910390fd5b610cfc6000611c70565b565b600b60009054906101000a900460ff16610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490612d1b565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd090612c1b565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610e3b6007611a80565b6000610e476007611a72565b9050610e533382611a96565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a5481565b606060018054610e9590613025565b80601f0160208091040260200160405190810160405280929190818152602001828054610ec190613025565b8015610f0e5780601f10610ee357610100808354040283529160200191610f0e565b820191906000526020600020905b815481529060010190602001808311610ef157829003601f168201915b5050505050905090565b60078060000154905081565b600b60009054906101000a900460ff1615610f74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6b90612bbb565b60405180910390fd5b80600954610f829190612ee1565b341015610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb90612d7b565b60405180910390fd5b600854811115611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090612cbb565b60405180910390fd5b600a54816110176007611a72565b6110219190612e5a565b1115611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612bfb565b60405180910390fd5b60005b818110156110a3576110776007611a80565b60006110836007611a72565b905061108f3382611a96565b50808061109b90613088565b915050611065565b5050565b6110b96110b261166c565b8383611d36565b5050565b6110ce6110c861166c565b8361172d565b61110d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110490612d5b565b60405180910390fd5b61111984848484611ea3565b50505050565b60095481565b606061113082611600565b61116f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116690612cfb565b60405180910390fd5b6000611179611eff565b9050600081511161119957604051806020016040528060008152506111c4565b806111a384611f1f565b6040516020016111b49291906129be565b6040516020818303038152906040525b915050919050565b60085481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126e61166c565b73ffffffffffffffffffffffffffffffffffffffff1661128c610e56565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990612cdb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990612abb565b60405180910390fd5b61135b81611c70565b50565b61136661166c565b73ffffffffffffffffffffffffffffffffffffffff16611384610e56565b73ffffffffffffffffffffffffffffffffffffffff16146113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190612cdb565b60405180910390fd5b8047101561141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490612b7b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611443906129e2565b60006040518083038185875af1925050503d8060008114611480576040519150601f19603f3d011682016040523d82523d6000602084013e611485565b606091505b50509050806114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090612b1b565b60405180910390fd5b505050565b6114d661166c565b73ffffffffffffffffffffffffffffffffffffffff166114f4610e56565b73ffffffffffffffffffffffffffffffffffffffff161461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190612cdb565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b600c6020528060005260406000206000915054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116e783610b0c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061173882611600565b611777576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176e90612b9b565b60405180910390fd5b600061178283610b0c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117c457506117c381856111d2565b5b8061180257508373ffffffffffffffffffffffffffffffffffffffff166117ea846107c1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661182b82610b0c565b73ffffffffffffffffffffffffffffffffffffffff1614611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890612adb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890612b3b565b60405180910390fd5b6118fc8383836120cc565b611907600082611674565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119579190612f3b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119ae9190612e5a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6d8383836120d1565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afd90612c7b565b60405180910390fd5b611b0f81611600565b15611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690612afb565b60405180910390fd5b611b5b600083836120cc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bab9190612e5a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c6c600083836120d1565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c90612b5b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e969190612a5e565b60405180910390a3505050565b611eae84848461180b565b611eba848484846120d6565b611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef090612a9b565b60405180910390fd5b50505050565b60606040518060800160405280604381526020016137cf60439139905090565b60606000821415611f67576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c7565b600082905060005b60008214611f99578080611f8290613088565b915050600a82611f929190612eb0565b9150611f6f565b60008167ffffffffffffffff811115611fdb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561200d5781602001600182028036833780820191505090505b5090505b600085146120c0576001826120269190612f3b565b9150600a8561203591906130d1565b60306120419190612e5a565b60f81b81838151811061207d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b99190612eb0565b9450612011565b8093505050505b919050565b505050565b505050565b60006120f78473ffffffffffffffffffffffffffffffffffffffff1661226d565b15612260578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212061166c565b8786866040518563ffffffff1660e01b81526004016121429493929190612a12565b602060405180830381600087803b15801561215c57600080fd5b505af192505050801561218d57506040513d601f19601f8201168201806040525081019061218a9190612531565b60015b612210573d80600081146121bd576040519150601f19603f3d011682016040523d82523d6000602084013e6121c2565b606091505b50600081511415612208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ff90612a9b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612265565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60006122a361229e84612ddb565b612db6565b9050828152602081018484840111156122bb57600080fd5b6122c6848285612fe3565b509392505050565b6000813590506122dd81613772565b92915050565b6000813590506122f281613789565b92915050565b600081359050612307816137a0565b92915050565b60008151905061231c816137a0565b92915050565b600082601f83011261233357600080fd5b8135612343848260208601612290565b91505092915050565b60008135905061235b816137b7565b92915050565b60006020828403121561237357600080fd5b6000612381848285016122ce565b91505092915050565b6000806040838503121561239d57600080fd5b60006123ab858286016122ce565b92505060206123bc858286016122ce565b9150509250929050565b6000806000606084860312156123db57600080fd5b60006123e9868287016122ce565b93505060206123fa868287016122ce565b925050604061240b8682870161234c565b9150509250925092565b6000806000806080858703121561242b57600080fd5b6000612439878288016122ce565b945050602061244a878288016122ce565b935050604061245b8782880161234c565b925050606085013567ffffffffffffffff81111561247857600080fd5b61248487828801612322565b91505092959194509250565b600080604083850312156124a357600080fd5b60006124b1858286016122ce565b92505060206124c2858286016122e3565b9150509250929050565b600080604083850312156124df57600080fd5b60006124ed858286016122ce565b92505060206124fe8582860161234c565b9150509250929050565b60006020828403121561251a57600080fd5b6000612528848285016122f8565b91505092915050565b60006020828403121561254357600080fd5b60006125518482850161230d565b91505092915050565b60006020828403121561256c57600080fd5b600061257a8482850161234c565b91505092915050565b61258c81612f6f565b82525050565b61259b81612f81565b82525050565b60006125ac82612e0c565b6125b68185612e22565b93506125c6818560208601612ff2565b6125cf816131be565b840191505092915050565b60006125e582612e17565b6125ef8185612e3e565b93506125ff818560208601612ff2565b612608816131be565b840191505092915050565b600061261e82612e17565b6126288185612e4f565b9350612638818560208601612ff2565b80840191505092915050565b6000612651603283612e3e565b915061265c826131cf565b604082019050919050565b6000612674602683612e3e565b915061267f8261321e565b604082019050919050565b6000612697602583612e3e565b91506126a28261326d565b604082019050919050565b60006126ba601c83612e3e565b91506126c5826132bc565b602082019050919050565b60006126dd601483612e3e565b91506126e8826132e5565b602082019050919050565b6000612700602483612e3e565b915061270b8261330e565b604082019050919050565b6000612723601983612e3e565b915061272e8261335d565b602082019050919050565b6000612746601e83612e3e565b915061275182613386565b602082019050919050565b6000612769602c83612e3e565b9150612774826133af565b604082019050919050565b600061278c601483612e3e565b9150612797826133fe565b602082019050919050565b60006127af603883612e3e565b91506127ba82613427565b604082019050919050565b60006127d2601483612e3e565b91506127dd82613476565b602082019050919050565b60006127f5600f83612e3e565b91506128008261349f565b602082019050919050565b6000612818602a83612e3e565b9150612823826134c8565b604082019050919050565b600061283b602983612e3e565b915061284682613517565b604082019050919050565b600061285e602083612e3e565b915061286982613566565b602082019050919050565b6000612881602c83612e3e565b915061288c8261358f565b604082019050919050565b60006128a4601783612e3e565b91506128af826135de565b602082019050919050565b60006128c7602083612e3e565b91506128d282613607565b602082019050919050565b60006128ea602f83612e3e565b91506128f582613630565b604082019050919050565b600061290d601a83612e3e565b91506129188261367f565b602082019050919050565b6000612930602183612e3e565b915061293b826136a8565b604082019050919050565b6000612953600083612e33565b915061295e826136f7565b600082019050919050565b6000612976603183612e3e565b9150612981826136fa565b604082019050919050565b6000612999601783612e3e565b91506129a482613749565b602082019050919050565b6129b881612fd9565b82525050565b60006129ca8285612613565b91506129d68284612613565b91508190509392505050565b60006129ed82612946565b9150819050919050565b6000602082019050612a0c6000830184612583565b92915050565b6000608082019050612a276000830187612583565b612a346020830186612583565b612a4160408301856129af565b8181036060830152612a5381846125a1565b905095945050505050565b6000602082019050612a736000830184612592565b92915050565b60006020820190508181036000830152612a9381846125da565b905092915050565b60006020820190508181036000830152612ab481612644565b9050919050565b60006020820190508181036000830152612ad481612667565b9050919050565b60006020820190508181036000830152612af48161268a565b9050919050565b60006020820190508181036000830152612b14816126ad565b9050919050565b60006020820190508181036000830152612b34816126d0565b9050919050565b60006020820190508181036000830152612b54816126f3565b9050919050565b60006020820190508181036000830152612b7481612716565b9050919050565b60006020820190508181036000830152612b9481612739565b9050919050565b60006020820190508181036000830152612bb48161275c565b9050919050565b60006020820190508181036000830152612bd48161277f565b9050919050565b60006020820190508181036000830152612bf4816127a2565b9050919050565b60006020820190508181036000830152612c14816127c5565b9050919050565b60006020820190508181036000830152612c34816127e8565b9050919050565b60006020820190508181036000830152612c548161280b565b9050919050565b60006020820190508181036000830152612c748161282e565b9050919050565b60006020820190508181036000830152612c9481612851565b9050919050565b60006020820190508181036000830152612cb481612874565b9050919050565b60006020820190508181036000830152612cd481612897565b9050919050565b60006020820190508181036000830152612cf4816128ba565b9050919050565b60006020820190508181036000830152612d14816128dd565b9050919050565b60006020820190508181036000830152612d3481612900565b9050919050565b60006020820190508181036000830152612d5481612923565b9050919050565b60006020820190508181036000830152612d7481612969565b9050919050565b60006020820190508181036000830152612d948161298c565b9050919050565b6000602082019050612db060008301846129af565b92915050565b6000612dc0612dd1565b9050612dcc8282613057565b919050565b6000604051905090565b600067ffffffffffffffff821115612df657612df561318f565b5b612dff826131be565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6582612fd9565b9150612e7083612fd9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ea557612ea4613102565b5b828201905092915050565b6000612ebb82612fd9565b9150612ec683612fd9565b925082612ed657612ed5613131565b5b828204905092915050565b6000612eec82612fd9565b9150612ef783612fd9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3057612f2f613102565b5b828202905092915050565b6000612f4682612fd9565b9150612f5183612fd9565b925082821015612f6457612f63613102565b5b828203905092915050565b6000612f7a82612fb9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613010578082015181840152602081019050612ff5565b8381111561301f576000848401525b50505050565b6000600282049050600182168061303d57607f821691505b6020821081141561305157613050613160565b5b50919050565b613060826131be565b810181811067ffffffffffffffff8211171561307f5761307e61318f565b5b80604052505050565b600061309382612fd9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130c6576130c5613102565b5b600182019050919050565b60006130dc82612fd9565b91506130e783612fd9565b9250826130f7576130f6613131565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f7420656e6f7567682045544820696e2074686520636f6e74726163740000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f57686974656c69737420697320656e61626c6564000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5265616368656420746f74616c20737570706c79000000000000000000000000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d6178206d696e74207065722054582072656163686564000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57686974656c697374206d696e74696e672064697361626c6564000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742045544820616d6f756e74000000000000000000600082015250565b61377b81612f6f565b811461378657600080fd5b50565b61379281612f81565b811461379d57600080fd5b50565b6137a981612f8d565b81146137b457600080fd5b50565b6137c081612fd9565b81146137cb57600080fd5b5056fe697066733a2f2f6261667962656966736366326974346664687564357a673565757672356d6f75336f72706f63656771747a79377875646f6c7079616534327067792fa264697066735822122018e43db4543f6e319691b71c35c02205611e66f90db6336f75b942a20fa4368864736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000042000000000000000000000000aaceaca8836a2624ee782b6365737ca181db72ae00000000000000000000000021dc1ade6498739f95b69d43bb4ad6063d2ad7b1000000000000000000000000e769923e53f50bc2a4fae8cce134b8913aea9f850000000000000000000000006ea714732f4a4e6f27826fb187f99abcd58db0de000000000000000000000000b6a6456c8bd587d279ab1ab52b1b758894664446000000000000000000000000baaf31168c7f9963c2a62e55c7df79fac0523188000000000000000000000000a6d8d2360c0b291d4db3ad1a5f87fab2fd2dfa3300000000000000000000000016e4104e58f849826a1c9eb89cccca2d87549e490000000000000000000000008150d941f58c65919a456ceb315579e1b810048f000000000000000000000000c1528e6bdb812e9aa85ac97b78bb0794643f1c53000000000000000000000000cad621da75a66c7a8f4ff86d30a2bf981bfc8fdd0000000000000000000000006280f2212a0756502361c162c246cf4a25d7352d0000000000000000000000006394af05673f1249fe0ba04976f4f1d687c256bc000000000000000000000000c54d829b4a63f812d499e9c4f295e29d66d6d8db000000000000000000000000317249b8118f0df4c7c571a00d90017bb0ad24a2000000000000000000000000391c8f2d68c38d1fc60869800e65e8bcdf21cfc800000000000000000000000059ab8c4ae817afb4917913d506b37d5bb9ed3a12000000000000000000000000d139039ac4abe0d6cca88986b4bcc39edb81706400000000000000000000000074ca6cd8ac0d382da8f67ff18b42943e8305e043000000000000000000000000ea1c88646b21eea5254c9182a9134f227a4fea36000000000000000000000000d6f7953dc407a56f633896076a05e0ed3a8c1fe50000000000000000000000001fa83251e3773011b4ede627b1f16824c8fb8f2e0000000000000000000000007cc15e3c2135c28b638614b082e2e17c735b1fdd00000000000000000000000081b58ad3f2f511fca9bed506d673ffcad6a41838000000000000000000000000016795127375f71b5ac1caad5e3e1bd9627926c50000000000000000000000005f1637655cc974d3d47b1e5f2ba9f98d0529066f0000000000000000000000004a8a9147ab0df5a8949f964bdba22dc4583280e200000000000000000000000026bfea7ce45796dddac99cde7ad5f5c456e551e2000000000000000000000000fe285ae8a0f7fe2dd3743966f2f1b85596f635640000000000000000000000004a7780c860809cc0896dc86f4b2b49a1b49ca77d000000000000000000000000d7d743254bf6bae1a509f96d0369eb7f45a6f19000000000000000000000000059ab8c4ae817afb4917913d506b37d5bb9ed3a1200000000000000000000000074a4ea5e66d3f180a8c22be3d3e9b9ca2ddbab69000000000000000000000000e9d8cdf0adf2b272898d1585d98a2ea8d9003fd500000000000000000000000057897b44a9e41349072f8639a3996c3dbbef5c410000000000000000000000004d46fb7c88f521b747e377b9ea466e0cf6f32f66000000000000000000000000ce85d526bef2d7fb26de5a273974b46be348605e0000000000000000000000003a57e150d79dc2a4661d0b1122253860852a880e000000000000000000000000a43a8b5ca81ccfede49c7435d2cd89cd12e128450000000000000000000000001ca6a707436d6368f62f9f9f8d3a26e4ad4d36f100000000000000000000000065b21e1f53556b550e6c400fc96fde6b47899e9e000000000000000000000000a667095770d8875af45a7188a9dbdfd99b236bf7000000000000000000000000288e55b2f3af18e051b3d4840c04b24c40867e3200000000000000000000000023f8bb63777a6cdd6103e5b5b72832360ede3bee000000000000000000000000c8f6fcd14e61ac1fec8c7bdafd82f8e4a2dfa4800000000000000000000000001a807eb2dd167f83ddc254134dd80a71b6d931d200000000000000000000000082d25f326324d70d35ef6935874698989250e368000000000000000000000000f4bdadd4af17b742f68d455af4e5115d71fe23f4000000000000000000000000959740d1608c4124cee7d1319d413f3348f221ae000000000000000000000000e6bc68924471409db23b4bc91ea2e270855a37fa0000000000000000000000006cdce3e24d227a13366adee94686aeaff4958fb50000000000000000000000005e4b49881b28fa206945bab81ced5303ef93075f0000000000000000000000006972ab424477ac48c36352acc7c4694cb9451f62000000000000000000000000a890ba9f6a08a6352a7e6f7737c6cd76fcdcfc9a00000000000000000000000001027e0b2b301a1313d7e4715c744f17f69e99d0000000000000000000000000ce0cb5184241c8e59d6ddd9bdb04f8740757f8ee00000000000000000000000041167bb57a03a3068d43c0af13e2eee42c143eb800000000000000000000000075e26bb16ae9e3caa68f7bdf731c71b9f42ca373000000000000000000000000b1f5491bc0eb4d00c6bba876460680c3ef2db169000000000000000000000000de46e83a81508260079ef0c100a01868e58951760000000000000000000000006698b8c5d53b99492cc86133fdc10bbdf071790a0000000000000000000000004d0d3926947f069a7cc7b5595ce27fb5da5c412800000000000000000000000082d25f326324d70d35ef6935874698989250e3680000000000000000000000006ad5870f9c8455a6ca5dbfc2da128681f7aba597000000000000000000000000a17bbc84adde59803d855b26810986d765a30ddd000000000000000000000000971e56d95ebbe40737641778c18291b336aab965

-----Decoded View---------------
Arg [0] : _whitelistMembers (address[]): 0xAACEaca8836A2624eE782b6365737CA181DB72Ae,0x21dc1aDe6498739F95B69d43Bb4Ad6063D2ad7B1,0xE769923E53f50Bc2a4FAe8cCe134b8913aEa9F85,0x6ea714732f4A4e6F27826Fb187f99aBcD58Db0dE,0xb6A6456C8bd587D279AB1aB52B1b758894664446,0xBAaF31168c7f9963c2A62e55C7Df79fac0523188,0xa6D8d2360C0b291d4dB3Ad1A5F87faB2fd2DFa33,0x16E4104E58F849826a1c9EB89ccCcA2d87549E49,0x8150d941F58c65919a456cEb315579E1B810048f,0xc1528E6BDb812e9aA85Ac97B78BB0794643f1C53,0xcaD621da75a66c7A8f4FF86D30A2bF981Bfc8FdD,0x6280F2212a0756502361c162C246cF4a25d7352D,0x6394af05673f1249fe0ba04976f4f1D687c256Bc,0xc54d829b4A63f812d499e9C4F295e29D66d6d8DB,0x317249b8118F0Df4C7c571a00D90017Bb0AD24a2,0x391c8f2D68c38D1fc60869800E65E8bcDf21Cfc8,0x59AB8C4aE817afB4917913d506B37D5bB9ed3a12,0xD139039Ac4Abe0d6cCA88986b4Bcc39EdB817064,0x74ca6cD8ac0D382da8f67FF18B42943e8305E043,0xeA1C88646B21eeA5254c9182A9134F227a4FeA36,0xD6F7953dC407A56F633896076a05E0ED3A8C1fE5,0x1FA83251E3773011b4Ede627b1F16824C8fb8F2e,0x7Cc15E3c2135C28B638614b082e2E17c735B1Fdd,0x81B58Ad3f2f511fCA9BeD506d673ffcaD6A41838,0x016795127375f71B5AC1CAAD5e3e1bD9627926C5,0x5f1637655cc974D3d47B1E5f2ba9F98D0529066f,0x4A8a9147ab0DF5A8949f964bDBA22dc4583280E2,0x26bFea7ce45796DdDac99cdE7aD5F5c456e551E2,0xfe285aE8A0F7FE2Dd3743966F2f1B85596f63564,0x4A7780c860809cC0896dC86F4B2B49a1B49CA77D,0xd7D743254BF6BAE1a509f96D0369eB7f45A6F190,0x59AB8C4aE817afB4917913d506B37D5bB9ed3a12,0x74A4ea5E66D3F180a8c22be3d3e9b9cA2DdBAB69,0xE9d8cdF0adF2B272898d1585d98A2ea8D9003fd5,0x57897B44A9e41349072F8639A3996C3dbBeF5c41,0x4d46fB7c88F521B747e377b9ea466e0CF6F32f66,0xce85d526bEf2D7fb26DE5a273974b46be348605e,0x3a57E150D79DC2a4661d0b1122253860852a880E,0xa43a8B5CA81CCfEde49c7435d2cD89cD12E12845,0x1Ca6a707436D6368f62F9F9f8D3A26e4ad4d36F1,0x65B21e1F53556b550E6c400FC96fde6b47899e9E,0xa667095770D8875Af45A7188A9dbdfD99B236bf7,0x288E55B2F3AF18e051b3D4840c04B24C40867E32,0x23F8bb63777a6CdD6103E5b5B72832360edE3BEe,0xc8F6FCd14e61ac1fec8C7bDaFD82F8e4A2DFa480,0x1A807Eb2dd167F83dDC254134Dd80a71B6d931d2,0x82D25F326324D70D35EF6935874698989250e368,0xF4bdadd4aF17B742f68d455AF4E5115D71fE23F4,0x959740D1608c4124CEE7d1319D413F3348f221Ae,0xe6bC68924471409DB23b4Bc91ea2e270855a37fA,0x6cdce3E24D227a13366adEE94686aeaff4958FB5,0x5e4B49881b28Fa206945baB81Ced5303EF93075F,0x6972AB424477AC48C36352ACc7c4694Cb9451f62,0xA890bA9F6A08a6352a7E6f7737C6cd76fcDCfc9A,0x01027E0b2B301a1313D7e4715C744F17F69e99d0,0xce0cb5184241c8E59D6ddd9bdb04f8740757F8eE,0x41167BB57a03a3068D43C0af13E2eEE42C143eB8,0x75e26bb16AE9e3cAA68f7bDf731C71b9f42Ca373,0xB1f5491bC0Eb4d00C6bbA876460680c3EF2dB169,0xDe46e83A81508260079Ef0C100a01868E5895176,0x6698B8C5D53B99492cc86133Fdc10BBdf071790A,0x4d0d3926947F069A7CC7b5595ce27FB5Da5c4128,0x82D25F326324D70D35EF6935874698989250e368,0x6aD5870f9C8455A6cA5dBFc2DA128681f7ABA597,0xa17BbC84addE59803d855B26810986d765a30Ddd,0x971E56D95eBBe40737641778C18291B336Aab965

-----Encoded View---------------
68 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [2] : 000000000000000000000000aaceaca8836a2624ee782b6365737ca181db72ae
Arg [3] : 00000000000000000000000021dc1ade6498739f95b69d43bb4ad6063d2ad7b1
Arg [4] : 000000000000000000000000e769923e53f50bc2a4fae8cce134b8913aea9f85
Arg [5] : 0000000000000000000000006ea714732f4a4e6f27826fb187f99abcd58db0de
Arg [6] : 000000000000000000000000b6a6456c8bd587d279ab1ab52b1b758894664446
Arg [7] : 000000000000000000000000baaf31168c7f9963c2a62e55c7df79fac0523188
Arg [8] : 000000000000000000000000a6d8d2360c0b291d4db3ad1a5f87fab2fd2dfa33
Arg [9] : 00000000000000000000000016e4104e58f849826a1c9eb89cccca2d87549e49
Arg [10] : 0000000000000000000000008150d941f58c65919a456ceb315579e1b810048f
Arg [11] : 000000000000000000000000c1528e6bdb812e9aa85ac97b78bb0794643f1c53
Arg [12] : 000000000000000000000000cad621da75a66c7a8f4ff86d30a2bf981bfc8fdd
Arg [13] : 0000000000000000000000006280f2212a0756502361c162c246cf4a25d7352d
Arg [14] : 0000000000000000000000006394af05673f1249fe0ba04976f4f1d687c256bc
Arg [15] : 000000000000000000000000c54d829b4a63f812d499e9c4f295e29d66d6d8db
Arg [16] : 000000000000000000000000317249b8118f0df4c7c571a00d90017bb0ad24a2
Arg [17] : 000000000000000000000000391c8f2d68c38d1fc60869800e65e8bcdf21cfc8
Arg [18] : 00000000000000000000000059ab8c4ae817afb4917913d506b37d5bb9ed3a12
Arg [19] : 000000000000000000000000d139039ac4abe0d6cca88986b4bcc39edb817064
Arg [20] : 00000000000000000000000074ca6cd8ac0d382da8f67ff18b42943e8305e043
Arg [21] : 000000000000000000000000ea1c88646b21eea5254c9182a9134f227a4fea36
Arg [22] : 000000000000000000000000d6f7953dc407a56f633896076a05e0ed3a8c1fe5
Arg [23] : 0000000000000000000000001fa83251e3773011b4ede627b1f16824c8fb8f2e
Arg [24] : 0000000000000000000000007cc15e3c2135c28b638614b082e2e17c735b1fdd
Arg [25] : 00000000000000000000000081b58ad3f2f511fca9bed506d673ffcad6a41838
Arg [26] : 000000000000000000000000016795127375f71b5ac1caad5e3e1bd9627926c5
Arg [27] : 0000000000000000000000005f1637655cc974d3d47b1e5f2ba9f98d0529066f
Arg [28] : 0000000000000000000000004a8a9147ab0df5a8949f964bdba22dc4583280e2
Arg [29] : 00000000000000000000000026bfea7ce45796dddac99cde7ad5f5c456e551e2
Arg [30] : 000000000000000000000000fe285ae8a0f7fe2dd3743966f2f1b85596f63564
Arg [31] : 0000000000000000000000004a7780c860809cc0896dc86f4b2b49a1b49ca77d
Arg [32] : 000000000000000000000000d7d743254bf6bae1a509f96d0369eb7f45a6f190
Arg [33] : 00000000000000000000000059ab8c4ae817afb4917913d506b37d5bb9ed3a12
Arg [34] : 00000000000000000000000074a4ea5e66d3f180a8c22be3d3e9b9ca2ddbab69
Arg [35] : 000000000000000000000000e9d8cdf0adf2b272898d1585d98a2ea8d9003fd5
Arg [36] : 00000000000000000000000057897b44a9e41349072f8639a3996c3dbbef5c41
Arg [37] : 0000000000000000000000004d46fb7c88f521b747e377b9ea466e0cf6f32f66
Arg [38] : 000000000000000000000000ce85d526bef2d7fb26de5a273974b46be348605e
Arg [39] : 0000000000000000000000003a57e150d79dc2a4661d0b1122253860852a880e
Arg [40] : 000000000000000000000000a43a8b5ca81ccfede49c7435d2cd89cd12e12845
Arg [41] : 0000000000000000000000001ca6a707436d6368f62f9f9f8d3a26e4ad4d36f1
Arg [42] : 00000000000000000000000065b21e1f53556b550e6c400fc96fde6b47899e9e
Arg [43] : 000000000000000000000000a667095770d8875af45a7188a9dbdfd99b236bf7
Arg [44] : 000000000000000000000000288e55b2f3af18e051b3d4840c04b24c40867e32
Arg [45] : 00000000000000000000000023f8bb63777a6cdd6103e5b5b72832360ede3bee
Arg [46] : 000000000000000000000000c8f6fcd14e61ac1fec8c7bdafd82f8e4a2dfa480
Arg [47] : 0000000000000000000000001a807eb2dd167f83ddc254134dd80a71b6d931d2
Arg [48] : 00000000000000000000000082d25f326324d70d35ef6935874698989250e368
Arg [49] : 000000000000000000000000f4bdadd4af17b742f68d455af4e5115d71fe23f4
Arg [50] : 000000000000000000000000959740d1608c4124cee7d1319d413f3348f221ae
Arg [51] : 000000000000000000000000e6bc68924471409db23b4bc91ea2e270855a37fa
Arg [52] : 0000000000000000000000006cdce3e24d227a13366adee94686aeaff4958fb5
Arg [53] : 0000000000000000000000005e4b49881b28fa206945bab81ced5303ef93075f
Arg [54] : 0000000000000000000000006972ab424477ac48c36352acc7c4694cb9451f62
Arg [55] : 000000000000000000000000a890ba9f6a08a6352a7e6f7737c6cd76fcdcfc9a
Arg [56] : 00000000000000000000000001027e0b2b301a1313d7e4715c744f17f69e99d0
Arg [57] : 000000000000000000000000ce0cb5184241c8e59d6ddd9bdb04f8740757f8ee
Arg [58] : 00000000000000000000000041167bb57a03a3068d43c0af13e2eee42c143eb8
Arg [59] : 00000000000000000000000075e26bb16ae9e3caa68f7bdf731c71b9f42ca373
Arg [60] : 000000000000000000000000b1f5491bc0eb4d00c6bba876460680c3ef2db169
Arg [61] : 000000000000000000000000de46e83a81508260079ef0c100a01868e5895176
Arg [62] : 0000000000000000000000006698b8c5d53b99492cc86133fdc10bbdf071790a
Arg [63] : 0000000000000000000000004d0d3926947f069a7cc7b5595ce27fb5da5c4128
Arg [64] : 00000000000000000000000082d25f326324d70d35ef6935874698989250e368
Arg [65] : 0000000000000000000000006ad5870f9c8455a6ca5dbfc2da128681f7aba597
Arg [66] : 000000000000000000000000a17bbc84adde59803d855b26810986d765a30ddd
Arg [67] : 000000000000000000000000971e56d95ebbe40737641778c18291b336aab965


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.