ERC-721
Source Code
Overview
Max Total Supply
1,001 BlockGlyphs
Holders
249
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BlockGlyphsLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
BlockGlyphs
Compiler Version
v0.8.5+commit.a4f2e591
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract BlockGlyphs is ERC721Enumerable, Ownable {
using SafeMath for uint256;
string _baseTokenURI;
uint256 private _maxMint = 10;
uint256 private _devShare = 10;
uint256 private _price = 75 * 10**15; //0.075 ETH;
bool public _paused = true;
uint public constant MAX_ENTRIES = 1001;
address public constant creatorAddress = 0x43D7ada37De2C08da05993E33b7A675316A7cf0A;
constructor(string memory baseURI) ERC721("BlockGlyphs", "BlockGlyphs") {
setBaseURI(baseURI);
}
function mint(address _to, uint256 num) public payable {
uint256 supply = totalSupply();
if(msg.sender != owner()) {
require(!_paused, "Sale Paused");
require( num < (_maxMint+1),"You can min between 1 and 10 Block Glyphs at a time" );
require( msg.value >= _price * num,"Ether sent is not correct" );
}
require( supply + num < MAX_ENTRIES+1, "Exceeds maximum supply" );
for(uint256 i; i < num; i++){
_safeMint( _to, supply + i );
}
}
function walletOfOwner(address _owner) public view returns(uint256[] memory) {
uint256 tokenCount = balanceOf(_owner);
uint256[] memory tokensId = new uint256[](tokenCount);
for(uint256 i; i < tokenCount; i++){
tokensId[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokensId;
}
function getPrice() public view returns (uint256){
if(msg.sender == owner()) {
return 0;
}
return _price;
}
function setPrice(uint256 _newPrice) public onlyOwner() {
_price = _newPrice;
}
function getMaxMint() public view returns (uint256){
return _maxMint;
}
function setMaxMint(uint256 _newMaxMint) public onlyOwner() {
_maxMint = _newMaxMint;
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function setBaseURI(string memory baseURI) public onlyOwner {
_baseTokenURI = baseURI;
}
function getDevShare() public view returns (uint256){
return _devShare;
}
function setDevShare(uint256 _newDevShare) public onlyOwner() {
_devShare = _newDevShare;
}
function pause(bool val) public onlyOwner {
_paused = val;
}
function withdrawAll() public payable onlyOwner {
uint256 balance = address(this).balance;
require(balance > 0);
require(payable(msg.sender).send(balance.mul(_devShare).div(100)), "Transfer to dev failed");
require(payable(creatorAddress).send(address(this).balance), "Transfer to creator failed");
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @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` cannot be the zero address.
* - `to` cannot be the zero address.
*
* 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 override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).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 {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private 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);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDevShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"num","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":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDevShare","type":"uint256"}],"name":"setDevShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]Contract Creation Code
6080604052600a600c55600a600d5567010a741a46278000600e556001600f60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b5060405162004ab138038062004ab1833981810160405281019062000068919062000411565b6040518060400160405280600b81526020017f426c6f636b476c797068730000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f426c6f636b476c797068730000000000000000000000000000000000000000008152508160009080519060200190620000ec929190620002e3565b50806001908051906020019062000105929190620002e3565b505050620001286200011c6200014060201b60201c565b6200014860201b60201c565b62000139816200020e60201b60201c565b5062000669565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021e6200014060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000244620002b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002949062000489565b60405180910390fd5b80600b9080519060200190620002b5929190620002e3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f19062000551565b90600052602060002090601f01602090048101928262000315576000855562000361565b82601f106200033057805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036057825182559160200191906001019062000343565b5b50905062000370919062000374565b5090565b5b808211156200038f57600081600090555060010162000375565b5090565b6000620003aa620003a484620004d4565b620004ab565b905082815260208101848484011115620003c957620003c862000620565b5b620003d68482856200051b565b509392505050565b600082601f830112620003f657620003f56200061b565b5b81516200040884826020860162000393565b91505092915050565b6000602082840312156200042a57620004296200062a565b5b600082015167ffffffffffffffff8111156200044b576200044a62000625565b5b6200045984828501620003de565b91505092915050565b6000620004716020836200050a565b91506200047e8262000640565b602082019050919050565b60006020820190508181036000830152620004a48162000462565b9050919050565b6000620004b7620004ca565b9050620004c5828262000587565b919050565b6000604051905090565b600067ffffffffffffffff821115620004f257620004f1620005ec565b5b620004fd826200062f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053b5780820151818401526020810190506200051e565b838111156200054b576000848401525b50505050565b600060028204905060018216806200056a57607f821691505b60208210811415620005815762000580620005bd565b5b50919050565b62000592826200062f565b810181811067ffffffffffffffff82111715620005b457620005b3620005ec565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61443880620006796000396000f3fe6080604052600436106101ee5760003560e01c8063547520fe1161010d57806391b7f5ed116100a0578063b88d4fde1161006f578063b88d4fde146106cf578063c87b56dd146106f8578063e927fc5c14610735578063e985e9c514610760578063f2fde38b1461079d576101ee565b806391b7f5ed1461062757806395d89b411461065057806398d5fdca1461067b578063a22cb465146106a6576101ee565b8063715018a6116100dc578063715018a6146105b05780637d4cb964146105c7578063853828b6146105f25780638da5cb5b146105fc576101ee565b8063547520fe146104e457806355f804b31461050d5780636352211e1461053657806370a0823114610573576101ee565b80631f46452f1161018557806342842e0e1161015457806342842e0e14610416578063438b63001461043f5780634a4fa44f1461047c5780634f6ccce7146104a7576101ee565b80631f46452f1461036957806323b872dd146103945780632f745c59146103bd57806340c10f19146103fa576101ee565b8063081812fc116101c1578063081812fc146102ad578063095ea7b3146102ea57806316c61ccc1461031357806318160ddd1461033e576101ee565b806301ffc9a7146101f357806302329a291461023057806303c0fa011461025957806306fdde0314610282575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f38565b6107c6565b6040516102279190613552565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f0b565b610840565b005b34801561026557600080fd5b50610280600480360381019061027b9190612fdb565b6108d9565b005b34801561028e57600080fd5b5061029761095f565b6040516102a4919061356d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612fdb565b6109f1565b6040516102e191906134c9565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612ecb565b610a76565b005b34801561031f57600080fd5b50610328610b8e565b6040516103359190613552565b60405180910390f35b34801561034a57600080fd5b50610353610ba1565b604051610360919061388f565b60405180910390f35b34801561037557600080fd5b5061037e610bae565b60405161038b919061388f565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612db5565b610bb8565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612ecb565b610c18565b6040516103f1919061388f565b60405180910390f35b610414600480360381019061040f9190612ecb565b610cbd565b005b34801561042257600080fd5b5061043d60048036038101906104389190612db5565b610e88565b005b34801561044b57600080fd5b5061046660048036038101906104619190612d48565b610ea8565b6040516104739190613530565b60405180910390f35b34801561048857600080fd5b50610491610f56565b60405161049e919061388f565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612fdb565b610f60565b6040516104db919061388f565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612fdb565b610fd1565b005b34801561051957600080fd5b50610534600480360381019061052f9190612f92565b611057565b005b34801561054257600080fd5b5061055d60048036038101906105589190612fdb565b6110ed565b60405161056a91906134c9565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190612d48565b61119f565b6040516105a7919061388f565b60405180910390f35b3480156105bc57600080fd5b506105c5611257565b005b3480156105d357600080fd5b506105dc6112df565b6040516105e9919061388f565b60405180910390f35b6105fa6112e5565b005b34801561060857600080fd5b50610611611499565b60405161061e91906134c9565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612fdb565b6114c3565b005b34801561065c57600080fd5b50610665611549565b604051610672919061356d565b60405180910390f35b34801561068757600080fd5b506106906115db565b60405161069d919061388f565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612e8b565b61162a565b005b3480156106db57600080fd5b506106f660048036038101906106f19190612e08565b6117ab565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612fdb565b61180d565b60405161072c919061356d565b60405180910390f35b34801561074157600080fd5b5061074a6118b4565b60405161075791906134c9565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190612d75565b6118cc565b6040516107949190613552565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612d48565b611960565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611a58565b5b9050919050565b610848611b3a565b73ffffffffffffffffffffffffffffffffffffffff16610866611499565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b39061378f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6108e1611b3a565b73ffffffffffffffffffffffffffffffffffffffff166108ff611499565b73ffffffffffffffffffffffffffffffffffffffff1614610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c9061378f565b60405180910390fd5b80600d8190555050565b60606000805461096e90613b78565b80601f016020809104026020016040519081016040528092919081815260200182805461099a90613b78565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b60006109fc82611b42565b610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a329061376f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a81826110ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae9906137ef565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b11611b3a565b73ffffffffffffffffffffffffffffffffffffffff161480610b405750610b3f81610b3a611b3a565b6118cc565b5b610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b76906136af565b60405180910390fd5b610b898383611bae565b505050565b600f60009054906101000a900460ff1681565b6000600880549050905090565b6000600c54905090565b610bc9610bc3611b3a565b82611c67565b610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061384f565b60405180910390fd5b610c13838383611d45565b505050565b6000610c238361119f565b8210610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b9061358f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610cc7610ba1565b9050610cd1611499565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610df457600f60009054906101000a900460ff1615610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a9061374f565b60405180910390fd5b6001600c54610d6291906139ad565b8210610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a9061372f565b60405180910390fd5b81600e54610db19190613a34565b341015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea9061382f565b60405180910390fd5b5b60016103e9610e0391906139ad565b8282610e0f91906139ad565b10610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061380f565b60405180910390fd5b60005b82811015610e8257610e6f848284610e6a91906139ad565b611fa1565b8080610e7a90613bdb565b915050610e52565b50505050565b610ea3838383604051806020016040528060008152506117ab565b505050565b60606000610eb58361119f565b905060008167ffffffffffffffff811115610ed357610ed2613d40565b5b604051908082528060200260200182016040528015610f015781602001602082028036833780820191505090505b50905060005b82811015610f4b57610f198582610c18565b828281518110610f2c57610f2b613d11565b5b6020026020010181815250508080610f4390613bdb565b915050610f07565b508092505050919050565b6000600d54905090565b6000610f6a610ba1565b8210610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061386f565b60405180910390fd5b60088281548110610fbf57610fbe613d11565b5b90600052602060002001549050919050565b610fd9611b3a565b73ffffffffffffffffffffffffffffffffffffffff16610ff7611499565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061378f565b60405180910390fd5b80600c8190555050565b61105f611b3a565b73ffffffffffffffffffffffffffffffffffffffff1661107d611499565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca9061378f565b60405180910390fd5b80600b90805190602001906110e9929190612b5c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906136ef565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906136cf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125f611b3a565b73ffffffffffffffffffffffffffffffffffffffff1661127d611499565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061378f565b60405180910390fd5b6112dd6000611fbf565b565b6103e981565b6112ed611b3a565b73ffffffffffffffffffffffffffffffffffffffff1661130b611499565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113589061378f565b60405180910390fd5b60004790506000811161137357600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc6113b560646113a7600d548661208590919063ffffffff16565b61209b90919063ffffffff16565b9081150290604051600060405180830381858888f1935050505061140e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114059061368f565b60405180910390fd5b7343d7ada37de2c08da05993e33b7a675316a7cf0a73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d9061360f565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114cb611b3a565b73ffffffffffffffffffffffffffffffffffffffff166114e9611499565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061378f565b60405180910390fd5b80600e8190555050565b60606001805461155890613b78565b80601f016020809104026020016040519081016040528092919081815260200182805461158490613b78565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b5050505050905090565b60006115e5611499565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156116215760009050611627565b600e5490505b90565b611632611b3a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061364f565b60405180910390fd5b80600560006116ad611b3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175a611b3a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179f9190613552565b60405180910390a35050565b6117bc6117b6611b3a565b83611c67565b6117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061384f565b60405180910390fd5b611807848484846120b1565b50505050565b606061181882611b42565b611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906137cf565b60405180910390fd5b600061186161210d565b9050600081511161188157604051806020016040528060008152506118ac565b8061188b8461219f565b60405160200161189c9291906134a5565b6040516020818303038152906040525b915050919050565b7343d7ada37de2c08da05993e33b7a675316a7cf0a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611968611b3a565b73ffffffffffffffffffffffffffffffffffffffff16611986611499565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d39061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906135cf565b60405180910390fd5b611a5581611fbf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b335750611b3282612300565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c21836110ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7282611b42565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061366f565b60405180910390fd5b6000611cbc836110ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2b57508373ffffffffffffffffffffffffffffffffffffffff16611d13846109f1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3c5750611d3b81856118cc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d65826110ed565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db2906137af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e229061362f565b60405180910390fd5b611e3683838361236a565b611e41600082611bae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e919190613a8e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee891906139ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fbb82826040518060200160405280600081525061247e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836120939190613a34565b905092915050565b600081836120a99190613a03565b905092915050565b6120bc848484611d45565b6120c8848484846124d9565b612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe906135af565b60405180910390fd5b50505050565b6060600b805461211c90613b78565b80601f016020809104026020016040519081016040528092919081815260200182805461214890613b78565b80156121955780601f1061216a57610100808354040283529160200191612195565b820191906000526020600020905b81548152906001019060200180831161217857829003601f168201915b5050505050905090565b606060008214156121e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fb565b600082905060005b6000821461221957808061220290613bdb565b915050600a826122129190613a03565b91506121ef565b60008167ffffffffffffffff81111561223557612234613d40565b5b6040519080825280601f01601f1916602001820160405280156122675781602001600182028036833780820191505090505b5090505b600085146122f4576001826122809190613a8e565b9150600a8561228f9190613c24565b603061229b91906139ad565b60f81b8183815181106122b1576122b0613d11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ed9190613a03565b945061226b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612375838383612670565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b8576123b381612675565b6123f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123f6576123f583826126be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243a576124358161282b565b612479565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124785761247782826128fc565b5b5b505050565b612488838361297b565b61249560008484846124d9565b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb906135af565b60405180910390fd5b505050565b60006124fa8473ffffffffffffffffffffffffffffffffffffffff16612b49565b15612663578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612523611b3a565b8786866040518563ffffffff1660e01b815260040161254594939291906134e4565b602060405180830381600087803b15801561255f57600080fd5b505af192505050801561259057506040513d601f19601f8201168201806040525081019061258d9190612f65565b60015b612613573d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b5060008151141561260b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612602906135af565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612668565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126cb8461119f565b6126d59190613a8e565b90506000600760008481526020019081526020016000205490508181146127ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061283f9190613a8e565b905060006009600084815260200190815260200160002054905060006008838154811061286f5761286e613d11565b5b90600052602060002001549050806008838154811061289157612890613d11565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128e0576128df613ce2565b5b6001900381819060005260206000200160009055905550505050565b60006129078361119f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e29061370f565b60405180910390fd5b6129f481611b42565b15612a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2b906135ef565b60405180910390fd5b612a406000838361236a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9091906139ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b6890613b78565b90600052602060002090601f016020900481019282612b8a5760008555612bd1565b82601f10612ba357805160ff1916838001178555612bd1565b82800160010185558215612bd1579182015b82811115612bd0578251825591602001919060010190612bb5565b5b509050612bde9190612be2565b5090565b5b80821115612bfb576000816000905550600101612be3565b5090565b6000612c12612c0d846138cf565b6138aa565b905082815260208101848484011115612c2e57612c2d613d74565b5b612c39848285613b36565b509392505050565b6000612c54612c4f84613900565b6138aa565b905082815260208101848484011115612c7057612c6f613d74565b5b612c7b848285613b36565b509392505050565b600081359050612c92816143a6565b92915050565b600081359050612ca7816143bd565b92915050565b600081359050612cbc816143d4565b92915050565b600081519050612cd1816143d4565b92915050565b600082601f830112612cec57612ceb613d6f565b5b8135612cfc848260208601612bff565b91505092915050565b600082601f830112612d1a57612d19613d6f565b5b8135612d2a848260208601612c41565b91505092915050565b600081359050612d42816143eb565b92915050565b600060208284031215612d5e57612d5d613d7e565b5b6000612d6c84828501612c83565b91505092915050565b60008060408385031215612d8c57612d8b613d7e565b5b6000612d9a85828601612c83565b9250506020612dab85828601612c83565b9150509250929050565b600080600060608486031215612dce57612dcd613d7e565b5b6000612ddc86828701612c83565b9350506020612ded86828701612c83565b9250506040612dfe86828701612d33565b9150509250925092565b60008060008060808587031215612e2257612e21613d7e565b5b6000612e3087828801612c83565b9450506020612e4187828801612c83565b9350506040612e5287828801612d33565b925050606085013567ffffffffffffffff811115612e7357612e72613d79565b5b612e7f87828801612cd7565b91505092959194509250565b60008060408385031215612ea257612ea1613d7e565b5b6000612eb085828601612c83565b9250506020612ec185828601612c98565b9150509250929050565b60008060408385031215612ee257612ee1613d7e565b5b6000612ef085828601612c83565b9250506020612f0185828601612d33565b9150509250929050565b600060208284031215612f2157612f20613d7e565b5b6000612f2f84828501612c98565b91505092915050565b600060208284031215612f4e57612f4d613d7e565b5b6000612f5c84828501612cad565b91505092915050565b600060208284031215612f7b57612f7a613d7e565b5b6000612f8984828501612cc2565b91505092915050565b600060208284031215612fa857612fa7613d7e565b5b600082013567ffffffffffffffff811115612fc657612fc5613d79565b5b612fd284828501612d05565b91505092915050565b600060208284031215612ff157612ff0613d7e565b5b6000612fff84828501612d33565b91505092915050565b60006130148383613487565b60208301905092915050565b61302981613ac2565b82525050565b600061303a82613941565b613044818561396f565b935061304f83613931565b8060005b838110156130805781516130678882613008565b975061307283613962565b925050600181019050613053565b5085935050505092915050565b61309681613ad4565b82525050565b60006130a78261394c565b6130b18185613980565b93506130c1818560208601613b45565b6130ca81613d83565b840191505092915050565b60006130e082613957565b6130ea8185613991565b93506130fa818560208601613b45565b61310381613d83565b840191505092915050565b600061311982613957565b61312381856139a2565b9350613133818560208601613b45565b80840191505092915050565b600061314c602b83613991565b915061315782613d94565b604082019050919050565b600061316f603283613991565b915061317a82613de3565b604082019050919050565b6000613192602683613991565b915061319d82613e32565b604082019050919050565b60006131b5601c83613991565b91506131c082613e81565b602082019050919050565b60006131d8601a83613991565b91506131e382613eaa565b602082019050919050565b60006131fb602483613991565b915061320682613ed3565b604082019050919050565b600061321e601983613991565b915061322982613f22565b602082019050919050565b6000613241602c83613991565b915061324c82613f4b565b604082019050919050565b6000613264601683613991565b915061326f82613f9a565b602082019050919050565b6000613287603883613991565b915061329282613fc3565b604082019050919050565b60006132aa602a83613991565b91506132b582614012565b604082019050919050565b60006132cd602983613991565b91506132d882614061565b604082019050919050565b60006132f0602083613991565b91506132fb826140b0565b602082019050919050565b6000613313603383613991565b915061331e826140d9565b604082019050919050565b6000613336600b83613991565b915061334182614128565b602082019050919050565b6000613359602c83613991565b915061336482614151565b604082019050919050565b600061337c602083613991565b9150613387826141a0565b602082019050919050565b600061339f602983613991565b91506133aa826141c9565b604082019050919050565b60006133c2602f83613991565b91506133cd82614218565b604082019050919050565b60006133e5602183613991565b91506133f082614267565b604082019050919050565b6000613408601683613991565b9150613413826142b6565b602082019050919050565b600061342b601983613991565b9150613436826142df565b602082019050919050565b600061344e603183613991565b915061345982614308565b604082019050919050565b6000613471602c83613991565b915061347c82614357565b604082019050919050565b61349081613b2c565b82525050565b61349f81613b2c565b82525050565b60006134b1828561310e565b91506134bd828461310e565b91508190509392505050565b60006020820190506134de6000830184613020565b92915050565b60006080820190506134f96000830187613020565b6135066020830186613020565b6135136040830185613496565b8181036060830152613525818461309c565b905095945050505050565b6000602082019050818103600083015261354a818461302f565b905092915050565b6000602082019050613567600083018461308d565b92915050565b6000602082019050818103600083015261358781846130d5565b905092915050565b600060208201905081810360008301526135a88161313f565b9050919050565b600060208201905081810360008301526135c881613162565b9050919050565b600060208201905081810360008301526135e881613185565b9050919050565b60006020820190508181036000830152613608816131a8565b9050919050565b60006020820190508181036000830152613628816131cb565b9050919050565b60006020820190508181036000830152613648816131ee565b9050919050565b6000602082019050818103600083015261366881613211565b9050919050565b6000602082019050818103600083015261368881613234565b9050919050565b600060208201905081810360008301526136a881613257565b9050919050565b600060208201905081810360008301526136c88161327a565b9050919050565b600060208201905081810360008301526136e88161329d565b9050919050565b60006020820190508181036000830152613708816132c0565b9050919050565b60006020820190508181036000830152613728816132e3565b9050919050565b6000602082019050818103600083015261374881613306565b9050919050565b6000602082019050818103600083015261376881613329565b9050919050565b600060208201905081810360008301526137888161334c565b9050919050565b600060208201905081810360008301526137a88161336f565b9050919050565b600060208201905081810360008301526137c881613392565b9050919050565b600060208201905081810360008301526137e8816133b5565b9050919050565b60006020820190508181036000830152613808816133d8565b9050919050565b60006020820190508181036000830152613828816133fb565b9050919050565b600060208201905081810360008301526138488161341e565b9050919050565b6000602082019050818103600083015261386881613441565b9050919050565b6000602082019050818103600083015261388881613464565b9050919050565b60006020820190506138a46000830184613496565b92915050565b60006138b46138c5565b90506138c08282613baa565b919050565b6000604051905090565b600067ffffffffffffffff8211156138ea576138e9613d40565b5b6138f382613d83565b9050602081019050919050565b600067ffffffffffffffff82111561391b5761391a613d40565b5b61392482613d83565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b882613b2c565b91506139c383613b2c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f8576139f7613c55565b5b828201905092915050565b6000613a0e82613b2c565b9150613a1983613b2c565b925082613a2957613a28613c84565b5b828204905092915050565b6000613a3f82613b2c565b9150613a4a83613b2c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8357613a82613c55565b5b828202905092915050565b6000613a9982613b2c565b9150613aa483613b2c565b925082821015613ab757613ab6613c55565b5b828203905092915050565b6000613acd82613b0c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b63578082015181840152602081019050613b48565b83811115613b72576000848401525b50505050565b60006002820490506001821680613b9057607f821691505b60208210811415613ba457613ba3613cb3565b5b50919050565b613bb382613d83565b810181811067ffffffffffffffff82111715613bd257613bd1613d40565b5b80604052505050565b6000613be682613b2c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1957613c18613c55565b5b600182019050919050565b6000613c2f82613b2c565b9150613c3a83613b2c565b925082613c4a57613c49613c84565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5472616e7366657220746f2063726561746f72206661696c6564000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5472616e7366657220746f20646576206661696c656400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206d696e206265747765656e203120616e6420313020426c6f60008201527f636b20476c7970687320617420612074696d6500000000000000000000000000602082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6143af81613ac2565b81146143ba57600080fd5b50565b6143c681613ad4565b81146143d157600080fd5b50565b6143dd81613ae0565b81146143e857600080fd5b50565b6143f481613b2c565b81146143ff57600080fd5b5056fea2646970667358221220c12d1e323a763c7c8c364ab0ed962f8b5a567d07d770fe88e7463365160655bd64736f6c634300080500330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f626c6f636b676c797068732e636f6d2f6170692f626c6f636b676c7970682f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c8063547520fe1161010d57806391b7f5ed116100a0578063b88d4fde1161006f578063b88d4fde146106cf578063c87b56dd146106f8578063e927fc5c14610735578063e985e9c514610760578063f2fde38b1461079d576101ee565b806391b7f5ed1461062757806395d89b411461065057806398d5fdca1461067b578063a22cb465146106a6576101ee565b8063715018a6116100dc578063715018a6146105b05780637d4cb964146105c7578063853828b6146105f25780638da5cb5b146105fc576101ee565b8063547520fe146104e457806355f804b31461050d5780636352211e1461053657806370a0823114610573576101ee565b80631f46452f1161018557806342842e0e1161015457806342842e0e14610416578063438b63001461043f5780634a4fa44f1461047c5780634f6ccce7146104a7576101ee565b80631f46452f1461036957806323b872dd146103945780632f745c59146103bd57806340c10f19146103fa576101ee565b8063081812fc116101c1578063081812fc146102ad578063095ea7b3146102ea57806316c61ccc1461031357806318160ddd1461033e576101ee565b806301ffc9a7146101f357806302329a291461023057806303c0fa011461025957806306fdde0314610282575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612f38565b6107c6565b6040516102279190613552565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f0b565b610840565b005b34801561026557600080fd5b50610280600480360381019061027b9190612fdb565b6108d9565b005b34801561028e57600080fd5b5061029761095f565b6040516102a4919061356d565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190612fdb565b6109f1565b6040516102e191906134c9565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190612ecb565b610a76565b005b34801561031f57600080fd5b50610328610b8e565b6040516103359190613552565b60405180910390f35b34801561034a57600080fd5b50610353610ba1565b604051610360919061388f565b60405180910390f35b34801561037557600080fd5b5061037e610bae565b60405161038b919061388f565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b69190612db5565b610bb8565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612ecb565b610c18565b6040516103f1919061388f565b60405180910390f35b610414600480360381019061040f9190612ecb565b610cbd565b005b34801561042257600080fd5b5061043d60048036038101906104389190612db5565b610e88565b005b34801561044b57600080fd5b5061046660048036038101906104619190612d48565b610ea8565b6040516104739190613530565b60405180910390f35b34801561048857600080fd5b50610491610f56565b60405161049e919061388f565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612fdb565b610f60565b6040516104db919061388f565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612fdb565b610fd1565b005b34801561051957600080fd5b50610534600480360381019061052f9190612f92565b611057565b005b34801561054257600080fd5b5061055d60048036038101906105589190612fdb565b6110ed565b60405161056a91906134c9565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190612d48565b61119f565b6040516105a7919061388f565b60405180910390f35b3480156105bc57600080fd5b506105c5611257565b005b3480156105d357600080fd5b506105dc6112df565b6040516105e9919061388f565b60405180910390f35b6105fa6112e5565b005b34801561060857600080fd5b50610611611499565b60405161061e91906134c9565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190612fdb565b6114c3565b005b34801561065c57600080fd5b50610665611549565b604051610672919061356d565b60405180910390f35b34801561068757600080fd5b506106906115db565b60405161069d919061388f565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c89190612e8b565b61162a565b005b3480156106db57600080fd5b506106f660048036038101906106f19190612e08565b6117ab565b005b34801561070457600080fd5b5061071f600480360381019061071a9190612fdb565b61180d565b60405161072c919061356d565b60405180910390f35b34801561074157600080fd5b5061074a6118b4565b60405161075791906134c9565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190612d75565b6118cc565b6040516107949190613552565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612d48565b611960565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611a58565b5b9050919050565b610848611b3a565b73ffffffffffffffffffffffffffffffffffffffff16610866611499565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b39061378f565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6108e1611b3a565b73ffffffffffffffffffffffffffffffffffffffff166108ff611499565b73ffffffffffffffffffffffffffffffffffffffff1614610955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094c9061378f565b60405180910390fd5b80600d8190555050565b60606000805461096e90613b78565b80601f016020809104026020016040519081016040528092919081815260200182805461099a90613b78565b80156109e75780601f106109bc576101008083540402835291602001916109e7565b820191906000526020600020905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b60006109fc82611b42565b610a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a329061376f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a81826110ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae9906137ef565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b11611b3a565b73ffffffffffffffffffffffffffffffffffffffff161480610b405750610b3f81610b3a611b3a565b6118cc565b5b610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b76906136af565b60405180910390fd5b610b898383611bae565b505050565b600f60009054906101000a900460ff1681565b6000600880549050905090565b6000600c54905090565b610bc9610bc3611b3a565b82611c67565b610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061384f565b60405180910390fd5b610c13838383611d45565b505050565b6000610c238361119f565b8210610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b9061358f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000610cc7610ba1565b9050610cd1611499565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610df457600f60009054906101000a900460ff1615610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a9061374f565b60405180910390fd5b6001600c54610d6291906139ad565b8210610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a9061372f565b60405180910390fd5b81600e54610db19190613a34565b341015610df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dea9061382f565b60405180910390fd5b5b60016103e9610e0391906139ad565b8282610e0f91906139ad565b10610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061380f565b60405180910390fd5b60005b82811015610e8257610e6f848284610e6a91906139ad565b611fa1565b8080610e7a90613bdb565b915050610e52565b50505050565b610ea3838383604051806020016040528060008152506117ab565b505050565b60606000610eb58361119f565b905060008167ffffffffffffffff811115610ed357610ed2613d40565b5b604051908082528060200260200182016040528015610f015781602001602082028036833780820191505090505b50905060005b82811015610f4b57610f198582610c18565b828281518110610f2c57610f2b613d11565b5b6020026020010181815250508080610f4390613bdb565b915050610f07565b508092505050919050565b6000600d54905090565b6000610f6a610ba1565b8210610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa29061386f565b60405180910390fd5b60088281548110610fbf57610fbe613d11565b5b90600052602060002001549050919050565b610fd9611b3a565b73ffffffffffffffffffffffffffffffffffffffff16610ff7611499565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110449061378f565b60405180910390fd5b80600c8190555050565b61105f611b3a565b73ffffffffffffffffffffffffffffffffffffffff1661107d611499565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca9061378f565b60405180910390fd5b80600b90805190602001906110e9929190612b5c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118d906136ef565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611210576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611207906136cf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61125f611b3a565b73ffffffffffffffffffffffffffffffffffffffff1661127d611499565b73ffffffffffffffffffffffffffffffffffffffff16146112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca9061378f565b60405180910390fd5b6112dd6000611fbf565b565b6103e981565b6112ed611b3a565b73ffffffffffffffffffffffffffffffffffffffff1661130b611499565b73ffffffffffffffffffffffffffffffffffffffff1614611361576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113589061378f565b60405180910390fd5b60004790506000811161137357600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc6113b560646113a7600d548661208590919063ffffffff16565b61209b90919063ffffffff16565b9081150290604051600060405180830381858888f1935050505061140e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114059061368f565b60405180910390fd5b7343d7ada37de2c08da05993e33b7a675316a7cf0a73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d9061360f565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114cb611b3a565b73ffffffffffffffffffffffffffffffffffffffff166114e9611499565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061378f565b60405180910390fd5b80600e8190555050565b60606001805461155890613b78565b80601f016020809104026020016040519081016040528092919081815260200182805461158490613b78565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b5050505050905090565b60006115e5611499565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614156116215760009050611627565b600e5490505b90565b611632611b3a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116979061364f565b60405180910390fd5b80600560006116ad611b3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175a611b3a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161179f9190613552565b60405180910390a35050565b6117bc6117b6611b3a565b83611c67565b6117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f29061384f565b60405180910390fd5b611807848484846120b1565b50505050565b606061181882611b42565b611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e906137cf565b60405180910390fd5b600061186161210d565b9050600081511161188157604051806020016040528060008152506118ac565b8061188b8461219f565b60405160200161189c9291906134a5565b6040516020818303038152906040525b915050919050565b7343d7ada37de2c08da05993e33b7a675316a7cf0a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611968611b3a565b73ffffffffffffffffffffffffffffffffffffffff16611986611499565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d39061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a43906135cf565b60405180910390fd5b611a5581611fbf565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b335750611b3282612300565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c21836110ed565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c7282611b42565b611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061366f565b60405180910390fd5b6000611cbc836110ed565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2b57508373ffffffffffffffffffffffffffffffffffffffff16611d13846109f1565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3c5750611d3b81856118cc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d65826110ed565b73ffffffffffffffffffffffffffffffffffffffff1614611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db2906137af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e229061362f565b60405180910390fd5b611e3683838361236a565b611e41600082611bae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e919190613a8e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee891906139ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611fbb82826040518060200160405280600081525061247e565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836120939190613a34565b905092915050565b600081836120a99190613a03565b905092915050565b6120bc848484611d45565b6120c8848484846124d9565b612107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fe906135af565b60405180910390fd5b50505050565b6060600b805461211c90613b78565b80601f016020809104026020016040519081016040528092919081815260200182805461214890613b78565b80156121955780601f1061216a57610100808354040283529160200191612195565b820191906000526020600020905b81548152906001019060200180831161217857829003601f168201915b5050505050905090565b606060008214156121e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122fb565b600082905060005b6000821461221957808061220290613bdb565b915050600a826122129190613a03565b91506121ef565b60008167ffffffffffffffff81111561223557612234613d40565b5b6040519080825280601f01601f1916602001820160405280156122675781602001600182028036833780820191505090505b5090505b600085146122f4576001826122809190613a8e565b9150600a8561228f9190613c24565b603061229b91906139ad565b60f81b8183815181106122b1576122b0613d11565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122ed9190613a03565b945061226b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612375838383612670565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123b8576123b381612675565b6123f7565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146123f6576123f583826126be565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243a576124358161282b565b612479565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146124785761247782826128fc565b5b5b505050565b612488838361297b565b61249560008484846124d9565b6124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb906135af565b60405180910390fd5b505050565b60006124fa8473ffffffffffffffffffffffffffffffffffffffff16612b49565b15612663578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612523611b3a565b8786866040518563ffffffff1660e01b815260040161254594939291906134e4565b602060405180830381600087803b15801561255f57600080fd5b505af192505050801561259057506040513d601f19601f8201168201806040525081019061258d9190612f65565b60015b612613573d80600081146125c0576040519150601f19603f3d011682016040523d82523d6000602084013e6125c5565b606091505b5060008151141561260b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612602906135af565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612668565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126cb8461119f565b6126d59190613a8e565b90506000600760008481526020019081526020016000205490508181146127ba576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061283f9190613a8e565b905060006009600084815260200190815260200160002054905060006008838154811061286f5761286e613d11565b5b90600052602060002001549050806008838154811061289157612890613d11565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806128e0576128df613ce2565b5b6001900381819060005260206000200160009055905550505050565b60006129078361119f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e29061370f565b60405180910390fd5b6129f481611b42565b15612a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2b906135ef565b60405180910390fd5b612a406000838361236a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9091906139ad565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612b6890613b78565b90600052602060002090601f016020900481019282612b8a5760008555612bd1565b82601f10612ba357805160ff1916838001178555612bd1565b82800160010185558215612bd1579182015b82811115612bd0578251825591602001919060010190612bb5565b5b509050612bde9190612be2565b5090565b5b80821115612bfb576000816000905550600101612be3565b5090565b6000612c12612c0d846138cf565b6138aa565b905082815260208101848484011115612c2e57612c2d613d74565b5b612c39848285613b36565b509392505050565b6000612c54612c4f84613900565b6138aa565b905082815260208101848484011115612c7057612c6f613d74565b5b612c7b848285613b36565b509392505050565b600081359050612c92816143a6565b92915050565b600081359050612ca7816143bd565b92915050565b600081359050612cbc816143d4565b92915050565b600081519050612cd1816143d4565b92915050565b600082601f830112612cec57612ceb613d6f565b5b8135612cfc848260208601612bff565b91505092915050565b600082601f830112612d1a57612d19613d6f565b5b8135612d2a848260208601612c41565b91505092915050565b600081359050612d42816143eb565b92915050565b600060208284031215612d5e57612d5d613d7e565b5b6000612d6c84828501612c83565b91505092915050565b60008060408385031215612d8c57612d8b613d7e565b5b6000612d9a85828601612c83565b9250506020612dab85828601612c83565b9150509250929050565b600080600060608486031215612dce57612dcd613d7e565b5b6000612ddc86828701612c83565b9350506020612ded86828701612c83565b9250506040612dfe86828701612d33565b9150509250925092565b60008060008060808587031215612e2257612e21613d7e565b5b6000612e3087828801612c83565b9450506020612e4187828801612c83565b9350506040612e5287828801612d33565b925050606085013567ffffffffffffffff811115612e7357612e72613d79565b5b612e7f87828801612cd7565b91505092959194509250565b60008060408385031215612ea257612ea1613d7e565b5b6000612eb085828601612c83565b9250506020612ec185828601612c98565b9150509250929050565b60008060408385031215612ee257612ee1613d7e565b5b6000612ef085828601612c83565b9250506020612f0185828601612d33565b9150509250929050565b600060208284031215612f2157612f20613d7e565b5b6000612f2f84828501612c98565b91505092915050565b600060208284031215612f4e57612f4d613d7e565b5b6000612f5c84828501612cad565b91505092915050565b600060208284031215612f7b57612f7a613d7e565b5b6000612f8984828501612cc2565b91505092915050565b600060208284031215612fa857612fa7613d7e565b5b600082013567ffffffffffffffff811115612fc657612fc5613d79565b5b612fd284828501612d05565b91505092915050565b600060208284031215612ff157612ff0613d7e565b5b6000612fff84828501612d33565b91505092915050565b60006130148383613487565b60208301905092915050565b61302981613ac2565b82525050565b600061303a82613941565b613044818561396f565b935061304f83613931565b8060005b838110156130805781516130678882613008565b975061307283613962565b925050600181019050613053565b5085935050505092915050565b61309681613ad4565b82525050565b60006130a78261394c565b6130b18185613980565b93506130c1818560208601613b45565b6130ca81613d83565b840191505092915050565b60006130e082613957565b6130ea8185613991565b93506130fa818560208601613b45565b61310381613d83565b840191505092915050565b600061311982613957565b61312381856139a2565b9350613133818560208601613b45565b80840191505092915050565b600061314c602b83613991565b915061315782613d94565b604082019050919050565b600061316f603283613991565b915061317a82613de3565b604082019050919050565b6000613192602683613991565b915061319d82613e32565b604082019050919050565b60006131b5601c83613991565b91506131c082613e81565b602082019050919050565b60006131d8601a83613991565b91506131e382613eaa565b602082019050919050565b60006131fb602483613991565b915061320682613ed3565b604082019050919050565b600061321e601983613991565b915061322982613f22565b602082019050919050565b6000613241602c83613991565b915061324c82613f4b565b604082019050919050565b6000613264601683613991565b915061326f82613f9a565b602082019050919050565b6000613287603883613991565b915061329282613fc3565b604082019050919050565b60006132aa602a83613991565b91506132b582614012565b604082019050919050565b60006132cd602983613991565b91506132d882614061565b604082019050919050565b60006132f0602083613991565b91506132fb826140b0565b602082019050919050565b6000613313603383613991565b915061331e826140d9565b604082019050919050565b6000613336600b83613991565b915061334182614128565b602082019050919050565b6000613359602c83613991565b915061336482614151565b604082019050919050565b600061337c602083613991565b9150613387826141a0565b602082019050919050565b600061339f602983613991565b91506133aa826141c9565b604082019050919050565b60006133c2602f83613991565b91506133cd82614218565b604082019050919050565b60006133e5602183613991565b91506133f082614267565b604082019050919050565b6000613408601683613991565b9150613413826142b6565b602082019050919050565b600061342b601983613991565b9150613436826142df565b602082019050919050565b600061344e603183613991565b915061345982614308565b604082019050919050565b6000613471602c83613991565b915061347c82614357565b604082019050919050565b61349081613b2c565b82525050565b61349f81613b2c565b82525050565b60006134b1828561310e565b91506134bd828461310e565b91508190509392505050565b60006020820190506134de6000830184613020565b92915050565b60006080820190506134f96000830187613020565b6135066020830186613020565b6135136040830185613496565b8181036060830152613525818461309c565b905095945050505050565b6000602082019050818103600083015261354a818461302f565b905092915050565b6000602082019050613567600083018461308d565b92915050565b6000602082019050818103600083015261358781846130d5565b905092915050565b600060208201905081810360008301526135a88161313f565b9050919050565b600060208201905081810360008301526135c881613162565b9050919050565b600060208201905081810360008301526135e881613185565b9050919050565b60006020820190508181036000830152613608816131a8565b9050919050565b60006020820190508181036000830152613628816131cb565b9050919050565b60006020820190508181036000830152613648816131ee565b9050919050565b6000602082019050818103600083015261366881613211565b9050919050565b6000602082019050818103600083015261368881613234565b9050919050565b600060208201905081810360008301526136a881613257565b9050919050565b600060208201905081810360008301526136c88161327a565b9050919050565b600060208201905081810360008301526136e88161329d565b9050919050565b60006020820190508181036000830152613708816132c0565b9050919050565b60006020820190508181036000830152613728816132e3565b9050919050565b6000602082019050818103600083015261374881613306565b9050919050565b6000602082019050818103600083015261376881613329565b9050919050565b600060208201905081810360008301526137888161334c565b9050919050565b600060208201905081810360008301526137a88161336f565b9050919050565b600060208201905081810360008301526137c881613392565b9050919050565b600060208201905081810360008301526137e8816133b5565b9050919050565b60006020820190508181036000830152613808816133d8565b9050919050565b60006020820190508181036000830152613828816133fb565b9050919050565b600060208201905081810360008301526138488161341e565b9050919050565b6000602082019050818103600083015261386881613441565b9050919050565b6000602082019050818103600083015261388881613464565b9050919050565b60006020820190506138a46000830184613496565b92915050565b60006138b46138c5565b90506138c08282613baa565b919050565b6000604051905090565b600067ffffffffffffffff8211156138ea576138e9613d40565b5b6138f382613d83565b9050602081019050919050565b600067ffffffffffffffff82111561391b5761391a613d40565b5b61392482613d83565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b882613b2c565b91506139c383613b2c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139f8576139f7613c55565b5b828201905092915050565b6000613a0e82613b2c565b9150613a1983613b2c565b925082613a2957613a28613c84565b5b828204905092915050565b6000613a3f82613b2c565b9150613a4a83613b2c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8357613a82613c55565b5b828202905092915050565b6000613a9982613b2c565b9150613aa483613b2c565b925082821015613ab757613ab6613c55565b5b828203905092915050565b6000613acd82613b0c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b63578082015181840152602081019050613b48565b83811115613b72576000848401525b50505050565b60006002820490506001821680613b9057607f821691505b60208210811415613ba457613ba3613cb3565b5b50919050565b613bb382613d83565b810181811067ffffffffffffffff82111715613bd257613bd1613d40565b5b80604052505050565b6000613be682613b2c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1957613c18613c55565b5b600182019050919050565b6000613c2f82613b2c565b9150613c3a83613b2c565b925082613c4a57613c49613c84565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5472616e7366657220746f2063726561746f72206661696c6564000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5472616e7366657220746f20646576206661696c656400000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e206d696e206265747765656e203120616e6420313020426c6f60008201527f636b20476c7970687320617420612074696d6500000000000000000000000000602082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6143af81613ac2565b81146143ba57600080fd5b50565b6143c681613ad4565b81146143d157600080fd5b50565b6143dd81613ae0565b81146143e857600080fd5b50565b6143f481613b2c565b81146143ff57600080fd5b5056fea2646970667358221220c12d1e323a763c7c8c364ab0ed962f8b5a567d07d770fe88e7463365160655bd64736f6c63430008050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f626c6f636b676c797068732e636f6d2f6170692f626c6f636b676c7970682f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://blockglyphs.com/api/blockglyph/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [2] : 68747470733a2f2f626c6f636b676c797068732e636f6d2f6170692f626c6f63
Arg [3] : 6b676c7970682f00000000000000000000000000000000000000000000000000
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.