ETH Price: $3,086.90 (-0.05%)
Gas: 4 Gwei

Token

Infinite Realm 77-E (IR77E)
 

Overview

Max Total Supply

0 IR77E

Holders

2,930

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 IR77E
0x1115f34cd889c9b504b8a20da13b037e7c2e352f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Welcome Wanderer, to beautiful 77-E, an infinite realm on the Ethereum blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IR77E

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : IR77E.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.6;

/*

                  ___           ___                     ___                                   ___     
    ___          /__/\         /  /\      ___          /__/\        ___           ___        /  /\    
   /  /\         \  \:\       /  /:/_    /  /\         \  \:\      /  /\         /  /\      /  /:/_   
  /  /:/          \  \:\     /  /:/ /\  /  /:/          \  \:\    /  /:/        /  /:/     /  /:/ /\  
 /__/::\      _____\__\:\   /  /:/ /:/ /__/::\      _____\__\:\  /__/::\       /  /:/     /  /:/ /:/_ 
 \__\/\:\__  /__/::::::::\ /__/:/ /:/  \__\/\:\__  /__/::::::::\ \__\/\:\__   /  /::\    /__/:/ /:/ /\
    \  \:\/\ \  \:\~~\~~\/ \  \:\/:/      \  \:\/\ \  \:\~~\~~\/    \  \:\/\ /__/:/\:\   \  \:\/:/ /:/
     \__\::/  \  \:\  ~~~   \  \::/        \__\::/  \  \:\  ~~~      \__\::/ \__\/  \:\   \  \::/ /:/ 
     /__/:/    \  \:\        \  \:\        /__/:/    \  \:\          /__/:/       \  \:\   \  \:\/:/  
     \__\/      \  \:\        \  \:\       \__\/      \  \:\         \__\/         \__\/    \  \::/   
                 \__\/         \__\/                   \__\/                                 \__\/    
      ___           ___           ___                         ___                                     
     /  /\         /  /\         /  /\                       /__/\                                    
    /  /::\       /  /:/_       /  /::\                     |  |::\                                   
   /  /:/\:\     /  /:/ /\     /  /:/\:\    ___     ___     |  |:|:\                                  
  /  /:/~/:/    /  /:/ /:/_   /  /:/~/::\  /__/\   /  /\  __|__|:|\:\                                 
 /__/:/ /:/___ /__/:/ /:/ /\ /__/:/ /:/\:\ \  \:\ /  /:/ /__/::::| \:\                                
 \  \:\/:::::/ \  \:\/:/ /:/ \  \:\/:/__\/  \  \:\  /:/  \  \:\~~\__\/                                
  \  \::/~~~~   \  \::/ /:/   \  \::/        \  \:\/:/    \  \:\                                      
   \  \:\        \  \:\/:/     \  \:\         \  \::/      \  \:\                                     
    \  \:\        \  \::/       \  \:\         \__\/        \  \:\                                    
     \__\/         \__\/         \__\/                       \__\/                                    

*/

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

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

    Counters.Counter private _tokenIds;

    uint256 public constant MAX_SUPPLY = 7777;
    uint256 public constant MAX_MINT_PER_TX = 4;
    uint256 public constant MAX_MINT_PER_WALLET = 12;

    uint256 public price = 0.07 ether;
    uint256 public amountTokensReserved = 0;
    string public baseURI;
    bool public saleActive = false;
    uint256 public totalSupplyRemaining = MAX_SUPPLY;

    mapping(address => uint256) private transactionsPerWallet;

    constructor() ERC721("Infinite Realm 77-E", "IR77E") {
        _tokenIds.increment();
    }

    modifier isMintable() {
        require(saleActive, "Infinite Realm 77-E: NFT cannot be minted yet.");
        _;
    }

    modifier isNotExceedMaxMintPerTx(uint256 amount) {
        require(
            amount <= MAX_MINT_PER_TX,
            "Infinite Realm 77-E: Mint amount exceeds max limit per tx."
        );
        _;
    }

    modifier isNotExceedMaxMintPerWallet(uint256 amount) {
        require(
            transactionsPerWallet[msg.sender] + amount <= MAX_MINT_PER_WALLET,
            "Infinite Realm 77-E: Mint amount exceeds max limit per wallet."
        );
        _;
    }

    modifier isNotExceedAvailableSupply(uint256 amount) {
        require(
            amount <= totalSupplyRemaining - amountTokensReserved,
            "Infinite Realm 77-E: There are no more remaining NFT's to mint."
        );
        _;
    }

    modifier isNotExceedReservedSupply(uint256 amount) {
        require(
            amount <= amountTokensReserved,
            "Infinite Realm 77-E: There are no more remaining reserved NFT's to mint."
        );
        _;
    }

    modifier isPaymentSufficient(uint256 amount) {
        require(
            msg.value == amount * price,
            "Infinite Realm 77-E: There was not enough/extra ETH transferred to mint an NFT."
        );
        _;
    }

    function mint(uint256 amount)
        public
        payable
        isMintable
        isNotExceedAvailableSupply(amount)
        isNotExceedMaxMintPerTx(amount)
        isNotExceedMaxMintPerWallet(amount)
        isPaymentSufficient(amount)
    {
        for (uint256 i = 0; i < amount; i++) {
            uint256 id = _tokenIds.current();
            _safeMint(msg.sender, id);
            _tokenIds.increment();
            transactionsPerWallet[msg.sender] += 1;
            totalSupplyRemaining--;
        }
    }

    function mintReserved(uint256 amount)
        external
        onlyOwner
        isNotExceedReservedSupply(amount)
    {
        for (uint256 i = 0; i < amount; i++) {
            uint256 id = _tokenIds.current();
            _safeMint(msg.sender, id);
            _tokenIds.increment();
            totalSupplyRemaining--;
            amountTokensReserved--;
        }
    }

    function giftReserved(address[] calldata addresses)
        external
        onlyOwner
        isNotExceedReservedSupply(addresses.length)
    {
        for (uint256 i = 0; i < addresses.length; i++) {
            uint256 id = _tokenIds.current();
            _safeMint(addresses[i], id);
            _tokenIds.increment();
            totalSupplyRemaining--;
            amountTokensReserved--;
        }
    }

    function setBaseURI(string memory _URI) public onlyOwner {
        baseURI = _URI;
    }

    function setPrice(uint256 _price) public onlyOwner {
        price = _price * (1 wei);
    }

    function flipSaleActiveState() public onlyOwner {
        saleActive = !saleActive;
    }

    function setAmountTokensReserved(uint256 _amountTokensReserved)
        public
        onlyOwner
        isNotExceedAvailableSupply(_amountTokensReserved)
    {
        amountTokensReserved = _amountTokensReserved;
    }

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

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

