ETH Price: $3,443.32 (-0.99%)
Gas: 5 Gwei

Token

AirHeadz (AIRHEADZ)
 

Overview

Max Total Supply

4,135 AIRHEADZ

Holders

715

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AIRHEADZ
0xEdc15E460495104aaBE944C31f15A41fd9E1ca93
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AirHeadz

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : AirHeadz.sol
//SPDX-License-Identifier: UNLICENSED

pragma solidity >=0.7.0 <0.9.0;

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

contract AirHeadz is ERC721, Ownable {
  using Counters for Counters.Counter;
  using SafeMath for uint256;

  Counters.Counter private supply;

  uint256 public publicCost = .003 ether;
  uint256 public maxMintAmountPlusOne = 6;

  uint256 public maxFreePlusOne = 2501; //11
  uint256 public maxSupplyPlusOne = 5001; //21
  uint256 public devMintAmount = 51;

  string public PROVENANCE;
  string private _baseURIextended;

  bool public saleIsActive;
  address payable public immutable devAddress = payable(0x30B9721de4c8acf3863C32C666359eA623A3E91f);
  address payable public immutable creatorAddress = payable(0x0F25b73e6f85f7F90B1865c536F1BDb9AD07f697);
  address payable public immutable marketingAddress = payable(0x03443e172ea6Bdb4EfC27eA2b3C12d659949635B);

  constructor() ERC721("AirHeadz", "AIRHEADZ") {
    _baseURIextended = "ipfs://Qmco8udX7hx5AvwCBXg2enTTYrrJaksbP4Njj52QLZWaHn/";
    _mintLoop(msg.sender, devMintAmount);
    saleIsActive = false; 
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount < maxMintAmountPlusOne, "Invalid mint amount!");
    require(supply.current() + _mintAmount < maxSupplyPlusOne, "Max supply exceeded!");
    _; 
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require (saleIsActive, "Public sale inactive");

    if (supply.current() + _mintAmount > maxFreePlusOne) {
        require(msg.value >= publicCost * _mintAmount, "Not enough eth sent!");
    }
    _mintLoop(msg.sender, _mintAmount);
  }

  function setSale(bool newState) public onlyOwner {
    saleIsActive = newState;
  }

  function setProvenance(string memory provenance) public onlyOwner {
    PROVENANCE = provenance;
  }

  function setPublicCost(uint256 _newCost) public onlyOwner {
    publicCost = _newCost;
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function setBaseURI(string memory baseURI_) external onlyOwner() {
    _baseURIextended = baseURI_;
  }

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

  function withdraw() public onlyOwner {
      uint256 balance = address(this).balance;
      Address.sendValue(devAddress, balance.mul(13).div(100));
      Address.sendValue(marketingAddress, balance.mul(5).div(100));
      Address.sendValue(creatorAddress, balance.mul(82).div(100));
  }
}

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"creatorAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyPlusOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","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":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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"}]