File 3 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 4 of 12 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 12 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 12 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountTokensReserved","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleActiveState","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":"addresses","type":"address[]"}],"name":"giftReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amountTokensReserved","type":"uint256"}],"name":"setAmountTokensReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f8b0a10e47000060085560006009556000600b60006101000a81548160ff021916908315150217905550611e61600c553480156200004257600080fd5b506040518060400160405280601381526020017f496e66696e697465205265616c6d2037372d45000000000000000000000000008152506040518060400160405280600581526020017f49523737450000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c792919062000204565b508060019080519060200190620000e092919062000204565b50505062000103620000f76200012060201b60201c565b6200012860201b60201c565b6200011a6007620001ee60201b62001afd1760201c565b62000319565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200021290620002b4565b90600052602060002090601f01602090048101928262000236576000855562000282565b82601f106200025157805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028157825182559160200191906001019062000264565b5b50905062000291919062000295565b5090565b5b80821115620002b057600081600090555060010162000296565b5090565b60006002820490506001821680620002cd57607f821691505b60208210811415620002e457620002e3620002ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f5a80620003296000396000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063b19960e611610095578063e16ff2f411610064578063e16ff2f414610699578063e7ecda90146106c4578063e985e9c5146106ed578063f2fde38b1461072a576101e3565b8063b19960e6146105f1578063b88d4fde1461061c578063c87b56dd14610645578063d0fa532014610682576101e3565b80639a5d140b116100d15780639a5d140b14610558578063a035b1fe14610581578063a0712d68146105ac578063a22cb465146105c8576101e3565b80638da5cb5b146104ae5780638ecad721146104d957806391b7f5ed1461050457806395d89b411461052d576101e3565b80633ccfd60b1161017a57806368428a1b1161014957806368428a1b146104045780636c0360eb1461042f57806370a082311461045a578063715018a614610497576101e3565b80633ccfd60b1461035e57806342842e0e1461037557806355f804b31461039e5780636352211e146103c7576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806323b872dd146102df5780632a33f5531461030857806332cb6b0c14610333576101e3565b806301ffc9a7146101e8578063053d4a5f1461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b4f565b610753565b60405161021c919061307c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612bf2565b610835565b005b34801561025a57600080fd5b5061026361090f565b6040516102709190613097565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612bf2565b6109a1565b6040516102ad9190613015565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612ac2565b610a26565b005b3480156102eb57600080fd5b50610306600480360381019061030191906129ac565b610b3e565b005b34801561031457600080fd5b5061031d610b9e565b60405161032a9190613379565b60405180910390f35b34801561033f57600080fd5b50610348610ba4565b6040516103559190613379565b60405180910390f35b34801561036a57600080fd5b50610373610baa565b005b34801561038157600080fd5b5061039c600480360381019061039791906129ac565b610c76565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612ba9565b610c96565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612bf2565b610d2c565b6040516103fb9190613015565b60405180910390f35b34801561041057600080fd5b50610419610dde565b604051610426919061307c565b60405180910390f35b34801561043b57600080fd5b50610444610df1565b6040516104519190613097565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061293f565b610e7f565b60405161048e9190613379565b60405180910390f35b3480156104a357600080fd5b506104ac610f37565b005b3480156104ba57600080fd5b506104c3610fbf565b6040516104d09190613015565b60405180910390f35b3480156104e557600080fd5b506104ee610fe9565b6040516104fb9190613379565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612bf2565b610fee565b005b34801561053957600080fd5b50610542611080565b60405161054f9190613097565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612bf2565b611112565b005b34801561058d57600080fd5b5061059661124a565b6040516105a39190613379565b60405180910390f35b6105c660048036038101906105c19190612bf2565b611250565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612a82565b6114ce565b005b3480156105fd57600080fd5b5061060661164f565b6040516106139190613379565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e91906129ff565b611654565b005b34801561065157600080fd5b5061066c60048036038101906106679190612bf2565b6116b6565b6040516106799190613097565b60405180910390f35b34801561068e57600080fd5b5061069761175d565b005b3480156106a557600080fd5b506106ae611805565b6040516106bb9190613379565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612b02565b61180b565b005b3480156106f957600080fd5b50610714600480360381019061070f919061296c565b611971565b604051610721919061307c565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c919061293f565b611a05565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082e575061082d82611b13565b5b9050919050565b61083d611b7d565b73ffffffffffffffffffffffffffffffffffffffff1661085b610fbf565b73ffffffffffffffffffffffffffffffffffffffff16146108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613279565b60405180910390fd5b80600954600c546108c2919061353f565b811115610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90613339565b60405180910390fd5b816009819055505050565b60606000805461091e90613653565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90613653565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109ac82611b85565b6109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290613239565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d2c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906132d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac1611b7d565b73ffffffffffffffffffffffffffffffffffffffff161480610af05750610aef81610aea611b7d565b611971565b5b610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906131b9565b60405180910390fd5b610b398383611bf1565b505050565b610b4f610b49611b7d565b82611caa565b610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590613319565b60405180910390fd5b610b99838383611d88565b505050565b600c5481565b611e6181565b610bb2611b7d565b73ffffffffffffffffffffffffffffffffffffffff16610bd0610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613279565b60405180910390fd5b610c2e610fbf565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c73573d6000803e3d6000fd5b50565b610c9183838360405180602001604052806000815250611654565b505050565b610c9e611b7d565b73ffffffffffffffffffffffffffffffffffffffff16610cbc610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613279565b60405180910390fd5b80600a9080519060200190610d289291906126fd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906131f9565b60405180910390fd5b80915050919050565b600b60009054906101000a900460ff1681565b600a8054610dfe90613653565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2a90613653565b8015610e775780601f10610e4c57610100808354040283529160200191610e77565b820191906000526020600020905b815481529060010190602001808311610e5a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee7906131d9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f3f611b7d565b73ffffffffffffffffffffffffffffffffffffffff16610f5d610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613279565b60405180910390fd5b610fbd6000611fe4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600481565b610ff6611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611014610fbf565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613279565b60405180910390fd5b60018161107791906134e5565b60088190555050565b60606001805461108f90613653565b80601f01602080910402602001604051908101604052809291908181526020018280546110bb90613653565b80156111085780601f106110dd57610100808354040283529160200191611108565b820191906000526020600020905b8154815290600101906020018083116110eb57829003601f168201915b5050505050905090565b61111a611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611138610fbf565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613279565b60405180910390fd5b806009548111156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906132f9565b60405180910390fd5b60005b828110156112455760006111eb60076120aa565b90506111f733826120b8565b6112016007611afd565b600c600081548092919061121490613629565b91905055506009600081548092919061122c90613629565b919050555050808061123d906136b6565b9150506111d7565b505050565b60085481565b600b60009054906101000a900460ff1661129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613199565b60405180910390fd5b80600954600c546112b0919061353f565b8111156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613339565b60405180910390fd5b816004811115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613359565b60405180910390fd5b82600c81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611385919061345e565b11156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613259565b60405180910390fd5b83600854816113d591906134e5565b3414611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d906130b9565b60405180910390fd5b60005b858110156114c657600061142d60076120aa565b905061143933826120b8565b6114436007611afd565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611493919061345e565b92505081905550600c60008154809291906114ad90613629565b91905055505080806114be906136b6565b915050611419565b505050505050565b6114d6611b7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613159565b60405180910390fd5b8060056000611551611b7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115fe611b7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611643919061307c565b60405180910390a35050565b600c81565b61166561165f611b7d565b83611caa565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613319565b60405180910390fd5b6116b0848484846120d6565b50505050565b60606116c182611b85565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906132b9565b60405180910390fd5b600061170a612132565b9050600081511161172a5760405180602001604052806000815250611755565b80611734846121c4565b604051602001611745929190612ff1565b6040516020818303038152906040525b915050919050565b611765611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611783610fbf565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613279565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60095481565b611813611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611831610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90613279565b60405180910390fd5b818190506009548111156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c7906132f9565b60405180910390fd5b60005b8383905081101561196b5760006118ea60076120aa565b905061191d858584818110611902576119016137bd565b5b9050602002016020810190611917919061293f565b826120b8565b6119276007611afd565b600c600081548092919061193a90613629565b91905055506009600081548092919061195290613629565b9190505550508080611963906136b6565b9150506118d3565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a0d611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611a2b610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613279565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae8906130f9565b60405180910390fd5b611afa81611fe4565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6483610d2c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb582611b85565b611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90613179565b60405180910390fd5b6000611cff83610d2c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6e57508373ffffffffffffffffffffffffffffffffffffffff16611d56846109a1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d7f5750611d7e8185611971565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da882610d2c565b73ffffffffffffffffffffffffffffffffffffffff1614611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613299565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590613139565b60405180910390fd5b611e79838383612325565b611e84600082611bf1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed4919061353f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2b919061345e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6120d282826040518060200160405280600081525061232a565b5050565b6120e1848484611d88565b6120ed84848484612385565b61212c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612123906130d9565b60405180910390fd5b50505050565b6060600a805461214190613653565b80601f016020809104026020016040519081016040528092919081815260200182805461216d90613653565b80156121ba5780601f1061218f576101008083540402835291602001916121ba565b820191906000526020600020905b81548152906001019060200180831161219d57829003601f168201915b5050505050905090565b6060600082141561220c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612320565b600082905060005b6000821461223e578080612227906136b6565b915050600a8261223791906134b4565b9150612214565b60008167ffffffffffffffff81111561225a576122596137ec565b5b6040519080825280601f01601f19166020018201604052801561228c5781602001600182028036833780820191505090505b5090505b60008514612319576001826122a5919061353f565b9150600a856122b491906136ff565b60306122c0919061345e565b60f81b8183815181106122d6576122d56137bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561231291906134b4565b9450612290565b8093505050505b919050565b505050565b612334838361251c565b6123416000848484612385565b612380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612377906130d9565b60405180910390fd5b505050565b60006123a68473ffffffffffffffffffffffffffffffffffffffff166126ea565b1561250f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123cf611b7d565b8786866040518563ffffffff1660e01b81526004016123f19493929190613030565b602060405180830381600087803b15801561240b57600080fd5b505af192505050801561243c57506040513d601f19601f820116820180604052508101906124399190612b7c565b60015b6124bf573d806000811461246c576040519150601f19603f3d011682016040523d82523d6000602084013e612471565b606091505b506000815114156124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae906130d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612514565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390613219565b60405180910390fd5b61259581611b85565b156125d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cc90613119565b60405180910390fd5b6125e160008383612325565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612631919061345e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461270990613653565b90600052602060002090601f01602090048101928261272b5760008555612772565b82601f1061274457805160ff1916838001178555612772565b82800160010185558215612772579182015b82811115612771578251825591602001919060010190612756565b5b50905061277f9190612783565b5090565b5b8082111561279c576000816000905550600101612784565b5090565b60006127b36127ae846133b9565b613394565b9050828152602081018484840111156127cf576127ce61382a565b5b6127da8482856135e7565b509392505050565b60006127f56127f0846133ea565b613394565b9050828152602081018484840111156128115761281061382a565b5b61281c8482856135e7565b509392505050565b60008135905061283381613ec8565b92915050565b60008083601f84011261284f5761284e613820565b5b8235905067ffffffffffffffff81111561286c5761286b61381b565b5b60208301915083602082028301111561288857612887613825565b5b9250929050565b60008135905061289e81613edf565b92915050565b6000813590506128b381613ef6565b92915050565b6000815190506128c881613ef6565b92915050565b600082601f8301126128e3576128e2613820565b5b81356128f38482602086016127a0565b91505092915050565b600082601f83011261291157612910613820565b5b81356129218482602086016127e2565b91505092915050565b60008135905061293981613f0d565b92915050565b60006020828403121561295557612954613834565b5b600061296384828501612824565b91505092915050565b6000806040838503121561298357612982613834565b5b600061299185828601612824565b92505060206129a285828601612824565b9150509250929050565b6000806000606084860312156129c5576129c4613834565b5b60006129d386828701612824565b93505060206129e486828701612824565b92505060406129f58682870161292a565b9150509250925092565b60008060008060808587031215612a1957612a18613834565b5b6000612a2787828801612824565b9450506020612a3887828801612824565b9350506040612a498782880161292a565b925050606085013567ffffffffffffffff811115612a6a57612a6961382f565b5b612a76878288016128ce565b91505092959194509250565b60008060408385031215612a9957612a98613834565b5b6000612aa785828601612824565b9250506020612ab88582860161288f565b9150509250929050565b60008060408385031215612ad957612ad8613834565b5b6000612ae785828601612824565b9250506020612af88582860161292a565b9150509250929050565b60008060208385031215612b1957612b18613834565b5b600083013567ffffffffffffffff811115612b3757612b3661382f565b5b612b4385828601612839565b92509250509250929050565b600060208284031215612b6557612b64613834565b5b6000612b73848285016128a4565b91505092915050565b600060208284031215612b9257612b91613834565b5b6000612ba0848285016128b9565b91505092915050565b600060208284031215612bbf57612bbe613834565b5b600082013567ffffffffffffffff811115612bdd57612bdc61382f565b5b612be9848285016128fc565b91505092915050565b600060208284031215612c0857612c07613834565b5b6000612c168482850161292a565b91505092915050565b612c2881613573565b82525050565b612c3781613585565b82525050565b6000612c488261341b565b612c528185613431565b9350612c628185602086016135f6565b612c6b81613839565b840191505092915050565b6000612c8182613426565b612c8b8185613442565b9350612c9b8185602086016135f6565b612ca481613839565b840191505092915050565b6000612cba82613426565b612cc48185613453565b9350612cd48185602086016135f6565b80840191505092915050565b6000612ced604f83613442565b9150612cf88261384a565b606082019050919050565b6000612d10603283613442565b9150612d1b826138bf565b604082019050919050565b6000612d33602683613442565b9150612d3e8261390e565b604082019050919050565b6000612d56601c83613442565b9150612d618261395d565b602082019050919050565b6000612d79602483613442565b9150612d8482613986565b604082019050919050565b6000612d9c601983613442565b9150612da7826139d5565b602082019050919050565b6000612dbf602c83613442565b9150612dca826139fe565b604082019050919050565b6000612de2602e83613442565b9150612ded82613a4d565b604082019050919050565b6000612e05603883613442565b9150612e1082613a9c565b604082019050919050565b6000612e28602a83613442565b9150612e3382613aeb565b604082019050919050565b6000612e4b602983613442565b9150612e5682613b3a565b604082019050919050565b6000612e6e602083613442565b9150612e7982613b89565b602082019050919050565b6000612e91602c83613442565b9150612e9c82613bb2565b604082019050919050565b6000612eb4603e83613442565b9150612ebf82613c01565b604082019050919050565b6000612ed7602083613442565b9150612ee282613c50565b602082019050919050565b6000612efa602983613442565b9150612f0582613c79565b604082019050919050565b6000612f1d602f83613442565b9150612f2882613cc8565b604082019050919050565b6000612f40602183613442565b9150612f4b82613d17565b604082019050919050565b6000612f63604883613442565b9150612f6e82613d66565b606082019050919050565b6000612f86603183613442565b9150612f9182613ddb565b604082019050919050565b6000612fa9603f83613442565b9150612fb482613e2a565b604082019050919050565b6000612fcc603a83613442565b9150612fd782613e79565b604082019050919050565b612feb816135dd565b82525050565b6000612ffd8285612caf565b91506130098284612caf565b91508190509392505050565b600060208201905061302a6000830184612c1f565b92915050565b60006080820190506130456000830187612c1f565b6130526020830186612c1f565b61305f6040830185612fe2565b81810360608301526130718184612c3d565b905095945050505050565b60006020820190506130916000830184612c2e565b92915050565b600060208201905081810360008301526130b18184612c76565b905092915050565b600060208201905081810360008301526130d281612ce0565b9050919050565b600060208201905081810360008301526130f281612d03565b9050919050565b6000602082019050818103600083015261311281612d26565b9050919050565b6000602082019050818103600083015261313281612d49565b9050919050565b6000602082019050818103600083015261315281612d6c565b9050919050565b6000602082019050818103600083015261317281612d8f565b9050919050565b6000602082019050818103600083015261319281612db2565b9050919050565b600060208201905081810360008301526131b281612dd5565b9050919050565b600060208201905081810360008301526131d281612df8565b9050919050565b600060208201905081810360008301526131f281612e1b565b9050919050565b6000602082019050818103600083015261321281612e3e565b9050919050565b6000602082019050818103600083015261323281612e61565b9050919050565b6000602082019050818103600083015261325281612e84565b9050919050565b6000602082019050818103600083015261327281612ea7565b9050919050565b6000602082019050818103600083015261329281612eca565b9050919050565b600060208201905081810360008301526132b281612eed565b9050919050565b600060208201905081810360008301526132d281612f10565b9050919050565b600060208201905081810360008301526132f281612f33565b9050919050565b6000602082019050818103600083015261331281612f56565b9050919050565b6000602082019050818103600083015261333281612f79565b9050919050565b6000602082019050818103600083015261335281612f9c565b9050919050565b6000602082019050818103600083015261337281612fbf565b9050919050565b600060208201905061338e6000830184612fe2565b92915050565b600061339e6133af565b90506133aa8282613685565b919050565b6000604051905090565b600067ffffffffffffffff8211156133d4576133d36137ec565b5b6133dd82613839565b9050602081019050919050565b600067ffffffffffffffff821115613405576134046137ec565b5b61340e82613839565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613469826135dd565b9150613474836135dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134a9576134a8613730565b5b828201905092915050565b60006134bf826135dd565b91506134ca836135dd565b9250826134da576134d961375f565b5b828204905092915050565b60006134f0826135dd565b91506134fb836135dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561353457613533613730565b5b828202905092915050565b600061354a826135dd565b9150613555836135dd565b92508282101561356857613567613730565b5b828203905092915050565b600061357e826135bd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136145780820151818401526020810190506135f9565b83811115613623576000848401525b50505050565b6000613634826135dd565b9150600082141561364857613647613730565b5b600182039050919050565b6000600282049050600182168061366b57607f821691505b6020821081141561367f5761367e61378e565b5b50919050565b61368e82613839565b810181811067ffffffffffffffff821117156136ad576136ac6137ec565b5b80604052505050565b60006136c1826135dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f4576136f3613730565b5b600182019050919050565b600061370a826135dd565b9150613715836135dd565b9250826137255761372461375f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e66696e697465205265616c6d2037372d453a20546865726520776173206e60008201527f6f7420656e6f7567682f657874726120455448207472616e736665727265642060208201527f746f206d696e7420616e204e46542e0000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a204e46542063616e6e6f742060008201527f6265206d696e746564207965742e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a204d696e7420616d6f756e7460008201527f2065786365656473206d6178206c696d6974207065722077616c6c65742e0000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a20546865726520617265206e60008201527f6f206d6f72652072656d61696e696e67207265736572766564204e465427732060208201527f746f206d696e742e000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a20546865726520617265206e60008201527f6f206d6f72652072656d61696e696e67204e4654277320746f206d696e742e00602082015250565b7f496e66696e697465205265616c6d2037372d453a204d696e7420616d6f756e7460008201527f2065786365656473206d6178206c696d6974207065722074782e000000000000602082015250565b613ed181613573565b8114613edc57600080fd5b50565b613ee881613585565b8114613ef357600080fd5b50565b613eff81613591565b8114613f0a57600080fd5b50565b613f16816135dd565b8114613f2157600080fd5b5056fea26469706673582212207394a9ed0bcf544ad20c0faf4069d6ea0ebdb890a64e2fc21017ef669ebe536964736f6c63430008060033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063b19960e611610095578063e16ff2f411610064578063e16ff2f414610699578063e7ecda90146106c4578063e985e9c5146106ed578063f2fde38b1461072a576101e3565b8063b19960e6146105f1578063b88d4fde1461061c578063c87b56dd14610645578063d0fa532014610682576101e3565b80639a5d140b116100d15780639a5d140b14610558578063a035b1fe14610581578063a0712d68146105ac578063a22cb465146105c8576101e3565b80638da5cb5b146104ae5780638ecad721146104d957806391b7f5ed1461050457806395d89b411461052d576101e3565b80633ccfd60b1161017a57806368428a1b1161014957806368428a1b146104045780636c0360eb1461042f57806370a082311461045a578063715018a614610497576101e3565b80633ccfd60b1461035e57806342842e0e1461037557806355f804b31461039e5780636352211e146103c7576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806323b872dd146102df5780632a33f5531461030857806332cb6b0c14610333576101e3565b806301ffc9a7146101e8578063053d4a5f1461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612b4f565b610753565b60405161021c919061307c565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612bf2565b610835565b005b34801561025a57600080fd5b5061026361090f565b6040516102709190613097565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612bf2565b6109a1565b6040516102ad9190613015565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612ac2565b610a26565b005b3480156102eb57600080fd5b50610306600480360381019061030191906129ac565b610b3e565b005b34801561031457600080fd5b5061031d610b9e565b60405161032a9190613379565b60405180910390f35b34801561033f57600080fd5b50610348610ba4565b6040516103559190613379565b60405180910390f35b34801561036a57600080fd5b50610373610baa565b005b34801561038157600080fd5b5061039c600480360381019061039791906129ac565b610c76565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190612ba9565b610c96565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190612bf2565b610d2c565b6040516103fb9190613015565b60405180910390f35b34801561041057600080fd5b50610419610dde565b604051610426919061307c565b60405180910390f35b34801561043b57600080fd5b50610444610df1565b6040516104519190613097565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061293f565b610e7f565b60405161048e9190613379565b60405180910390f35b3480156104a357600080fd5b506104ac610f37565b005b3480156104ba57600080fd5b506104c3610fbf565b6040516104d09190613015565b60405180910390f35b3480156104e557600080fd5b506104ee610fe9565b6040516104fb9190613379565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612bf2565b610fee565b005b34801561053957600080fd5b50610542611080565b60405161054f9190613097565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612bf2565b611112565b005b34801561058d57600080fd5b5061059661124a565b6040516105a39190613379565b60405180910390f35b6105c660048036038101906105c19190612bf2565b611250565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190612a82565b6114ce565b005b3480156105fd57600080fd5b5061060661164f565b6040516106139190613379565b60405180910390f35b34801561062857600080fd5b50610643600480360381019061063e91906129ff565b611654565b005b34801561065157600080fd5b5061066c60048036038101906106679190612bf2565b6116b6565b6040516106799190613097565b60405180910390f35b34801561068e57600080fd5b5061069761175d565b005b3480156106a557600080fd5b506106ae611805565b6040516106bb9190613379565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612b02565b61180b565b005b3480156106f957600080fd5b50610714600480360381019061070f919061296c565b611971565b604051610721919061307c565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c919061293f565b611a05565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061082e575061082d82611b13565b5b9050919050565b61083d611b7d565b73ffffffffffffffffffffffffffffffffffffffff1661085b610fbf565b73ffffffffffffffffffffffffffffffffffffffff16146108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a890613279565b60405180910390fd5b80600954600c546108c2919061353f565b811115610904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fb90613339565b60405180910390fd5b816009819055505050565b60606000805461091e90613653565b80601f016020809104026020016040519081016040528092919081815260200182805461094a90613653565b80156109975780601f1061096c57610100808354040283529160200191610997565b820191906000526020600020905b81548152906001019060200180831161097a57829003601f168201915b5050505050905090565b60006109ac82611b85565b6109eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e290613239565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3182610d2c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a99906132d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac1611b7d565b73ffffffffffffffffffffffffffffffffffffffff161480610af05750610aef81610aea611b7d565b611971565b5b610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b26906131b9565b60405180910390fd5b610b398383611bf1565b505050565b610b4f610b49611b7d565b82611caa565b610b8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8590613319565b60405180910390fd5b610b99838383611d88565b505050565b600c5481565b611e6181565b610bb2611b7d565b73ffffffffffffffffffffffffffffffffffffffff16610bd0610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613279565b60405180910390fd5b610c2e610fbf565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c73573d6000803e3d6000fd5b50565b610c9183838360405180602001604052806000815250611654565b505050565b610c9e611b7d565b73ffffffffffffffffffffffffffffffffffffffff16610cbc610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613279565b60405180910390fd5b80600a9080519060200190610d289291906126fd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906131f9565b60405180910390fd5b80915050919050565b600b60009054906101000a900460ff1681565b600a8054610dfe90613653565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2a90613653565b8015610e775780601f10610e4c57610100808354040283529160200191610e77565b820191906000526020600020905b815481529060010190602001808311610e5a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee7906131d9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f3f611b7d565b73ffffffffffffffffffffffffffffffffffffffff16610f5d610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90613279565b60405180910390fd5b610fbd6000611fe4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600481565b610ff6611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611014610fbf565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190613279565b60405180910390fd5b60018161107791906134e5565b60088190555050565b60606001805461108f90613653565b80601f01602080910402602001604051908101604052809291908181526020018280546110bb90613653565b80156111085780601f106110dd57610100808354040283529160200191611108565b820191906000526020600020905b8154815290600101906020018083116110eb57829003601f168201915b5050505050905090565b61111a611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611138610fbf565b73ffffffffffffffffffffffffffffffffffffffff161461118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590613279565b60405180910390fd5b806009548111156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906132f9565b60405180910390fd5b60005b828110156112455760006111eb60076120aa565b90506111f733826120b8565b6112016007611afd565b600c600081548092919061121490613629565b91905055506009600081548092919061122c90613629565b919050555050808061123d906136b6565b9150506111d7565b505050565b60085481565b600b60009054906101000a900460ff1661129f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129690613199565b60405180910390fd5b80600954600c546112b0919061353f565b8111156112f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e990613339565b60405180910390fd5b816004811115611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613359565b60405180910390fd5b82600c81600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611385919061345e565b11156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613259565b60405180910390fd5b83600854816113d591906134e5565b3414611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d906130b9565b60405180910390fd5b60005b858110156114c657600061142d60076120aa565b905061143933826120b8565b6114436007611afd565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611493919061345e565b92505081905550600c60008154809291906114ad90613629565b91905055505080806114be906136b6565b915050611419565b505050505050565b6114d6611b7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b90613159565b60405180910390fd5b8060056000611551611b7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115fe611b7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611643919061307c565b60405180910390a35050565b600c81565b61166561165f611b7d565b83611caa565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613319565b60405180910390fd5b6116b0848484846120d6565b50505050565b60606116c182611b85565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906132b9565b60405180910390fd5b600061170a612132565b9050600081511161172a5760405180602001604052806000815250611755565b80611734846121c4565b604051602001611745929190612ff1565b6040516020818303038152906040525b915050919050565b611765611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611783610fbf565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613279565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b60095481565b611813611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611831610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90613279565b60405180910390fd5b818190506009548111156118d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c7906132f9565b60405180910390fd5b60005b8383905081101561196b5760006118ea60076120aa565b905061191d858584818110611902576119016137bd565b5b9050602002016020810190611917919061293f565b826120b8565b6119276007611afd565b600c600081548092919061193a90613629565b91905055506009600081548092919061195290613629565b9190505550508080611963906136b6565b9150506118d3565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a0d611b7d565b73ffffffffffffffffffffffffffffffffffffffff16611a2b610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890613279565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae8906130f9565b60405180910390fd5b611afa81611fe4565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c6483610d2c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cb582611b85565b611cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ceb90613179565b60405180910390fd5b6000611cff83610d2c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d6e57508373ffffffffffffffffffffffffffffffffffffffff16611d56846109a1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d7f5750611d7e8185611971565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da882610d2c565b73ffffffffffffffffffffffffffffffffffffffff1614611dfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df590613299565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6590613139565b60405180910390fd5b611e79838383612325565b611e84600082611bf1565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed4919061353f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2b919061345e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b6120d282826040518060200160405280600081525061232a565b5050565b6120e1848484611d88565b6120ed84848484612385565b61212c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612123906130d9565b60405180910390fd5b50505050565b6060600a805461214190613653565b80601f016020809104026020016040519081016040528092919081815260200182805461216d90613653565b80156121ba5780601f1061218f576101008083540402835291602001916121ba565b820191906000526020600020905b81548152906001019060200180831161219d57829003601f168201915b5050505050905090565b6060600082141561220c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612320565b600082905060005b6000821461223e578080612227906136b6565b915050600a8261223791906134b4565b9150612214565b60008167ffffffffffffffff81111561225a576122596137ec565b5b6040519080825280601f01601f19166020018201604052801561228c5781602001600182028036833780820191505090505b5090505b60008514612319576001826122a5919061353f565b9150600a856122b491906136ff565b60306122c0919061345e565b60f81b8183815181106122d6576122d56137bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561231291906134b4565b9450612290565b8093505050505b919050565b505050565b612334838361251c565b6123416000848484612385565b612380576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612377906130d9565b60405180910390fd5b505050565b60006123a68473ffffffffffffffffffffffffffffffffffffffff166126ea565b1561250f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123cf611b7d565b8786866040518563ffffffff1660e01b81526004016123f19493929190613030565b602060405180830381600087803b15801561240b57600080fd5b505af192505050801561243c57506040513d601f19601f820116820180604052508101906124399190612b7c565b60015b6124bf573d806000811461246c576040519150601f19603f3d011682016040523d82523d6000602084013e612471565b606091505b506000815114156124b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ae906130d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612514565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561258c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258390613219565b60405180910390fd5b61259581611b85565b156125d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cc90613119565b60405180910390fd5b6125e160008383612325565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612631919061345e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461270990613653565b90600052602060002090601f01602090048101928261272b5760008555612772565b82601f1061274457805160ff1916838001178555612772565b82800160010185558215612772579182015b82811115612771578251825591602001919060010190612756565b5b50905061277f9190612783565b5090565b5b8082111561279c576000816000905550600101612784565b5090565b60006127b36127ae846133b9565b613394565b9050828152602081018484840111156127cf576127ce61382a565b5b6127da8482856135e7565b509392505050565b60006127f56127f0846133ea565b613394565b9050828152602081018484840111156128115761281061382a565b5b61281c8482856135e7565b509392505050565b60008135905061283381613ec8565b92915050565b60008083601f84011261284f5761284e613820565b5b8235905067ffffffffffffffff81111561286c5761286b61381b565b5b60208301915083602082028301111561288857612887613825565b5b9250929050565b60008135905061289e81613edf565b92915050565b6000813590506128b381613ef6565b92915050565b6000815190506128c881613ef6565b92915050565b600082601f8301126128e3576128e2613820565b5b81356128f38482602086016127a0565b91505092915050565b600082601f83011261291157612910613820565b5b81356129218482602086016127e2565b91505092915050565b60008135905061293981613f0d565b92915050565b60006020828403121561295557612954613834565b5b600061296384828501612824565b91505092915050565b6000806040838503121561298357612982613834565b5b600061299185828601612824565b92505060206129a285828601612824565b9150509250929050565b6000806000606084860312156129c5576129c4613834565b5b60006129d386828701612824565b93505060206129e486828701612824565b92505060406129f58682870161292a565b9150509250925092565b60008060008060808587031215612a1957612a18613834565b5b6000612a2787828801612824565b9450506020612a3887828801612824565b9350506040612a498782880161292a565b925050606085013567ffffffffffffffff811115612a6a57612a6961382f565b5b612a76878288016128ce565b91505092959194509250565b60008060408385031215612a9957612a98613834565b5b6000612aa785828601612824565b9250506020612ab88582860161288f565b9150509250929050565b60008060408385031215612ad957612ad8613834565b5b6000612ae785828601612824565b9250506020612af88582860161292a565b9150509250929050565b60008060208385031215612b1957612b18613834565b5b600083013567ffffffffffffffff811115612b3757612b3661382f565b5b612b4385828601612839565b92509250509250929050565b600060208284031215612b6557612b64613834565b5b6000612b73848285016128a4565b91505092915050565b600060208284031215612b9257612b91613834565b5b6000612ba0848285016128b9565b91505092915050565b600060208284031215612bbf57612bbe613834565b5b600082013567ffffffffffffffff811115612bdd57612bdc61382f565b5b612be9848285016128fc565b91505092915050565b600060208284031215612c0857612c07613834565b5b6000612c168482850161292a565b91505092915050565b612c2881613573565b82525050565b612c3781613585565b82525050565b6000612c488261341b565b612c528185613431565b9350612c628185602086016135f6565b612c6b81613839565b840191505092915050565b6000612c8182613426565b612c8b8185613442565b9350612c9b8185602086016135f6565b612ca481613839565b840191505092915050565b6000612cba82613426565b612cc48185613453565b9350612cd48185602086016135f6565b80840191505092915050565b6000612ced604f83613442565b9150612cf88261384a565b606082019050919050565b6000612d10603283613442565b9150612d1b826138bf565b604082019050919050565b6000612d33602683613442565b9150612d3e8261390e565b604082019050919050565b6000612d56601c83613442565b9150612d618261395d565b602082019050919050565b6000612d79602483613442565b9150612d8482613986565b604082019050919050565b6000612d9c601983613442565b9150612da7826139d5565b602082019050919050565b6000612dbf602c83613442565b9150612dca826139fe565b604082019050919050565b6000612de2602e83613442565b9150612ded82613a4d565b604082019050919050565b6000612e05603883613442565b9150612e1082613a9c565b604082019050919050565b6000612e28602a83613442565b9150612e3382613aeb565b604082019050919050565b6000612e4b602983613442565b9150612e5682613b3a565b604082019050919050565b6000612e6e602083613442565b9150612e7982613b89565b602082019050919050565b6000612e91602c83613442565b9150612e9c82613bb2565b604082019050919050565b6000612eb4603e83613442565b9150612ebf82613c01565b604082019050919050565b6000612ed7602083613442565b9150612ee282613c50565b602082019050919050565b6000612efa602983613442565b9150612f0582613c79565b604082019050919050565b6000612f1d602f83613442565b9150612f2882613cc8565b604082019050919050565b6000612f40602183613442565b9150612f4b82613d17565b604082019050919050565b6000612f63604883613442565b9150612f6e82613d66565b606082019050919050565b6000612f86603183613442565b9150612f9182613ddb565b604082019050919050565b6000612fa9603f83613442565b9150612fb482613e2a565b604082019050919050565b6000612fcc603a83613442565b9150612fd782613e79565b604082019050919050565b612feb816135dd565b82525050565b6000612ffd8285612caf565b91506130098284612caf565b91508190509392505050565b600060208201905061302a6000830184612c1f565b92915050565b60006080820190506130456000830187612c1f565b6130526020830186612c1f565b61305f6040830185612fe2565b81810360608301526130718184612c3d565b905095945050505050565b60006020820190506130916000830184612c2e565b92915050565b600060208201905081810360008301526130b18184612c76565b905092915050565b600060208201905081810360008301526130d281612ce0565b9050919050565b600060208201905081810360008301526130f281612d03565b9050919050565b6000602082019050818103600083015261311281612d26565b9050919050565b6000602082019050818103600083015261313281612d49565b9050919050565b6000602082019050818103600083015261315281612d6c565b9050919050565b6000602082019050818103600083015261317281612d8f565b9050919050565b6000602082019050818103600083015261319281612db2565b9050919050565b600060208201905081810360008301526131b281612dd5565b9050919050565b600060208201905081810360008301526131d281612df8565b9050919050565b600060208201905081810360008301526131f281612e1b565b9050919050565b6000602082019050818103600083015261321281612e3e565b9050919050565b6000602082019050818103600083015261323281612e61565b9050919050565b6000602082019050818103600083015261325281612e84565b9050919050565b6000602082019050818103600083015261327281612ea7565b9050919050565b6000602082019050818103600083015261329281612eca565b9050919050565b600060208201905081810360008301526132b281612eed565b9050919050565b600060208201905081810360008301526132d281612f10565b9050919050565b600060208201905081810360008301526132f281612f33565b9050919050565b6000602082019050818103600083015261331281612f56565b9050919050565b6000602082019050818103600083015261333281612f79565b9050919050565b6000602082019050818103600083015261335281612f9c565b9050919050565b6000602082019050818103600083015261337281612fbf565b9050919050565b600060208201905061338e6000830184612fe2565b92915050565b600061339e6133af565b90506133aa8282613685565b919050565b6000604051905090565b600067ffffffffffffffff8211156133d4576133d36137ec565b5b6133dd82613839565b9050602081019050919050565b600067ffffffffffffffff821115613405576134046137ec565b5b61340e82613839565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613469826135dd565b9150613474836135dd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134a9576134a8613730565b5b828201905092915050565b60006134bf826135dd565b91506134ca836135dd565b9250826134da576134d961375f565b5b828204905092915050565b60006134f0826135dd565b91506134fb836135dd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561353457613533613730565b5b828202905092915050565b600061354a826135dd565b9150613555836135dd565b92508282101561356857613567613730565b5b828203905092915050565b600061357e826135bd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136145780820151818401526020810190506135f9565b83811115613623576000848401525b50505050565b6000613634826135dd565b9150600082141561364857613647613730565b5b600182039050919050565b6000600282049050600182168061366b57607f821691505b6020821081141561367f5761367e61378e565b5b50919050565b61368e82613839565b810181811067ffffffffffffffff821117156136ad576136ac6137ec565b5b80604052505050565b60006136c1826135dd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136f4576136f3613730565b5b600182019050919050565b600061370a826135dd565b9150613715836135dd565b9250826137255761372461375f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e66696e697465205265616c6d2037372d453a20546865726520776173206e60008201527f6f7420656e6f7567682f657874726120455448207472616e736665727265642060208201527f746f206d696e7420616e204e46542e0000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a204e46542063616e6e6f742060008201527f6265206d696e746564207965742e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a204d696e7420616d6f756e7460008201527f2065786365656473206d6178206c696d6974207065722077616c6c65742e0000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a20546865726520617265206e60008201527f6f206d6f72652072656d61696e696e67207265736572766564204e465427732060208201527f746f206d696e742e000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e66696e697465205265616c6d2037372d453a20546865726520617265206e60008201527f6f206d6f72652072656d61696e696e67204e4654277320746f206d696e742e00602082015250565b7f496e66696e697465205265616c6d2037372d453a204d696e7420616d6f756e7460008201527f2065786365656473206d6178206c696d6974207065722074782e000000000000602082015250565b613ed181613573565b8114613edc57600080fd5b50565b613ee881613585565b8114613ef357600080fd5b50565b613eff81613591565b8114613f0a57600080fd5b50565b613f16816135dd565b8114613f2157600080fd5b5056fea26469706673582212207394a9ed0bcf544ad20c0faf4069d6ea0ebdb890a64e2fc21017ef669ebe536964736f6c63430008060033

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.