60e0604052660aa87bee53800060085560066009556109c5600a55611389600b556033600c557330b9721de4c8acf3863c32c666359ea623a3e91f73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b815250730f25b73e6f85f7f90b1865c536f1bdb9ad07f69773ffffffffffffffffffffffffffffffffffffffff1660a09073ffffffffffffffffffffffffffffffffffffffff1660601b8152507303443e172ea6bdb4efc27ea2b3c12d659949635b73ffffffffffffffffffffffffffffffffffffffff1660c09073ffffffffffffffffffffffffffffffffffffffff1660601b8152503480156200011057600080fd5b506040518060400160405280600881526020017f416972486561647a0000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f414952484541445a00000000000000000000000000000000000000000000000081525081600090805190602001906200019592919062000871565b508060019080519060200190620001ae92919062000871565b505050620001d1620001c56200023860201b60201c565b6200024060201b60201c565b60405180606001604052806036815260200162004afe60369139600e90805190602001906200020292919062000871565b506200021733600c546200030660201b60201c565b6000600f60006101000a81548160ff02191690831515021790555062000dce565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101562000367576200032960076200036c60201b620016f91760201c565b62000351836200034560076200038260201b6200170f1760201c565b6200039060201b60201c565b80806200035e9062000c56565b91505062000309565b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b620003b2828260405180602001604052806000815250620003b660201b60201c565b5050565b620003c883836200042460201b60201c565b620003dd60008484846200061e60201b60201c565b6200041f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004169062000a90565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048e9062000ad4565b60405180910390fd5b620004a881620007d860201b60201c565b15620004eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e29062000ab2565b60405180910390fd5b620004ff600083836200084460201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000551919062000b23565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200061a600083836200084960201b60201c565b5050565b60006200064c8473ffffffffffffffffffffffffffffffffffffffff166200084e60201b6200171d1760201c565b15620007cb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200067e6200023860201b60201c565b8786866040518563ffffffff1660e01b8152600401620006a2949392919062000a3c565b602060405180830381600087803b158015620006bd57600080fd5b505af1925050508015620006f157506040513d601f19601f82011682018060405250810190620006ee919062000938565b60015b6200077a573d806000811462000724576040519150601f19603f3d011682016040523d82523d6000602084013e62000729565b606091505b5060008151141562000772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007699062000a90565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620007d0565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546200087f9062000c20565b90600052602060002090601f016020900481019282620008a35760008555620008ef565b82601f10620008be57805160ff1916838001178555620008ef565b82800160010185558215620008ef579182015b82811115620008ee578251825591602001919060010190620008d1565b5b509050620008fe919062000902565b5090565b5b808211156200091d57600081600090555060010162000903565b5090565b600081519050620009328162000db4565b92915050565b6000602082840312156200094b57600080fd5b60006200095b8482850162000921565b91505092915050565b6200096f8162000b80565b82525050565b6000620009828262000af6565b6200098e818562000b01565b9350620009a081856020860162000bea565b620009ab8162000d02565b840191505092915050565b6000620009c560328362000b12565b9150620009d28262000d13565b604082019050919050565b6000620009ec601c8362000b12565b9150620009f98262000d62565b602082019050919050565b600062000a1360208362000b12565b915062000a208262000d8b565b602082019050919050565b62000a368162000be0565b82525050565b600060808201905062000a53600083018762000964565b62000a62602083018662000964565b62000a71604083018562000a2b565b818103606083015262000a85818462000975565b905095945050505050565b6000602082019050818103600083015262000aab81620009b6565b9050919050565b6000602082019050818103600083015262000acd81620009dd565b9050919050565b6000602082019050818103600083015262000aef8162000a04565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000b308262000be0565b915062000b3d8362000be0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b755762000b7462000ca4565b5b828201905092915050565b600062000b8d8262000bc0565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000c0a57808201518184015260208101905062000bed565b8381111562000c1a576000848401525b50505050565b6000600282049050600182168062000c3957607f821691505b6020821081141562000c505762000c4f62000cd3565b5b50919050565b600062000c638262000be0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000c995762000c9862000ca4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000dbf8162000b94565b811462000dcb57600080fd5b50565b60805160601c60a05160601c60c05160601c613ce262000e1c60003960008181610cba0152611363015260008181610d0a015261149c015260008181610bc20152610c6a0152613ce26000f3fe6080604052600436106101ee5760003560e01c8063811d24371161010d578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c5146106ba578063eb8d2444146106f7578063ec3748c614610722578063f2fde38b1461074d578063ffe630b514610776576101ee565b8063c87b56dd146105fc578063d4d20d5914610639578063e07dcd1414610664578063e927fc5c1461068f576101ee565b8063a0712d68116100dc578063a0712d6814610563578063a22cb4651461057f578063a5ece941146105a8578063b88d4fde146105d3576101ee565b8063811d2437146104b95780638693da20146104e25780638da5cb5b1461050d57806395d89b4114610538576101ee565b80633ad10ef6116101855780636352211e116101545780636352211e146103fd5780636373a6b11461043a57806370a0823114610465578063715018a6146104a2576101ee565b80633ad10ef6146103695780633ccfd60b1461039457806342842e0e146103ab57806355f804b3146103d4576101ee565b806318160ddd116101c157806318160ddd146102c15780631d2e5a3a146102ec57806323b872dd146103155780632b935c0f1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906129ea565b61079f565b6040516102279190612f65565b60405180910390f35b34801561023c57600080fd5b50610245610881565b6040516102529190612f80565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612a7d565b610913565b60405161028f9190612ee3565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612985565b610998565b005b3480156102cd57600080fd5b506102d6610ab0565b6040516102e39190613262565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906129c1565b610ac1565b005b34801561032157600080fd5b5061033c6004803603810190610337919061287f565b610b5a565b005b34801561034a57600080fd5b50610353610bba565b6040516103609190613262565b60405180910390f35b34801561037557600080fd5b5061037e610bc0565b60405161038b9190612efe565b60405180910390f35b3480156103a057600080fd5b506103a9610be4565b005b3480156103b757600080fd5b506103d260048036038101906103cd919061287f565b610d58565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612a3c565b610d78565b005b34801561040957600080fd5b50610424600480360381019061041f9190612a7d565b610e0e565b6040516104319190612ee3565b60405180910390f35b34801561044657600080fd5b5061044f610ec0565b60405161045c9190612f80565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061281a565b610f4e565b6040516104999190613262565b60405180910390f35b3480156104ae57600080fd5b506104b7611006565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612a7d565b61108e565b005b3480156104ee57600080fd5b506104f7611114565b6040516105049190613262565b60405180910390f35b34801561051957600080fd5b5061052261111a565b60405161052f9190612ee3565b60405180910390f35b34801561054457600080fd5b5061054d611144565b60405161055a9190612f80565b60405180910390f35b61057d60048036038101906105789190612a7d565b6111d6565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612949565b61134b565b005b3480156105b457600080fd5b506105bd611361565b6040516105ca9190612efe565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906128ce565b611385565b005b34801561060857600080fd5b50610623600480360381019061061e9190612a7d565b6113e7565b6040516106309190612f80565b60405180910390f35b34801561064557600080fd5b5061064e61148e565b60405161065b9190613262565b60405180910390f35b34801561067057600080fd5b50610679611494565b6040516106869190613262565b60405180910390f35b34801561069b57600080fd5b506106a461149a565b6040516106b19190612efe565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612843565b6114be565b6040516106ee9190612f65565b60405180910390f35b34801561070357600080fd5b5061070c611552565b6040516107199190612f65565b60405180910390f35b34801561072e57600080fd5b50610737611565565b6040516107449190613262565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061281a565b61156b565b005b34801561078257600080fd5b5061079d60048036038101906107989190612a3c565b611663565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a575061087982611740565b5b9050919050565b6060600080546108909061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc9061352f565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b600061091e826117aa565b61095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613162565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a382610e0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b906131e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a33611816565b73ffffffffffffffffffffffffffffffffffffffff161480610a625750610a6181610a5c611816565b6114be565b5b610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a98906130e2565b60405180910390fd5b610aab838361181e565b505050565b6000610abc600761170f565b905090565b610ac9611816565b73ffffffffffffffffffffffffffffffffffffffff16610ae761111a565b73ffffffffffffffffffffffffffffffffffffffff1614610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613182565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b610b6b610b65611816565b826118d7565b610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190613222565b60405180910390fd5b610bb58383836119b5565b505050565b60095481565b7f000000000000000000000000000000000000000000000000000000000000000081565b610bec611816565b73ffffffffffffffffffffffffffffffffffffffff16610c0a61111a565b73ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613182565b60405180910390fd5b6000479050610cb57f0000000000000000000000000000000000000000000000000000000000000000610cb06064610ca2600d86611c1c90919063ffffffff16565b611c3290919063ffffffff16565b611c48565b610d057f0000000000000000000000000000000000000000000000000000000000000000610d006064610cf2600586611c1c90919063ffffffff16565b611c3290919063ffffffff16565b611c48565b610d557f0000000000000000000000000000000000000000000000000000000000000000610d506064610d42605286611c1c90919063ffffffff16565b611c3290919063ffffffff16565b611c48565b50565b610d7383838360405180602001604052806000815250611385565b505050565b610d80611816565b73ffffffffffffffffffffffffffffffffffffffff16610d9e61111a565b73ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90613182565b60405180910390fd5b80600e9080519060200190610e0a92919061263e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613122565b60405180910390fd5b80915050919050565b600d8054610ecd9061352f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef99061352f565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613102565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61100e611816565b73ffffffffffffffffffffffffffffffffffffffff1661102c61111a565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613182565b60405180910390fd5b61108c6000611d3c565b565b611096611816565b73ffffffffffffffffffffffffffffffffffffffff166110b461111a565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613182565b60405180910390fd5b8060088190555050565b60085481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111539061352f565b80601f016020809104026020016040519081016040528092919081815260200182805461117f9061352f565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b5050505050905090565b806000811180156111e8575060095481105b611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613022565b60405180910390fd5b600b5481611235600761170f565b61123f9190613352565b1061127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690613202565b60405180910390fd5b600f60009054906101000a900460ff166112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906131c2565b60405180910390fd5b600a54826112dc600761170f565b6112e69190613352565b111561133d57816008546112fa91906133d9565b34101561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613242565b60405180910390fd5b5b6113473383611e02565b5050565b61135d611356611816565b8383611e42565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611396611390611816565b836118d7565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613222565b60405180910390fd5b6113e184848484611faf565b50505050565b60606113f2826117aa565b611431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611428906131a2565b60405180910390fd5b600061143b61200b565b9050600081511161145b5760405180602001604052806000815250611486565b806114658461209d565b604051602001611476929190612eaa565b6040516020818303038152906040525b915050919050565b600b5481565b600c5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b600a5481565b611573611816565b73ffffffffffffffffffffffffffffffffffffffff1661159161111a565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613182565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90612fc2565b60405180910390fd5b61166081611d3c565b50565b61166b611816565b73ffffffffffffffffffffffffffffffffffffffff1661168961111a565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613182565b60405180910390fd5b80600d90805190602001906116f592919061263e565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661189183610e0e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118e2826117aa565b611921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611918906130c2565b60405180910390fd5b600061192c83610e0e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061196e575061196d81856114be565b5b806119ac57508373ffffffffffffffffffffffffffffffffffffffff1661199484610913565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119d582610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290612fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613042565b60405180910390fd5b611aa683838361224a565b611ab160008261181e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b019190613433565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b589190613352565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c1783838361224f565b505050565b60008183611c2a91906133d9565b905092915050565b60008183611c4091906133a8565b905092915050565b80471015611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c82906130a2565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611cb190612ece565b60006040518083038185875af1925050503d8060008114611cee576040519150601f19603f3d011682016040523d82523d6000602084013e611cf3565b606091505b5050905080611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613082565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e3d57611e1760076116f9565b611e2a83611e25600761170f565b612254565b8080611e3590613592565b915050611e05565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613062565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fa29190612f65565b60405180910390a3505050565b611fba8484846119b5565b611fc684848484612272565b612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90612fa2565b60405180910390fd5b50505050565b6060600e805461201a9061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546120469061352f565b80156120935780601f1061206857610100808354040283529160200191612093565b820191906000526020600020905b81548152906001019060200180831161207657829003601f168201915b5050505050905090565b606060008214156120e5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612245565b600082905060005b6000821461211757808061210090613592565b915050600a8261211091906133a8565b91506120ed565b60008167ffffffffffffffff811115612159577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561218b5781602001600182028036833780820191505090505b5090505b6000851461223e576001826121a49190613433565b9150600a856121b391906135db565b60306121bf9190613352565b60f81b8183815181106121fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561223791906133a8565b945061218f565b8093505050505b919050565b505050565b505050565b61226e828260405180602001604052806000815250612409565b5050565b60006122938473ffffffffffffffffffffffffffffffffffffffff1661171d565b156123fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122bc611816565b8786866040518563ffffffff1660e01b81526004016122de9493929190612f19565b602060405180830381600087803b1580156122f857600080fd5b505af192505050801561232957506040513d601f19601f820116820180604052508101906123269190612a13565b60015b6123ac573d8060008114612359576040519150601f19603f3d011682016040523d82523d6000602084013e61235e565b606091505b506000815114156123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b90612fa2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612401565b600190505b949350505050565b6124138383612464565b6124206000848484612272565b61245f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245690612fa2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90613142565b60405180910390fd5b6124dd816117aa565b1561251d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251490613002565b60405180910390fd5b6125296000838361224a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125799190613352565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461263a6000838361224f565b5050565b82805461264a9061352f565b90600052602060002090601f01602090048101928261266c57600085556126b3565b82601f1061268557805160ff19168380011785556126b3565b828001600101855582156126b3579182015b828111156126b2578251825591602001919060010190612697565b5b5090506126c091906126c4565b5090565b5b808211156126dd5760008160009055506001016126c5565b5090565b60006126f46126ef846132a2565b61327d565b90508281526020810184848401111561270c57600080fd5b6127178482856134ed565b509392505050565b600061273261272d846132d3565b61327d565b90508281526020810184848401111561274a57600080fd5b6127558482856134ed565b509392505050565b60008135905061276c81613c50565b92915050565b60008135905061278181613c67565b92915050565b60008135905061279681613c7e565b92915050565b6000815190506127ab81613c7e565b92915050565b600082601f8301126127c257600080fd5b81356127d28482602086016126e1565b91505092915050565b600082601f8301126127ec57600080fd5b81356127fc84826020860161271f565b91505092915050565b60008135905061281481613c95565b92915050565b60006020828403121561282c57600080fd5b600061283a8482850161275d565b91505092915050565b6000806040838503121561285657600080fd5b60006128648582860161275d565b92505060206128758582860161275d565b9150509250929050565b60008060006060848603121561289457600080fd5b60006128a28682870161275d565b93505060206128b38682870161275d565b92505060406128c486828701612805565b9150509250925092565b600080600080608085870312156128e457600080fd5b60006128f28782880161275d565b94505060206129038782880161275d565b935050604061291487828801612805565b925050606085013567ffffffffffffffff81111561293157600080fd5b61293d878288016127b1565b91505092959194509250565b6000806040838503121561295c57600080fd5b600061296a8582860161275d565b925050602061297b85828601612772565b9150509250929050565b6000806040838503121561299857600080fd5b60006129a68582860161275d565b92505060206129b785828601612805565b9150509250929050565b6000602082840312156129d357600080fd5b60006129e184828501612772565b91505092915050565b6000602082840312156129fc57600080fd5b6000612a0a84828501612787565b91505092915050565b600060208284031215612a2557600080fd5b6000612a338482850161279c565b91505092915050565b600060208284031215612a4e57600080fd5b600082013567ffffffffffffffff811115612a6857600080fd5b612a74848285016127db565b91505092915050565b600060208284031215612a8f57600080fd5b6000612a9d84828501612805565b91505092915050565b612aaf81613479565b82525050565b612abe81613467565b82525050565b612acd8161348b565b82525050565b6000612ade82613304565b612ae8818561331a565b9350612af88185602086016134fc565b612b01816136c8565b840191505092915050565b6000612b178261330f565b612b218185613336565b9350612b318185602086016134fc565b612b3a816136c8565b840191505092915050565b6000612b508261330f565b612b5a8185613347565b9350612b6a8185602086016134fc565b80840191505092915050565b6000612b83603283613336565b9150612b8e826136d9565b604082019050919050565b6000612ba6602683613336565b9150612bb182613728565b604082019050919050565b6000612bc9602583613336565b9150612bd482613777565b604082019050919050565b6000612bec601c83613336565b9150612bf7826137c6565b602082019050919050565b6000612c0f601483613336565b9150612c1a826137ef565b602082019050919050565b6000612c32602483613336565b9150612c3d82613818565b604082019050919050565b6000612c55601983613336565b9150612c6082613867565b602082019050919050565b6000612c78603a83613336565b9150612c8382613890565b604082019050919050565b6000612c9b601d83613336565b9150612ca6826138df565b602082019050919050565b6000612cbe602c83613336565b9150612cc982613908565b604082019050919050565b6000612ce1603883613336565b9150612cec82613957565b604082019050919050565b6000612d04602a83613336565b9150612d0f826139a6565b604082019050919050565b6000612d27602983613336565b9150612d32826139f5565b604082019050919050565b6000612d4a602083613336565b9150612d5582613a44565b602082019050919050565b6000612d6d602c83613336565b9150612d7882613a6d565b604082019050919050565b6000612d90602083613336565b9150612d9b82613abc565b602082019050919050565b6000612db3602f83613336565b9150612dbe82613ae5565b604082019050919050565b6000612dd6601483613336565b9150612de182613b34565b602082019050919050565b6000612df9602183613336565b9150612e0482613b5d565b604082019050919050565b6000612e1c60008361332b565b9150612e2782613bac565b600082019050919050565b6000612e3f601483613336565b9150612e4a82613baf565b602082019050919050565b6000612e62603183613336565b9150612e6d82613bd8565b604082019050919050565b6000612e85601483613336565b9150612e9082613c27565b602082019050919050565b612ea4816134e3565b82525050565b6000612eb68285612b45565b9150612ec28284612b45565b91508190509392505050565b6000612ed982612e0f565b9150819050919050565b6000602082019050612ef86000830184612ab5565b92915050565b6000602082019050612f136000830184612aa6565b92915050565b6000608082019050612f2e6000830187612ab5565b612f3b6020830186612ab5565b612f486040830185612e9b565b8181036060830152612f5a8184612ad3565b905095945050505050565b6000602082019050612f7a6000830184612ac4565b92915050565b60006020820190508181036000830152612f9a8184612b0c565b905092915050565b60006020820190508181036000830152612fbb81612b76565b9050919050565b60006020820190508181036000830152612fdb81612b99565b9050919050565b60006020820190508181036000830152612ffb81612bbc565b9050919050565b6000602082019050818103600083015261301b81612bdf565b9050919050565b6000602082019050818103600083015261303b81612c02565b9050919050565b6000602082019050818103600083015261305b81612c25565b9050919050565b6000602082019050818103600083015261307b81612c48565b9050919050565b6000602082019050818103600083015261309b81612c6b565b9050919050565b600060208201905081810360008301526130bb81612c8e565b9050919050565b600060208201905081810360008301526130db81612cb1565b9050919050565b600060208201905081810360008301526130fb81612cd4565b9050919050565b6000602082019050818103600083015261311b81612cf7565b9050919050565b6000602082019050818103600083015261313b81612d1a565b9050919050565b6000602082019050818103600083015261315b81612d3d565b9050919050565b6000602082019050818103600083015261317b81612d60565b9050919050565b6000602082019050818103600083015261319b81612d83565b9050919050565b600060208201905081810360008301526131bb81612da6565b9050919050565b600060208201905081810360008301526131db81612dc9565b9050919050565b600060208201905081810360008301526131fb81612dec565b9050919050565b6000602082019050818103600083015261321b81612e32565b9050919050565b6000602082019050818103600083015261323b81612e55565b9050919050565b6000602082019050818103600083015261325b81612e78565b9050919050565b60006020820190506132776000830184612e9b565b92915050565b6000613287613298565b90506132938282613561565b919050565b6000604051905090565b600067ffffffffffffffff8211156132bd576132bc613699565b5b6132c6826136c8565b9050602081019050919050565b600067ffffffffffffffff8211156132ee576132ed613699565b5b6132f7826136c8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061335d826134e3565b9150613368836134e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339d5761339c61360c565b5b828201905092915050565b60006133b3826134e3565b91506133be836134e3565b9250826133ce576133cd61363b565b5b828204905092915050565b60006133e4826134e3565b91506133ef836134e3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134285761342761360c565b5b828202905092915050565b600061343e826134e3565b9150613449836134e3565b92508282101561345c5761345b61360c565b5b828203905092915050565b6000613472826134c3565b9050919050565b6000613484826134c3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561351a5780820151818401526020810190506134ff565b83811115613529576000848401525b50505050565b6000600282049050600182168061354757607f821691505b6020821081141561355b5761355a61366a565b5b50919050565b61356a826136c8565b810181811067ffffffffffffffff8211171561358957613588613699565b5b80604052505050565b600061359d826134e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135d0576135cf61360c565b5b600182019050919050565b60006135e6826134e3565b91506135f1836134e3565b9250826136015761360061363b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206574682073656e7421000000000000000000000000600082015250565b613c5981613467565b8114613c6457600080fd5b50565b613c708161348b565b8114613c7b57600080fd5b50565b613c8781613497565b8114613c9257600080fd5b50565b613c9e816134e3565b8114613ca957600080fd5b5056fea26469706673582212202ad5a2075297f671130aa1b3b696a9764461d11cef5d0a80a3661db21d56071164736f6c63430008010033697066733a2f2f516d636f38756458376878354176774342586732656e54545972724a616b736250344e6a6a3532514c5a5761486e2f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063811d24371161010d578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c5146106ba578063eb8d2444146106f7578063ec3748c614610722578063f2fde38b1461074d578063ffe630b514610776576101ee565b8063c87b56dd146105fc578063d4d20d5914610639578063e07dcd1414610664578063e927fc5c1461068f576101ee565b8063a0712d68116100dc578063a0712d6814610563578063a22cb4651461057f578063a5ece941146105a8578063b88d4fde146105d3576101ee565b8063811d2437146104b95780638693da20146104e25780638da5cb5b1461050d57806395d89b4114610538576101ee565b80633ad10ef6116101855780636352211e116101545780636352211e146103fd5780636373a6b11461043a57806370a0823114610465578063715018a6146104a2576101ee565b80633ad10ef6146103695780633ccfd60b1461039457806342842e0e146103ab57806355f804b3146103d4576101ee565b806318160ddd116101c157806318160ddd146102c15780631d2e5a3a146102ec57806323b872dd146103155780632b935c0f1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906129ea565b61079f565b6040516102279190612f65565b60405180910390f35b34801561023c57600080fd5b50610245610881565b6040516102529190612f80565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612a7d565b610913565b60405161028f9190612ee3565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612985565b610998565b005b3480156102cd57600080fd5b506102d6610ab0565b6040516102e39190613262565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906129c1565b610ac1565b005b34801561032157600080fd5b5061033c6004803603810190610337919061287f565b610b5a565b005b34801561034a57600080fd5b50610353610bba565b6040516103609190613262565b60405180910390f35b34801561037557600080fd5b5061037e610bc0565b60405161038b9190612efe565b60405180910390f35b3480156103a057600080fd5b506103a9610be4565b005b3480156103b757600080fd5b506103d260048036038101906103cd919061287f565b610d58565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612a3c565b610d78565b005b34801561040957600080fd5b50610424600480360381019061041f9190612a7d565b610e0e565b6040516104319190612ee3565b60405180910390f35b34801561044657600080fd5b5061044f610ec0565b60405161045c9190612f80565b60405180910390f35b34801561047157600080fd5b5061048c6004803603810190610487919061281a565b610f4e565b6040516104999190613262565b60405180910390f35b3480156104ae57600080fd5b506104b7611006565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612a7d565b61108e565b005b3480156104ee57600080fd5b506104f7611114565b6040516105049190613262565b60405180910390f35b34801561051957600080fd5b5061052261111a565b60405161052f9190612ee3565b60405180910390f35b34801561054457600080fd5b5061054d611144565b60405161055a9190612f80565b60405180910390f35b61057d60048036038101906105789190612a7d565b6111d6565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612949565b61134b565b005b3480156105b457600080fd5b506105bd611361565b6040516105ca9190612efe565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906128ce565b611385565b005b34801561060857600080fd5b50610623600480360381019061061e9190612a7d565b6113e7565b6040516106309190612f80565b60405180910390f35b34801561064557600080fd5b5061064e61148e565b60405161065b9190613262565b60405180910390f35b34801561067057600080fd5b50610679611494565b6040516106869190613262565b60405180910390f35b34801561069b57600080fd5b506106a461149a565b6040516106b19190612efe565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc9190612843565b6114be565b6040516106ee9190612f65565b60405180910390f35b34801561070357600080fd5b5061070c611552565b6040516107199190612f65565b60405180910390f35b34801561072e57600080fd5b50610737611565565b6040516107449190613262565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f919061281a565b61156b565b005b34801561078257600080fd5b5061079d60048036038101906107989190612a3c565b611663565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061087a575061087982611740565b5b9050919050565b6060600080546108909061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546108bc9061352f565b80156109095780601f106108de57610100808354040283529160200191610909565b820191906000526020600020905b8154815290600101906020018083116108ec57829003601f168201915b5050505050905090565b600061091e826117aa565b61095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613162565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109a382610e0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b906131e2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a33611816565b73ffffffffffffffffffffffffffffffffffffffff161480610a625750610a6181610a5c611816565b6114be565b5b610aa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a98906130e2565b60405180910390fd5b610aab838361181e565b505050565b6000610abc600761170f565b905090565b610ac9611816565b73ffffffffffffffffffffffffffffffffffffffff16610ae761111a565b73ffffffffffffffffffffffffffffffffffffffff1614610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613182565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b610b6b610b65611816565b826118d7565b610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba190613222565b60405180910390fd5b610bb58383836119b5565b505050565b60095481565b7f00000000000000000000000030b9721de4c8acf3863c32c666359ea623a3e91f81565b610bec611816565b73ffffffffffffffffffffffffffffffffffffffff16610c0a61111a565b73ffffffffffffffffffffffffffffffffffffffff1614610c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5790613182565b60405180910390fd5b6000479050610cb57f00000000000000000000000030b9721de4c8acf3863c32c666359ea623a3e91f610cb06064610ca2600d86611c1c90919063ffffffff16565b611c3290919063ffffffff16565b611c48565b610d057f00000000000000000000000003443e172ea6bdb4efc27ea2b3c12d659949635b610d006064610cf2600586611c1c90919063ffffffff16565b611c3290919063ffffffff16565b611c48565b610d557f0000000000000000000000000f25b73e6f85f7f90b1865c536f1bdb9ad07f697610d506064610d42605286611c1c90919063ffffffff16565b611c3290919063ffffffff16565b611c48565b50565b610d7383838360405180602001604052806000815250611385565b505050565b610d80611816565b73ffffffffffffffffffffffffffffffffffffffff16610d9e61111a565b73ffffffffffffffffffffffffffffffffffffffff1614610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90613182565b60405180910390fd5b80600e9080519060200190610e0a92919061263e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613122565b60405180910390fd5b80915050919050565b600d8054610ecd9061352f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef99061352f565b8015610f465780601f10610f1b57610100808354040283529160200191610f46565b820191906000526020600020905b815481529060010190602001808311610f2957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613102565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61100e611816565b73ffffffffffffffffffffffffffffffffffffffff1661102c61111a565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107990613182565b60405180910390fd5b61108c6000611d3c565b565b611096611816565b73ffffffffffffffffffffffffffffffffffffffff166110b461111a565b73ffffffffffffffffffffffffffffffffffffffff161461110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190613182565b60405180910390fd5b8060088190555050565b60085481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111539061352f565b80601f016020809104026020016040519081016040528092919081815260200182805461117f9061352f565b80156111cc5780601f106111a1576101008083540402835291602001916111cc565b820191906000526020600020905b8154815290600101906020018083116111af57829003601f168201915b5050505050905090565b806000811180156111e8575060095481105b611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613022565b60405180910390fd5b600b5481611235600761170f565b61123f9190613352565b1061127f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127690613202565b60405180910390fd5b600f60009054906101000a900460ff166112ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c5906131c2565b60405180910390fd5b600a54826112dc600761170f565b6112e69190613352565b111561133d57816008546112fa91906133d9565b34101561133c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133390613242565b60405180910390fd5b5b6113473383611e02565b5050565b61135d611356611816565b8383611e42565b5050565b7f00000000000000000000000003443e172ea6bdb4efc27ea2b3c12d659949635b81565b611396611390611816565b836118d7565b6113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613222565b60405180910390fd5b6113e184848484611faf565b50505050565b60606113f2826117aa565b611431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611428906131a2565b60405180910390fd5b600061143b61200b565b9050600081511161145b5760405180602001604052806000815250611486565b806114658461209d565b604051602001611476929190612eaa565b6040516020818303038152906040525b915050919050565b600b5481565b600c5481565b7f0000000000000000000000000f25b73e6f85f7f90b1865c536f1bdb9ad07f69781565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b600a5481565b611573611816565b73ffffffffffffffffffffffffffffffffffffffff1661159161111a565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90613182565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90612fc2565b60405180910390fd5b61166081611d3c565b50565b61166b611816565b73ffffffffffffffffffffffffffffffffffffffff1661168961111a565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690613182565b60405180910390fd5b80600d90805190602001906116f592919061263e565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661189183610e0e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118e2826117aa565b611921576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611918906130c2565b60405180910390fd5b600061192c83610e0e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061196e575061196d81856114be565b5b806119ac57508373ffffffffffffffffffffffffffffffffffffffff1661199484610913565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166119d582610e0e565b73ffffffffffffffffffffffffffffffffffffffff1614611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2290612fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613042565b60405180910390fd5b611aa683838361224a565b611ab160008261181e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b019190613433565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b589190613352565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c1783838361224f565b505050565b60008183611c2a91906133d9565b905092915050565b60008183611c4091906133a8565b905092915050565b80471015611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c82906130a2565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611cb190612ece565b60006040518083038185875af1925050503d8060008114611cee576040519150601f19603f3d011682016040523d82523d6000602084013e611cf3565b606091505b5050905080611d37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2e90613082565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015611e3d57611e1760076116f9565b611e2a83611e25600761170f565b612254565b8080611e3590613592565b915050611e05565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea890613062565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fa29190612f65565b60405180910390a3505050565b611fba8484846119b5565b611fc684848484612272565b612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90612fa2565b60405180910390fd5b50505050565b6060600e805461201a9061352f565b80601f01602080910402602001604051908101604052809291908181526020018280546120469061352f565b80156120935780601f1061206857610100808354040283529160200191612093565b820191906000526020600020905b81548152906001019060200180831161207657829003601f168201915b5050505050905090565b606060008214156120e5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612245565b600082905060005b6000821461211757808061210090613592565b915050600a8261211091906133a8565b91506120ed565b60008167ffffffffffffffff811115612159577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561218b5781602001600182028036833780820191505090505b5090505b6000851461223e576001826121a49190613433565b9150600a856121b391906135db565b60306121bf9190613352565b60f81b8183815181106121fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561223791906133a8565b945061218f565b8093505050505b919050565b505050565b505050565b61226e828260405180602001604052806000815250612409565b5050565b60006122938473ffffffffffffffffffffffffffffffffffffffff1661171d565b156123fc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122bc611816565b8786866040518563ffffffff1660e01b81526004016122de9493929190612f19565b602060405180830381600087803b1580156122f857600080fd5b505af192505050801561232957506040513d601f19601f820116820180604052508101906123269190612a13565b60015b6123ac573d8060008114612359576040519150601f19603f3d011682016040523d82523d6000602084013e61235e565b606091505b506000815114156123a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239b90612fa2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612401565b600190505b949350505050565b6124138383612464565b6124206000848484612272565b61245f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245690612fa2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb90613142565b60405180910390fd5b6124dd816117aa565b1561251d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251490613002565b60405180910390fd5b6125296000838361224a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125799190613352565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461263a6000838361224f565b5050565b82805461264a9061352f565b90600052602060002090601f01602090048101928261266c57600085556126b3565b82601f1061268557805160ff19168380011785556126b3565b828001600101855582156126b3579182015b828111156126b2578251825591602001919060010190612697565b5b5090506126c091906126c4565b5090565b5b808211156126dd5760008160009055506001016126c5565b5090565b60006126f46126ef846132a2565b61327d565b90508281526020810184848401111561270c57600080fd5b6127178482856134ed565b509392505050565b600061273261272d846132d3565b61327d565b90508281526020810184848401111561274a57600080fd5b6127558482856134ed565b509392505050565b60008135905061276c81613c50565b92915050565b60008135905061278181613c67565b92915050565b60008135905061279681613c7e565b92915050565b6000815190506127ab81613c7e565b92915050565b600082601f8301126127c257600080fd5b81356127d28482602086016126e1565b91505092915050565b600082601f8301126127ec57600080fd5b81356127fc84826020860161271f565b91505092915050565b60008135905061281481613c95565b92915050565b60006020828403121561282c57600080fd5b600061283a8482850161275d565b91505092915050565b6000806040838503121561285657600080fd5b60006128648582860161275d565b92505060206128758582860161275d565b9150509250929050565b60008060006060848603121561289457600080fd5b60006128a28682870161275d565b93505060206128b38682870161275d565b92505060406128c486828701612805565b9150509250925092565b600080600080608085870312156128e457600080fd5b60006128f28782880161275d565b94505060206129038782880161275d565b935050604061291487828801612805565b925050606085013567ffffffffffffffff81111561293157600080fd5b61293d878288016127b1565b91505092959194509250565b6000806040838503121561295c57600080fd5b600061296a8582860161275d565b925050602061297b85828601612772565b9150509250929050565b6000806040838503121561299857600080fd5b60006129a68582860161275d565b92505060206129b785828601612805565b9150509250929050565b6000602082840312156129d357600080fd5b60006129e184828501612772565b91505092915050565b6000602082840312156129fc57600080fd5b6000612a0a84828501612787565b91505092915050565b600060208284031215612a2557600080fd5b6000612a338482850161279c565b91505092915050565b600060208284031215612a4e57600080fd5b600082013567ffffffffffffffff811115612a6857600080fd5b612a74848285016127db565b91505092915050565b600060208284031215612a8f57600080fd5b6000612a9d84828501612805565b91505092915050565b612aaf81613479565b82525050565b612abe81613467565b82525050565b612acd8161348b565b82525050565b6000612ade82613304565b612ae8818561331a565b9350612af88185602086016134fc565b612b01816136c8565b840191505092915050565b6000612b178261330f565b612b218185613336565b9350612b318185602086016134fc565b612b3a816136c8565b840191505092915050565b6000612b508261330f565b612b5a8185613347565b9350612b6a8185602086016134fc565b80840191505092915050565b6000612b83603283613336565b9150612b8e826136d9565b604082019050919050565b6000612ba6602683613336565b9150612bb182613728565b604082019050919050565b6000612bc9602583613336565b9150612bd482613777565b604082019050919050565b6000612bec601c83613336565b9150612bf7826137c6565b602082019050919050565b6000612c0f601483613336565b9150612c1a826137ef565b602082019050919050565b6000612c32602483613336565b9150612c3d82613818565b604082019050919050565b6000612c55601983613336565b9150612c6082613867565b602082019050919050565b6000612c78603a83613336565b9150612c8382613890565b604082019050919050565b6000612c9b601d83613336565b9150612ca6826138df565b602082019050919050565b6000612cbe602c83613336565b9150612cc982613908565b604082019050919050565b6000612ce1603883613336565b9150612cec82613957565b604082019050919050565b6000612d04602a83613336565b9150612d0f826139a6565b604082019050919050565b6000612d27602983613336565b9150612d32826139f5565b604082019050919050565b6000612d4a602083613336565b9150612d5582613a44565b602082019050919050565b6000612d6d602c83613336565b9150612d7882613a6d565b604082019050919050565b6000612d90602083613336565b9150612d9b82613abc565b602082019050919050565b6000612db3602f83613336565b9150612dbe82613ae5565b604082019050919050565b6000612dd6601483613336565b9150612de182613b34565b602082019050919050565b6000612df9602183613336565b9150612e0482613b5d565b604082019050919050565b6000612e1c60008361332b565b9150612e2782613bac565b600082019050919050565b6000612e3f601483613336565b9150612e4a82613baf565b602082019050919050565b6000612e62603183613336565b9150612e6d82613bd8565b604082019050919050565b6000612e85601483613336565b9150612e9082613c27565b602082019050919050565b612ea4816134e3565b82525050565b6000612eb68285612b45565b9150612ec28284612b45565b91508190509392505050565b6000612ed982612e0f565b9150819050919050565b6000602082019050612ef86000830184612ab5565b92915050565b6000602082019050612f136000830184612aa6565b92915050565b6000608082019050612f2e6000830187612ab5565b612f3b6020830186612ab5565b612f486040830185612e9b565b8181036060830152612f5a8184612ad3565b905095945050505050565b6000602082019050612f7a6000830184612ac4565b92915050565b60006020820190508181036000830152612f9a8184612b0c565b905092915050565b60006020820190508181036000830152612fbb81612b76565b9050919050565b60006020820190508181036000830152612fdb81612b99565b9050919050565b60006020820190508181036000830152612ffb81612bbc565b9050919050565b6000602082019050818103600083015261301b81612bdf565b9050919050565b6000602082019050818103600083015261303b81612c02565b9050919050565b6000602082019050818103600083015261305b81612c25565b9050919050565b6000602082019050818103600083015261307b81612c48565b9050919050565b6000602082019050818103600083015261309b81612c6b565b9050919050565b600060208201905081810360008301526130bb81612c8e565b9050919050565b600060208201905081810360008301526130db81612cb1565b9050919050565b600060208201905081810360008301526130fb81612cd4565b9050919050565b6000602082019050818103600083015261311b81612cf7565b9050919050565b6000602082019050818103600083015261313b81612d1a565b9050919050565b6000602082019050818103600083015261315b81612d3d565b9050919050565b6000602082019050818103600083015261317b81612d60565b9050919050565b6000602082019050818103600083015261319b81612d83565b9050919050565b600060208201905081810360008301526131bb81612da6565b9050919050565b600060208201905081810360008301526131db81612dc9565b9050919050565b600060208201905081810360008301526131fb81612dec565b9050919050565b6000602082019050818103600083015261321b81612e32565b9050919050565b6000602082019050818103600083015261323b81612e55565b9050919050565b6000602082019050818103600083015261325b81612e78565b9050919050565b60006020820190506132776000830184612e9b565b92915050565b6000613287613298565b90506132938282613561565b919050565b6000604051905090565b600067ffffffffffffffff8211156132bd576132bc613699565b5b6132c6826136c8565b9050602081019050919050565b600067ffffffffffffffff8211156132ee576132ed613699565b5b6132f7826136c8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061335d826134e3565b9150613368836134e3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339d5761339c61360c565b5b828201905092915050565b60006133b3826134e3565b91506133be836134e3565b9250826133ce576133cd61363b565b5b828204905092915050565b60006133e4826134e3565b91506133ef836134e3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134285761342761360c565b5b828202905092915050565b600061343e826134e3565b9150613449836134e3565b92508282101561345c5761345b61360c565b5b828203905092915050565b6000613472826134c3565b9050919050565b6000613484826134c3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561351a5780820151818401526020810190506134ff565b83811115613529576000848401525b50505050565b6000600282049050600182168061354757607f821691505b6020821081141561355b5761355a61366a565b5b50919050565b61356a826136c8565b810181811067ffffffffffffffff8211171561358957613588613699565b5b80604052505050565b600061359d826134e3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135d0576135cf61360c565b5b600182019050919050565b60006135e6826134e3565b91506135f1836134e3565b9250826136015761360061363b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206574682073656e7421000000000000000000000000600082015250565b613c5981613467565b8114613c6457600080fd5b50565b613c708161348b565b8114613c7b57600080fd5b50565b613c8781613497565b8114613c9257600080fd5b50565b613c9e816134e3565b8114613ca957600080fd5b5056fea26469706673582212202ad5a2075297f671130aa1b3b696a9764461d11cef5d0a80a3661db21d56071164736f6c63430008010033

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.