ERC-721
Overview
Max Total Supply
37 BI
Holders
14
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlootIdentity
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import 'base64-sol/base64.sol'; import "./StringUtil.sol"; interface BlootInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } contract BlootIdentity is ERC721Enumerable, ReentrancyGuard, Ownable { uint256 public price = 10000000000000000; // 0.01 ETH uint256 public TOTAL_SIZE = 11000; uint256 public Bloot_SIZE = 10000; address public blootAddress = 0xd44b96c6b4778cc652D91F1E4f1933517354FEBB; BlootInterface public BlootContract = BlootInterface(blootAddress); string[] private firstNames = [ "Axtor", "Sawcon", "Chokonma", "Gobolma", "Eizzen", "Grabma", "Gobolma", "Hythan", "Ivan", "Jeven", "Kisma", "Ligma", "Marvin", "Nathan", "Ozzam", "Perside", "Swallama", "Rhydon", "Sagandese", "Sigma", "Tavos", "Urim", "Vomiti", "Wahwahman", "Yabloo", "Zygan" ]; string[] private lastNames = [ "Notz", "Degenard", "Maidek", "Deesnotz", "Emaculum", "Faridane", "Ligma", "Heiztor", "Immithen", "Jarvethen", "Karmore", "Ligma", "Malion", "Napier", "Orgusis", "Proviz", "Jajasime", "Prelate", "Sugma", "Dik", "Umozo", "Vamanac", "Gapalago", "Yambalos", "Bawlz" ]; string [] private clans = [ "Twitter Heads Group", "Discord Insomniacs", "Diamond Hand Corp", "Companions Solar", "Antibloot Bloot Club", "Organic Veganism" ]; string [] private operation = [ "alpha", "beta", "gamma", "delta", "epsilon" ]; string [] private regions = [ "U5 Territory", "Citadel", "Cannabis District", "Foundry Nueva", "San Dominigo", "Globgogabgalab", "New Morvidia", "Diamond City", "Cartan", "Cave Arena", "Red Light Garden" ]; string [] private skillboost = [ "Strength Boost", "Aiming Boost", "Stamina Boost", "Stealth Boost", "Driving Boost", "Swimming Boost", "All Skill Boost" ]; string [] private specialItems = [ "silver chain", "metaverse goggles", "ebook reader", "crypto wallet", "stylus", "coconut water" ]; constructor() ERC721("BlootIdentity", "BI") Ownable() { } function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getFirstName(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "FIRSTNAME", firstNames); } function getLastName(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "LASTNAME", lastNames); } function getClan(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "CLAN", clans); } function getOperation(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "OPERATION", operation); } function getRegion(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "REGION", regions); } function getSkillBoost(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "SKILLBOOST", skillboost); } function getItem(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "ITEM", specialItems); } //blooooot function ownerIsBlootHolder(uint256 tokenId) internal view returns (bool) { try BlootContract.tokenOfOwnerByIndex(ownerOf(tokenId), 0) returns (uint256 blootId) { return true; } catch Error (string memory reason) { return false; } } function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal view returns (string memory) { uint256 rand = random(string(abi.encodePacked(keyPrefix, StringUtil.toString(tokenId)))); string memory output = sourceArray[rand % sourceArray.length]; return output; } function tokenURI(uint256 tokenId) override public view returns (string memory) { string[15] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: black; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="'; parts[1] = "#3aeb34"; parts[2] = '" /><text x="10" y="20" class="base">'; parts[3] = getFirstName(tokenId); parts[4] = '</text><text x="10" y="40" class="base">'; parts[5] = getLastName(tokenId); parts[6] = '</text><text x="10" y="60" class="base">'; parts[7] = getClan(tokenId); parts[8] = '</text><text x="10" y="80" class="base">'; parts[9] = getRegion(tokenId); parts[10] = '</text><text x="10" y="100" class="base">'; parts[11] = getSkillBoost(tokenId); parts[12] = '</text><text x="10" y="120" class="base">'; parts[13] = getItem(tokenId); parts[14] = '</text></svg>'; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8])); output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "#', StringUtil.toString(tokenId), '", "description": "Identity is a persona layer on top of Bloot0. Names, properties, images, and other functionality are intentionally omitted for others to interpret. Feel free to use Identity in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function mint(uint256 tokenId) public payable nonReentrant { require(tokenId > 10000 && tokenId <= 11000, "Token ID invalid"); require(price <= msg.value, "Ether value sent is not correct"); _safeMint(_msgSender(), tokenId); } function multiMint(uint256[] memory tokenIds) public payable nonReentrant { require((price * tokenIds.length) <= msg.value, "Ether value sent is not correct"); for (uint256 i = 0; i < tokenIds.length; i++) { require(tokenIds[i] > 10000 && tokenIds[i] <= 11000, "Token ID invalid"); _safeMint(msg.sender, tokenIds[i]); } } function mintWithBloot(uint256 blootId) public payable nonReentrant { require(blootId > 0 && blootId <= 10000, "Token ID invalid"); require(BlootContract.ownerOf(blootId) == msg.sender, "Not the owner of Bloot id"); _safeMint(_msgSender(), blootId); } function multiMintWithBloot(uint256[] memory blootIds) public payable nonReentrant { for (uint256 i = 0; i < blootIds.length; i++) { require(BlootContract.ownerOf(blootIds[i]) == msg.sender, "Not owner of Bloot id"); _safeMint(_msgSender(), blootIds[i]); } } }
pragma solidity ^0.8.0; library StringUtil { function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } }
// 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; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 "../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 "../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 "../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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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); }
// SPDX-License-Identifier: MIT /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides a function for encoding some bytes in base64 library Base64 { string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { dataPtr := add(dataPtr, 3) // read 3 bytes let input := mload(dataPtr) // write 4 characters mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F))))) resultPtr := add(resultPtr, 1) mstore(resultPtr, shl(248, mload(add(tablePtr, and( input, 0x3F))))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BlootContract","outputs":[{"internalType":"contract BlootInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Bloot_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blootAddress","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getClan","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirstName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getItem","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLastName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOperation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRegion","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSkillBoost","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blootId","type":"uint256"}],"name":"mintWithBloot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"multiMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"blootIds","type":"uint256[]"}],"name":"multiMintWithBloot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]
Contract Creation Code
6080604052662386f26fc10000600c55612af8600d55612710600e5573d44b96c6b4778cc652d91f1e4f1933517354febb600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518061034001604052806040518060400160405280600581526020017f4178746f7200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f536177636f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f43686f6b6f6e6d6100000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f476f626f6c6d610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f45697a7a656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f477261626d61000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f476f626f6c6d610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f48797468616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4976616e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4a6576656e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4b69736d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c69676d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d617276696e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4e617468616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4f7a7a616d00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f506572736964650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f5377616c6c616d6100000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f526879646f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f536167616e64657365000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5369676d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5461766f7300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f5572696d0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f566f6d697469000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f5761687761686d616e000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f5961626c6f6f000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5a7967616e000000000000000000000000000000000000000000000000000000815250815250601190601a620006ed92919062001716565b506040518061032001604052806040518060400160405280600481526020017f4e6f747a0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f446567656e61726400000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d616964656b000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f446565736e6f747a00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f456d6163756c756d00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4661726964616e6500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c69676d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4865697a746f720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f496d6d697468656e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4a617276657468656e000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4b61726d6f72650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c69676d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d616c696f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4e6170696572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4f7267757369730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f50726f76697a000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4a616a6173696d6500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5072656c6174650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5375676d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f44696b000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f556d6f7a6f00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f56616d616e61630000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f476170616c61676f00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f59616d62616c6f7300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4261776c7a000000000000000000000000000000000000000000000000000000815250815250601290601962000ccd9291906200177d565b506040518060c001604052806040518060400160405280601381526020017f547769747465722048656164732047726f75700000000000000000000000000081525081526020016040518060400160405280601281526020017f446973636f726420496e736f6d6e69616373000000000000000000000000000081525081526020016040518060400160405280601181526020017f4469616d6f6e642048616e6420436f727000000000000000000000000000000081525081526020016040518060400160405280601081526020017f436f6d70616e696f6e7320536f6c61720000000000000000000000000000000081525081526020016040518060400160405280601481526020017f416e7469626c6f6f7420426c6f6f7420436c756200000000000000000000000081525081526020016040518060400160405280601081526020017f4f7267616e696320566567616e69736d00000000000000000000000000000000815250815250601390600662000e4b929190620017e4565b506040518060a001604052806040518060400160405280600581526020017f616c70686100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f626574610000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f67616d6d6100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f64656c746100000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f657073696c6f6e00000000000000000000000000000000000000000000000000815250815250601490600562000f8e9291906200184b565b506040518061016001604052806040518060400160405280600c81526020017f5535205465727269746f7279000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4369746164656c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601181526020017f43616e6e6162697320446973747269637400000000000000000000000000000081525081526020016040518060400160405280600d81526020017f466f756e647279204e756576610000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f53616e20446f6d696e69676f000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f476c6f62676f67616267616c616200000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f4e6577204d6f727669646961000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f4469616d6f6e642043697479000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f43617274616e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f43617665204172656e610000000000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f526564204c696768742047617264656e00000000000000000000000000000000815250815250601590600b62001234929190620018b2565b506040518060e001604052806040518060400160405280600e81526020017f537472656e67746820426f6f737400000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f41696d696e6720426f6f7374000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f5374616d696e6120426f6f73740000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f537465616c746820426f6f73740000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f44726976696e6720426f6f73740000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f5377696d6d696e6720426f6f737400000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f416c6c20536b696c6c20426f6f737400000000000000000000000000000000008152508152506016906007620013ed92919062001919565b506040518060c001604052806040518060400160405280600c81526020017f73696c76657220636861696e000000000000000000000000000000000000000081525081526020016040518060400160405280601181526020017f6d657461766572736520676f67676c657300000000000000000000000000000081525081526020016040518060400160405280600c81526020017f65626f6f6b20726561646572000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f63727970746f2077616c6c65740000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f7374796c7573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f636f636f6e75742077617465720000000000000000000000000000000000000081525081525060179060066200156b929190620017e4565b503480156200157957600080fd5b506040518060400160405280600d81526020017f426c6f6f744964656e74697479000000000000000000000000000000000000008152506040518060400160405280600281526020017f42490000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620015fe92919062001980565b5080600190805190602001906200161792919062001980565b5050506001600a8190555062001642620016366200164860201b60201c565b6200165060201b60201c565b62001b03565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280548282559060005260206000209081019282156200176a579160200282015b82811115620017695782518290805190602001906200175892919062001980565b509160200191906001019062001737565b5b50905062001779919062001a11565b5090565b828054828255906000526020600020908101928215620017d1579160200282015b82811115620017d0578251829080519060200190620017bf92919062001980565b50916020019190600101906200179e565b5b509050620017e0919062001a11565b5090565b82805482825590600052602060002090810192821562001838579160200282015b82811115620018375782518290805190602001906200182692919062001980565b509160200191906001019062001805565b5b50905062001847919062001a11565b5090565b8280548282559060005260206000209081019282156200189f579160200282015b828111156200189e5782518290805190602001906200188d92919062001980565b50916020019190600101906200186c565b5b509050620018ae919062001a11565b5090565b82805482825590600052602060002090810192821562001906579160200282015b8281111562001905578251829080519060200190620018f492919062001980565b5091602001919060010190620018d3565b5b50905062001915919062001a11565b5090565b8280548282559060005260206000209081019282156200196d579160200282015b828111156200196c5782518290805190602001906200195b92919062001980565b50916020019190600101906200193a565b5b5090506200197c919062001a11565b5090565b8280546200198e9062001a9e565b90600052602060002090601f016020900481019282620019b25760008555620019fe565b82601f10620019cd57805160ff1916838001178555620019fe565b82800160010185558215620019fe579182015b82811115620019fd578251825591602001919060010190620019e0565b5b50905062001a0d919062001a39565b5090565b5b8082111562001a35576000818162001a2b919062001a58565b5060010162001a12565b5090565b5b8082111562001a5457600081600090555060010162001a3a565b5090565b50805462001a669062001a9e565b6000825580601f1062001a7a575062001a9b565b601f01602090049060005260206000209081019062001a9a919062001a39565b5b50565b6000600282049050600182168062001ab757607f821691505b6020821081141562001ace5762001acd62001ad4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615b0c8062001b136000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063b40c25d2116100a0578063c87b56dd1161006f578063c87b56dd14610791578063e0cc3eb6146107ce578063e985e9c51461080b578063f2fde38b14610848578063f3db682b1461087157610204565b8063b40c25d2146106e4578063b4a9dcd214610700578063b88d4fde1461073d578063c63b2f681461076657610204565b806395d89b41116100e757806395d89b411461062d5780639a0e4ebb14610658578063a035b1fe14610674578063a0712d681461069f578063a22cb465146106bb57610204565b806370a0823114610583578063715018a6146105c057806375b00bff146105d75780638da5cb5b1461060257610204565b8063202e39241161019b57806340ba0e941161016a57806340ba0e941461048757806342842e0e146104c45780634f6ccce7146104ed5780636352211e1461052a57806363812e9a1461056757610204565b8063202e3924146103a757806323b872dd146103e45780632f745c591461040d5780633129e7731461044a57610204565b8063172a56c1116101d7578063172a56c1146102d7578063174029f61461031457806318160ddd146103515780631fd1c09f1461037c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906142f0565b61089c565b60405161023d91906149c5565b60405180910390f35b34801561025257600080fd5b5061025b610916565b60405161026891906149fb565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190614342565b6109a8565b6040516102a5919061495e565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190614273565b610a2d565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190614342565b610b45565b60405161030b91906149fb565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190614342565b610c5f565b60405161034891906149fb565b60405180910390f35b34801561035d57600080fd5b50610366610d79565b6040516103739190614cdd565b60405180910390f35b34801561038857600080fd5b50610391610d86565b60405161039e91906149e0565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190614342565b610dac565b6040516103db91906149fb565b60405180910390f35b3480156103f057600080fd5b5061040b6004803603810190610406919061416d565b610ec6565b005b34801561041957600080fd5b50610434600480360381019061042f9190614273565b610f26565b6040516104419190614cdd565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190614342565b610fcb565b60405161047e91906149fb565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190614342565b6110e5565b6040516104bb91906149fb565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e6919061416d565b6111ff565b005b3480156104f957600080fd5b50610514600480360381019061050f9190614342565b61121f565b6040516105219190614cdd565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190614342565b6112b6565b60405161055e919061495e565b60405180910390f35b610581600480360381019061057c91906142af565b611368565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906140df565b61158a565b6040516105b79190614cdd565b60405180910390f35b3480156105cc57600080fd5b506105d5611642565b005b3480156105e357600080fd5b506105ec6116ca565b6040516105f99190614cdd565b60405180910390f35b34801561060e57600080fd5b506106176116d0565b604051610624919061495e565b60405180910390f35b34801561063957600080fd5b506106426116fa565b60405161064f91906149fb565b60405180910390f35b610672600480360381019061066d91906142af565b61178c565b005b34801561068057600080fd5b50610689611972565b6040516106969190614cdd565b60405180910390f35b6106b960048036038101906106b49190614342565b611978565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190614237565b611a79565b005b6106fe60048036038101906106f99190614342565b611bfa565b005b34801561070c57600080fd5b5061072760048036038101906107229190614342565b611dcd565b60405161073491906149fb565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906141bc565b611ee7565b005b34801561077257600080fd5b5061077b611f49565b6040516107889190614cdd565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190614342565b611f4f565b6040516107c591906149fb565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190614342565b6128f8565b60405161080291906149fb565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190614131565b612a12565b60405161083f91906149c5565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906140df565b612aa6565b005b34801561087d57600080fd5b50610886612b9e565b604051610893919061495e565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090f575061090e82612bc4565b5b9050919050565b60606000805461092590614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461095190614fac565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b382612ca6565b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990614b9d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a38826112b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090614c1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac8612d12565b73ffffffffffffffffffffffffffffffffffffffff161480610af75750610af681610af1612d12565b612a12565b5b610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90614b1d565b60405180910390fd5b610b408383612d1a565b505050565b6060610c58826040518060400160405280600981526020017f46495253544e414d4500000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b82821015610c4f578382906000526020600020018054610bc290614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610bee90614fac565b8015610c3b5780601f10610c1057610100808354040283529160200191610c3b565b820191906000526020600020905b815481529060010190602001808311610c1e57829003601f168201915b505050505081526020019060010190610ba3565b50505050612dd3565b9050919050565b6060610d72826040518060400160405280600881526020017f4c4153544e414d450000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015610d69578382906000526020600020018054610cdc90614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0890614fac565b8015610d555780601f10610d2a57610100808354040283529160200191610d55565b820191906000526020600020905b815481529060010190602001808311610d3857829003601f168201915b505050505081526020019060010190610cbd565b50505050612dd3565b9050919050565b6000600880549050905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610ebf826040518060400160405280600981526020017f4f5045524154494f4e00000000000000000000000000000000000000000000008152506014805480602002602001604051908101604052809291908181526020016000905b82821015610eb6578382906000526020600020018054610e2990614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5590614fac565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b505050505081526020019060010190610e0a565b50505050612dd3565b9050919050565b610ed7610ed1612d12565b82612e68565b610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614c3d565b60405180910390fd5b610f21838383612f46565b505050565b6000610f318361158a565b8210610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990614a1d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60606110de826040518060400160405280600481526020017f4954454d000000000000000000000000000000000000000000000000000000008152506017805480602002602001604051908101604052809291908181526020016000905b828210156110d557838290600052602060002001805461104890614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461107490614fac565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081526020019060010190611029565b50505050612dd3565b9050919050565b60606111f8826040518060400160405280600681526020017f524547494f4e00000000000000000000000000000000000000000000000000008152506015805480602002602001604051908101604052809291908181526020016000905b828210156111ef57838290600052602060002001805461116290614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461118e90614fac565b80156111db5780601f106111b0576101008083540402835291602001916111db565b820191906000526020600020905b8154815290600101906020018083116111be57829003601f168201915b505050505081526020019060010190611143565b50505050612dd3565b9050919050565b61121a83838360405180602001604052806000815250611ee7565b505050565b6000611229610d79565b821061126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190614c7d565b60405180910390fd5b600882815481106112a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614b5d565b60405180910390fd5b80915050919050565b6002600a5414156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590614cbd565b60405180910390fd5b6002600a8190555060005b815181101561157e573373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110611450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016114749190614cdd565b60206040518083038186803b15801561148c57600080fd5b505afa1580156114a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c49190614108565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190614c9d565b60405180910390fd5b61156b611525612d12565b83838151811061155e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516131a2565b80806115769061500f565b9150506113b9565b506001600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614b3d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164a612d12565b73ffffffffffffffffffffffffffffffffffffffff166116686116d0565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614bbd565b60405180910390fd5b6116c860006131c0565b565b600e5481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170990614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461173590614fac565b80156117825780601f1061175757610100808354040283529160200191611782565b820191906000526020600020905b81548152906001019060200180831161176557829003601f168201915b5050505050905090565b6002600a5414156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614cbd565b60405180910390fd5b6002600a81905550348151600c546117ea9190614e44565b111561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614add565b60405180910390fd5b60005b815181101561196657612710828281518110611873577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101511180156118ca5750612af88282815181106118bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015111155b611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090614bdd565b60405180910390fd5b61195333838381518110611946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516131a2565b808061195e9061500f565b91505061182e565b506001600a8190555050565b600c5481565b6002600a5414156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590614cbd565b60405180910390fd5b6002600a81905550612710811180156119d95750612af88111155b611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90614bdd565b60405180910390fd5b34600c541115611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490614add565b60405180910390fd5b611a6e611a68612d12565b826131a2565b6001600a8190555050565b611a81612d12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614abd565b60405180910390fd5b8060056000611afc612d12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba9612d12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bee91906149c5565b60405180910390a35050565b6002600a541415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614cbd565b60405180910390fd5b6002600a81905550600081118015611c5a57506127108111155b611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090614bdd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611d0b9190614cdd565b60206040518083038186803b158015611d2357600080fd5b505afa158015611d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5b9190614108565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890614c5d565b60405180910390fd5b611dc2611dbc612d12565b826131a2565b6001600a8190555050565b6060611ee0826040518060400160405280600a81526020017f534b494c4c424f4f5354000000000000000000000000000000000000000000008152506016805480602002602001604051908101604052809291908181526020016000905b82821015611ed7578382906000526020600020018054611e4a90614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7690614fac565b8015611ec35780601f10611e9857610100808354040283529160200191611ec3565b820191906000526020600020905b815481529060010190602001808311611ea657829003601f168201915b505050505081526020019060010190611e2b565b50505050612dd3565b9050919050565b611ef8611ef2612d12565b83612e68565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614c3d565b60405180910390fd5b611f4384848484613286565b50505050565b600d5481565b6060611f59613f3b565b60405180610100016040528060d381526020016159dc60d39139816000600f8110611fad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600781526020017f2333616562333400000000000000000000000000000000000000000000000000815250816001600f8110612025577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806025815260200161597760259139816002600f8110612080577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061209183610b45565b816003600f81106120cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060288152602001615aaf60289139816004600f8110612126577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061213783610c5f565b816005600f8110612171577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602881526020016158d560289139816006600f81106121cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506121dd836128f8565b816007600f8110612217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161592660289139816008600f8110612272577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250612283836110e5565b816009600f81106122bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161594e6029913981600a600f8110612318577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061232983611dcd565b81600b600f8110612363577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016158fd6029913981600c600f81106123be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506123cf83610fcb565b81600d600f8110612409577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081600e600f8110612481577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506000816000600f81106124c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151826001600f8110612504577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151836002600f8110612543577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151846003600f8110612582577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856004600f81106125c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151866005600f8110612600577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151876006600f811061263f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886007600f811061267e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896008600f81106126bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016126da99989796959493929190614878565b604051602081830303815290604052905080826009600f8110612726577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a600f8110612765577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b600f81106127a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c600f81106127e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d600f8110612822577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e600f8110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161287c9796959493929190614813565b604051602081830303815290604052905060006128c961289b866132e2565b6128a48461348f565b6040516020016128b59291906148f7565b60405160208183030381529060405261348f565b9050806040516020016128dc919061493c565b6040516020818303038152906040529150819350505050919050565b6060612a0b826040518060400160405280600481526020017f434c414e000000000000000000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b82821015612a0257838290600052602060002001805461297590614fac565b80601f01602080910402602001604051908101604052809291908181526020018280546129a190614fac565b80156129ee5780601f106129c3576101008083540402835291602001916129ee565b820191906000526020600020905b8154815290600101906020018083116129d157829003601f168201915b505050505081526020019060010190612956565b50505050612dd3565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612aae612d12565b73ffffffffffffffffffffffffffffffffffffffff16612acc6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990614bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8990614a5d565b60405180910390fd5b612b9b816131c0565b50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c9f5750612c9e8261363a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d8d836112b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000612e0984612de4876132e2565b604051602001612df59291906147ef565b6040516020818303038152906040526136a4565b9050600083845183612e1b9190615058565b81518110612e52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080925050509392505050565b6000612e7382612ca6565b612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990614afd565b60405180910390fd5b6000612ebd836112b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f2c57508373ffffffffffffffffffffffffffffffffffffffff16612f14846109a8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f3d5750612f3c8185612a12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f66826112b6565b73ffffffffffffffffffffffffffffffffffffffff1614612fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb390614bfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561302c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302390614a9d565b60405180910390fd5b6130378383836136d7565b613042600082612d1a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130929190614e9e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e99190614dbd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131bc8282604051806020016040528060008152506137eb565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613291848484612f46565b61329d84848484613846565b6132dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d390614a3d565b60405180910390fd5b50505050565b6060600082141561332a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061348a565b600082905060005b6000821461335c5780806133459061500f565b915050600a826133559190614e13565b9150613332565b60008167ffffffffffffffff81111561339e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133d05781602001600182028036833780820191505090505b5090505b60008514613483576001826133e99190614e9e565b9150600a856133f89190615058565b60306134049190614dbd565b60f81b818381518110613440577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561347c9190614e13565b94506133d4565b8093505050505b919050565b60606000825114156134b257604051806020016040528060008152509050613635565b600060405180606001604052806040815260200161599c60409139905060006003600285516134e19190614dbd565b6134eb9190614e13565b60046134f79190614e44565b905060006020826135089190614dbd565b67ffffffffffffffff811115613547577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135795781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156135f4576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b82526001820191505061358d565b60038951066001811461360e576002811461361e57613629565b613d3d60f01b6002830352613629565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816040516020016136b791906147d8565b6040516020818303038152906040528051906020012060001c9050919050565b6136e28383836139dd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561372557613720816139e2565b613764565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613763576137628382613a2b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137a7576137a281613b98565b6137e6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137e5576137e48282613cdb565b5b5b505050565b6137f58383613d5a565b6138026000848484613846565b613841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383890614a3d565b60405180910390fd5b505050565b60006138678473ffffffffffffffffffffffffffffffffffffffff16613f28565b156139d0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613890612d12565b8786866040518563ffffffff1660e01b81526004016138b29493929190614979565b602060405180830381600087803b1580156138cc57600080fd5b505af19250505080156138fd57506040513d601f19601f820116820180604052508101906138fa9190614319565b60015b613980573d806000811461392d576040519150601f19603f3d011682016040523d82523d6000602084013e613932565b606091505b50600081511415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90614a3d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139d5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a388461158a565b613a429190614e9e565b9050600060076000848152602001908152602001600020549050818114613b27576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613bac9190614e9e565b9050600060096000848152602001908152602001600020549050600060088381548110613c02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ce68361158a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc190614b7d565b60405180910390fd5b613dd381612ca6565b15613e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e0a90614a7d565b60405180910390fd5b613e1f600083836136d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e6f9190614dbd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101e00160405280600f905b6060815260200190600190039081613f4b5790505090565b6000613f76613f7184614d1d565b614cf8565b90508083825260208201905082856020860282011115613f9557600080fd5b60005b85811015613fc55781613fab88826140ca565b845260208401935060208301925050600181019050613f98565b5050509392505050565b6000613fe2613fdd84614d49565b614cf8565b905082815260208101848484011115613ffa57600080fd5b614005848285614f6a565b509392505050565b60008135905061401c81615878565b92915050565b60008151905061403181615878565b92915050565b600082601f83011261404857600080fd5b8135614058848260208601613f63565b91505092915050565b6000813590506140708161588f565b92915050565b600081359050614085816158a6565b92915050565b60008151905061409a816158a6565b92915050565b600082601f8301126140b157600080fd5b81356140c1848260208601613fcf565b91505092915050565b6000813590506140d9816158bd565b92915050565b6000602082840312156140f157600080fd5b60006140ff8482850161400d565b91505092915050565b60006020828403121561411a57600080fd5b600061412884828501614022565b91505092915050565b6000806040838503121561414457600080fd5b60006141528582860161400d565b92505060206141638582860161400d565b9150509250929050565b60008060006060848603121561418257600080fd5b60006141908682870161400d565b93505060206141a18682870161400d565b92505060406141b2868287016140ca565b9150509250925092565b600080600080608085870312156141d257600080fd5b60006141e08782880161400d565b94505060206141f18782880161400d565b9350506040614202878288016140ca565b925050606085013567ffffffffffffffff81111561421f57600080fd5b61422b878288016140a0565b91505092959194509250565b6000806040838503121561424a57600080fd5b60006142588582860161400d565b925050602061426985828601614061565b9150509250929050565b6000806040838503121561428657600080fd5b60006142948582860161400d565b92505060206142a5858286016140ca565b9150509250929050565b6000602082840312156142c157600080fd5b600082013567ffffffffffffffff8111156142db57600080fd5b6142e784828501614037565b91505092915050565b60006020828403121561430257600080fd5b600061431084828501614076565b91505092915050565b60006020828403121561432b57600080fd5b60006143398482850161408b565b91505092915050565b60006020828403121561435457600080fd5b6000614362848285016140ca565b91505092915050565b61437481614ed2565b82525050565b61438381614ee4565b82525050565b600061439482614d7a565b61439e8185614d90565b93506143ae818560208601614f79565b6143b781615145565b840191505092915050565b6143cb81614f46565b82525050565b60006143dc82614d85565b6143e68185614da1565b93506143f6818560208601614f79565b6143ff81615145565b840191505092915050565b600061441582614d85565b61441f8185614db2565b935061442f818560208601614f79565b80840191505092915050565b6000614448602b83614da1565b915061445382615156565b604082019050919050565b600061446b603283614da1565b9150614476826151a5565b604082019050919050565b600061448e602683614da1565b9150614499826151f4565b604082019050919050565b60006144b1601c83614da1565b91506144bc82615243565b602082019050919050565b60006144d4602483614da1565b91506144df8261526c565b604082019050919050565b60006144f7601983614da1565b9150614502826152bb565b602082019050919050565b600061451a601f83614da1565b9150614525826152e4565b602082019050919050565b600061453d600b83614db2565b91506145488261530d565b600b82019050919050565b6000614560602c83614da1565b915061456b82615336565b604082019050919050565b6000614583603883614da1565b915061458e82615385565b604082019050919050565b60006145a6602a83614da1565b91506145b1826153d4565b604082019050919050565b60006145c9602983614da1565b91506145d482615423565b604082019050919050565b60006145ec600283614db2565b91506145f782615472565b600282019050919050565b600061460f602083614da1565b915061461a8261549b565b602082019050919050565b6000614632602c83614da1565b915061463d826154c4565b604082019050919050565b6000614655602083614da1565b915061466082615513565b602082019050919050565b6000614678601083614da1565b91506146838261553c565b602082019050919050565b600061469b602983614da1565b91506146a682615565565b604082019050919050565b60006146be60fc83614db2565b91506146c9826155b4565b60fc82019050919050565b60006146e1602183614da1565b91506146ec826156e7565b604082019050919050565b6000614704601d83614db2565b915061470f82615736565b601d82019050919050565b6000614727603183614da1565b91506147328261575f565b604082019050919050565b600061474a601983614da1565b9150614755826157ae565b602082019050919050565b600061476d602c83614da1565b9150614778826157d7565b604082019050919050565b6000614790601583614da1565b915061479b82615826565b602082019050919050565b60006147b3601f83614da1565b91506147be8261584f565b602082019050919050565b6147d281614f3c565b82525050565b60006147e4828461440a565b915081905092915050565b60006147fb828561440a565b9150614807828461440a565b91508190509392505050565b600061481f828a61440a565b915061482b828961440a565b9150614837828861440a565b9150614843828761440a565b915061484f828661440a565b915061485b828561440a565b9150614867828461440a565b915081905098975050505050505050565b6000614884828c61440a565b9150614890828b61440a565b915061489c828a61440a565b91506148a8828961440a565b91506148b4828861440a565b91506148c0828761440a565b91506148cc828661440a565b91506148d8828561440a565b91506148e4828461440a565b91508190509a9950505050505050505050565b600061490282614530565b915061490e828561440a565b9150614919826146b1565b9150614925828461440a565b9150614930826145df565b91508190509392505050565b6000614947826146f7565b9150614953828461440a565b915081905092915050565b6000602082019050614973600083018461436b565b92915050565b600060808201905061498e600083018761436b565b61499b602083018661436b565b6149a860408301856147c9565b81810360608301526149ba8184614389565b905095945050505050565b60006020820190506149da600083018461437a565b92915050565b60006020820190506149f560008301846143c2565b92915050565b60006020820190508181036000830152614a1581846143d1565b905092915050565b60006020820190508181036000830152614a368161443b565b9050919050565b60006020820190508181036000830152614a568161445e565b9050919050565b60006020820190508181036000830152614a7681614481565b9050919050565b60006020820190508181036000830152614a96816144a4565b9050919050565b60006020820190508181036000830152614ab6816144c7565b9050919050565b60006020820190508181036000830152614ad6816144ea565b9050919050565b60006020820190508181036000830152614af68161450d565b9050919050565b60006020820190508181036000830152614b1681614553565b9050919050565b60006020820190508181036000830152614b3681614576565b9050919050565b60006020820190508181036000830152614b5681614599565b9050919050565b60006020820190508181036000830152614b76816145bc565b9050919050565b60006020820190508181036000830152614b9681614602565b9050919050565b60006020820190508181036000830152614bb681614625565b9050919050565b60006020820190508181036000830152614bd681614648565b9050919050565b60006020820190508181036000830152614bf68161466b565b9050919050565b60006020820190508181036000830152614c168161468e565b9050919050565b60006020820190508181036000830152614c36816146d4565b9050919050565b60006020820190508181036000830152614c568161471a565b9050919050565b60006020820190508181036000830152614c768161473d565b9050919050565b60006020820190508181036000830152614c9681614760565b9050919050565b60006020820190508181036000830152614cb681614783565b9050919050565b60006020820190508181036000830152614cd6816147a6565b9050919050565b6000602082019050614cf260008301846147c9565b92915050565b6000614d02614d13565b9050614d0e8282614fde565b919050565b6000604051905090565b600067ffffffffffffffff821115614d3857614d37615116565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d6457614d63615116565b5b614d6d82615145565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dc882614f3c565b9150614dd383614f3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e0857614e07615089565b5b828201905092915050565b6000614e1e82614f3c565b9150614e2983614f3c565b925082614e3957614e386150b8565b5b828204905092915050565b6000614e4f82614f3c565b9150614e5a83614f3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e9357614e92615089565b5b828202905092915050565b6000614ea982614f3c565b9150614eb483614f3c565b925082821015614ec757614ec6615089565b5b828203905092915050565b6000614edd82614f1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614f5182614f58565b9050919050565b6000614f6382614f1c565b9050919050565b82818337600083830152505050565b60005b83811015614f97578082015181840152602081019050614f7c565b83811115614fa6576000848401525b50505050565b60006002820490506001821680614fc457607f821691505b60208210811415614fd857614fd76150e7565b5b50919050565b614fe782615145565b810181811067ffffffffffffffff8211171561500657615005615116565b5b80604052505050565b600061501a82614f3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561504d5761504c615089565b5b600182019050919050565b600061506382614f3c565b915061506e83614f3c565b92508261507e5761507d6150b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f7b226e616d65223a202223000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a20224964656e74697479206973206160008201527f20706572736f6e61206c61796572206f6e20746f70206f6620426c6f6f74302e60208201527f204e616d65732c2070726f706572746965732c20696d616765732c20616e642060408201527f6f746865722066756e6374696f6e616c6974792061726520696e74656e74696f60608201527f6e616c6c79206f6d697474656420666f72206f746865727320746f20696e746560808201527f72707265742e204665656c206672656520746f20757365204964656e7469747960a08201527f20696e20616e792077617920796f752077616e742e222c2022696d616765223a60c08201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000060e082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420746865206f776e6572206f6620426c6f6f7420696400000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e6572206f6620426c6f6f742069640000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61588181614ed2565b811461588c57600080fd5b50565b61589881614ee4565b81146158a357600080fd5b50565b6158af81614ef0565b81146158ba57600080fd5b50565b6158c681614f3c565b81146158d157600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d223c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220c09af66517fefd252d28bfd190823a37b670779abdcc39b080636fa8db810a0164736f6c63430008020033
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063b40c25d2116100a0578063c87b56dd1161006f578063c87b56dd14610791578063e0cc3eb6146107ce578063e985e9c51461080b578063f2fde38b14610848578063f3db682b1461087157610204565b8063b40c25d2146106e4578063b4a9dcd214610700578063b88d4fde1461073d578063c63b2f681461076657610204565b806395d89b41116100e757806395d89b411461062d5780639a0e4ebb14610658578063a035b1fe14610674578063a0712d681461069f578063a22cb465146106bb57610204565b806370a0823114610583578063715018a6146105c057806375b00bff146105d75780638da5cb5b1461060257610204565b8063202e39241161019b57806340ba0e941161016a57806340ba0e941461048757806342842e0e146104c45780634f6ccce7146104ed5780636352211e1461052a57806363812e9a1461056757610204565b8063202e3924146103a757806323b872dd146103e45780632f745c591461040d5780633129e7731461044a57610204565b8063172a56c1116101d7578063172a56c1146102d7578063174029f61461031457806318160ddd146103515780631fd1c09f1461037c57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906142f0565b61089c565b60405161023d91906149c5565b60405180910390f35b34801561025257600080fd5b5061025b610916565b60405161026891906149fb565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190614342565b6109a8565b6040516102a5919061495e565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190614273565b610a2d565b005b3480156102e357600080fd5b506102fe60048036038101906102f99190614342565b610b45565b60405161030b91906149fb565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190614342565b610c5f565b60405161034891906149fb565b60405180910390f35b34801561035d57600080fd5b50610366610d79565b6040516103739190614cdd565b60405180910390f35b34801561038857600080fd5b50610391610d86565b60405161039e91906149e0565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190614342565b610dac565b6040516103db91906149fb565b60405180910390f35b3480156103f057600080fd5b5061040b6004803603810190610406919061416d565b610ec6565b005b34801561041957600080fd5b50610434600480360381019061042f9190614273565b610f26565b6040516104419190614cdd565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190614342565b610fcb565b60405161047e91906149fb565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190614342565b6110e5565b6040516104bb91906149fb565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e6919061416d565b6111ff565b005b3480156104f957600080fd5b50610514600480360381019061050f9190614342565b61121f565b6040516105219190614cdd565b60405180910390f35b34801561053657600080fd5b50610551600480360381019061054c9190614342565b6112b6565b60405161055e919061495e565b60405180910390f35b610581600480360381019061057c91906142af565b611368565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906140df565b61158a565b6040516105b79190614cdd565b60405180910390f35b3480156105cc57600080fd5b506105d5611642565b005b3480156105e357600080fd5b506105ec6116ca565b6040516105f99190614cdd565b60405180910390f35b34801561060e57600080fd5b506106176116d0565b604051610624919061495e565b60405180910390f35b34801561063957600080fd5b506106426116fa565b60405161064f91906149fb565b60405180910390f35b610672600480360381019061066d91906142af565b61178c565b005b34801561068057600080fd5b50610689611972565b6040516106969190614cdd565b60405180910390f35b6106b960048036038101906106b49190614342565b611978565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190614237565b611a79565b005b6106fe60048036038101906106f99190614342565b611bfa565b005b34801561070c57600080fd5b5061072760048036038101906107229190614342565b611dcd565b60405161073491906149fb565b60405180910390f35b34801561074957600080fd5b50610764600480360381019061075f91906141bc565b611ee7565b005b34801561077257600080fd5b5061077b611f49565b6040516107889190614cdd565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190614342565b611f4f565b6040516107c591906149fb565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f09190614342565b6128f8565b60405161080291906149fb565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190614131565b612a12565b60405161083f91906149c5565b60405180910390f35b34801561085457600080fd5b5061086f600480360381019061086a91906140df565b612aa6565b005b34801561087d57600080fd5b50610886612b9e565b604051610893919061495e565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090f575061090e82612bc4565b5b9050919050565b60606000805461092590614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461095190614fac565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b382612ca6565b6109f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e990614b9d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a38826112b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090614c1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac8612d12565b73ffffffffffffffffffffffffffffffffffffffff161480610af75750610af681610af1612d12565b612a12565b5b610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90614b1d565b60405180910390fd5b610b408383612d1a565b505050565b6060610c58826040518060400160405280600981526020017f46495253544e414d4500000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b82821015610c4f578382906000526020600020018054610bc290614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610bee90614fac565b8015610c3b5780601f10610c1057610100808354040283529160200191610c3b565b820191906000526020600020905b815481529060010190602001808311610c1e57829003601f168201915b505050505081526020019060010190610ba3565b50505050612dd3565b9050919050565b6060610d72826040518060400160405280600881526020017f4c4153544e414d450000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015610d69578382906000526020600020018054610cdc90614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0890614fac565b8015610d555780601f10610d2a57610100808354040283529160200191610d55565b820191906000526020600020905b815481529060010190602001808311610d3857829003601f168201915b505050505081526020019060010190610cbd565b50505050612dd3565b9050919050565b6000600880549050905090565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610ebf826040518060400160405280600981526020017f4f5045524154494f4e00000000000000000000000000000000000000000000008152506014805480602002602001604051908101604052809291908181526020016000905b82821015610eb6578382906000526020600020018054610e2990614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5590614fac565b8015610ea25780601f10610e7757610100808354040283529160200191610ea2565b820191906000526020600020905b815481529060010190602001808311610e8557829003601f168201915b505050505081526020019060010190610e0a565b50505050612dd3565b9050919050565b610ed7610ed1612d12565b82612e68565b610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90614c3d565b60405180910390fd5b610f21838383612f46565b505050565b6000610f318361158a565b8210610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990614a1d565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60606110de826040518060400160405280600481526020017f4954454d000000000000000000000000000000000000000000000000000000008152506017805480602002602001604051908101604052809291908181526020016000905b828210156110d557838290600052602060002001805461104890614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461107490614fac565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081526020019060010190611029565b50505050612dd3565b9050919050565b60606111f8826040518060400160405280600681526020017f524547494f4e00000000000000000000000000000000000000000000000000008152506015805480602002602001604051908101604052809291908181526020016000905b828210156111ef57838290600052602060002001805461116290614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461118e90614fac565b80156111db5780601f106111b0576101008083540402835291602001916111db565b820191906000526020600020905b8154815290600101906020018083116111be57829003601f168201915b505050505081526020019060010190611143565b50505050612dd3565b9050919050565b61121a83838360405180602001604052806000815250611ee7565b505050565b6000611229610d79565b821061126a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126190614c7d565b60405180910390fd5b600882815481106112a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561135f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135690614b5d565b60405180910390fd5b80915050919050565b6002600a5414156113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590614cbd565b60405180910390fd5b6002600a8190555060005b815181101561157e573373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110611450577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518263ffffffff1660e01b81526004016114749190614cdd565b60206040518083038186803b15801561148c57600080fd5b505afa1580156114a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c49190614108565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190614c9d565b60405180910390fd5b61156b611525612d12565b83838151811061155e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516131a2565b80806115769061500f565b9150506113b9565b506001600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290614b3d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164a612d12565b73ffffffffffffffffffffffffffffffffffffffff166116686116d0565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614bbd565b60405180910390fd5b6116c860006131c0565b565b600e5481565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170990614fac565b80601f016020809104026020016040519081016040528092919081815260200182805461173590614fac565b80156117825780601f1061175757610100808354040283529160200191611782565b820191906000526020600020905b81548152906001019060200180831161176557829003601f168201915b5050505050905090565b6002600a5414156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990614cbd565b60405180910390fd5b6002600a81905550348151600c546117ea9190614e44565b111561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614add565b60405180910390fd5b60005b815181101561196657612710828281518110611873577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101511180156118ca5750612af88282815181106118bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015111155b611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090614bdd565b60405180910390fd5b61195333838381518110611946577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516131a2565b808061195e9061500f565b91505061182e565b506001600a8190555050565b600c5481565b6002600a5414156119be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b590614cbd565b60405180910390fd5b6002600a81905550612710811180156119d95750612af88111155b611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90614bdd565b60405180910390fd5b34600c541115611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490614add565b60405180910390fd5b611a6e611a68612d12565b826131a2565b6001600a8190555050565b611a81612d12565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae690614abd565b60405180910390fd5b8060056000611afc612d12565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba9612d12565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bee91906149c5565b60405180910390a35050565b6002600a541415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3790614cbd565b60405180910390fd5b6002600a81905550600081118015611c5a57506127108111155b611c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9090614bdd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611d0b9190614cdd565b60206040518083038186803b158015611d2357600080fd5b505afa158015611d37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5b9190614108565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890614c5d565b60405180910390fd5b611dc2611dbc612d12565b826131a2565b6001600a8190555050565b6060611ee0826040518060400160405280600a81526020017f534b494c4c424f4f5354000000000000000000000000000000000000000000008152506016805480602002602001604051908101604052809291908181526020016000905b82821015611ed7578382906000526020600020018054611e4a90614fac565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7690614fac565b8015611ec35780601f10611e9857610100808354040283529160200191611ec3565b820191906000526020600020905b815481529060010190602001808311611ea657829003601f168201915b505050505081526020019060010190611e2b565b50505050612dd3565b9050919050565b611ef8611ef2612d12565b83612e68565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614c3d565b60405180910390fd5b611f4384848484613286565b50505050565b600d5481565b6060611f59613f3b565b60405180610100016040528060d381526020016159dc60d39139816000600f8110611fad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600781526020017f2333616562333400000000000000000000000000000000000000000000000000815250816001600f8110612025577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806025815260200161597760259139816002600f8110612080577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061209183610b45565b816003600f81106120cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250604051806060016040528060288152602001615aaf60289139816004600f8110612126577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061213783610c5f565b816005600f8110612171577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602881526020016158d560289139816006600f81106121cc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506121dd836128f8565b816007600f8110612217577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161592660289139816008600f8110612272577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250612283836110e5565b816009600f81106122bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161594e6029913981600a600f8110612318577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525061232983611dcd565b81600b600f8110612363577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016158fd6029913981600c600f81106123be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506123cf83610fcb565b81600d600f8110612409577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081600e600f8110612481577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506000816000600f81106124c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151826001600f8110612504577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151836002600f8110612543577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151846003600f8110612582577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856004600f81106125c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151866005600f8110612600577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151876006600f811061263f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886007600f811061267e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896008600f81106126bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016126da99989796959493929190614878565b604051602081830303815290604052905080826009600f8110612726577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015183600a600f8110612765577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600b600f81106127a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600c600f81106127e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600d600f8110612822577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600e600f8110612861577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161287c9796959493929190614813565b604051602081830303815290604052905060006128c961289b866132e2565b6128a48461348f565b6040516020016128b59291906148f7565b60405160208183030381529060405261348f565b9050806040516020016128dc919061493c565b6040516020818303038152906040529150819350505050919050565b6060612a0b826040518060400160405280600481526020017f434c414e000000000000000000000000000000000000000000000000000000008152506013805480602002602001604051908101604052809291908181526020016000905b82821015612a0257838290600052602060002001805461297590614fac565b80601f01602080910402602001604051908101604052809291908181526020018280546129a190614fac565b80156129ee5780601f106129c3576101008083540402835291602001916129ee565b820191906000526020600020905b8154815290600101906020018083116129d157829003601f168201915b505050505081526020019060010190612956565b50505050612dd3565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612aae612d12565b73ffffffffffffffffffffffffffffffffffffffff16612acc6116d0565b73ffffffffffffffffffffffffffffffffffffffff1614612b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1990614bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8990614a5d565b60405180910390fd5b612b9b816131c0565b50565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c8f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c9f5750612c9e8261363a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612d8d836112b6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60606000612e0984612de4876132e2565b604051602001612df59291906147ef565b6040516020818303038152906040526136a4565b9050600083845183612e1b9190615058565b81518110612e52577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080925050509392505050565b6000612e7382612ca6565b612eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea990614afd565b60405180910390fd5b6000612ebd836112b6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612f2c57508373ffffffffffffffffffffffffffffffffffffffff16612f14846109a8565b73ffffffffffffffffffffffffffffffffffffffff16145b80612f3d5750612f3c8185612a12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612f66826112b6565b73ffffffffffffffffffffffffffffffffffffffff1614612fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb390614bfd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561302c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302390614a9d565b60405180910390fd5b6130378383836136d7565b613042600082612d1a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130929190614e9e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130e99190614dbd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6131bc8282604051806020016040528060008152506137eb565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613291848484612f46565b61329d84848484613846565b6132dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132d390614a3d565b60405180910390fd5b50505050565b6060600082141561332a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061348a565b600082905060005b6000821461335c5780806133459061500f565b915050600a826133559190614e13565b9150613332565b60008167ffffffffffffffff81111561339e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133d05781602001600182028036833780820191505090505b5090505b60008514613483576001826133e99190614e9e565b9150600a856133f89190615058565b60306134049190614dbd565b60f81b818381518110613440577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561347c9190614e13565b94506133d4565b8093505050505b919050565b60606000825114156134b257604051806020016040528060008152509050613635565b600060405180606001604052806040815260200161599c60409139905060006003600285516134e19190614dbd565b6134eb9190614e13565b60046134f79190614e44565b905060006020826135089190614dbd565b67ffffffffffffffff811115613547577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135795781602001600182028036833780820191505090505b509050818152600183018586518101602084015b818310156135f4576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b82526001820191505061358d565b60038951066001811461360e576002811461361e57613629565b613d3d60f01b6002830352613629565b603d60f81b60018303525b50505050508093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816040516020016136b791906147d8565b6040516020818303038152906040528051906020012060001c9050919050565b6136e28383836139dd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561372557613720816139e2565b613764565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613763576137628382613a2b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137a7576137a281613b98565b6137e6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146137e5576137e48282613cdb565b5b5b505050565b6137f58383613d5a565b6138026000848484613846565b613841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383890614a3d565b60405180910390fd5b505050565b60006138678473ffffffffffffffffffffffffffffffffffffffff16613f28565b156139d0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613890612d12565b8786866040518563ffffffff1660e01b81526004016138b29493929190614979565b602060405180830381600087803b1580156138cc57600080fd5b505af19250505080156138fd57506040513d601f19601f820116820180604052508101906138fa9190614319565b60015b613980573d806000811461392d576040519150601f19603f3d011682016040523d82523d6000602084013e613932565b606091505b50600081511415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90614a3d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139d5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613a388461158a565b613a429190614e9e565b9050600060076000848152602001908152602001600020549050818114613b27576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613bac9190614e9e565b9050600060096000848152602001908152602001600020549050600060088381548110613c02577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613c4a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613cbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ce68361158a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc190614b7d565b60405180910390fd5b613dd381612ca6565b15613e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e0a90614a7d565b60405180910390fd5b613e1f600083836136d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613e6f9190614dbd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101e00160405280600f905b6060815260200190600190039081613f4b5790505090565b6000613f76613f7184614d1d565b614cf8565b90508083825260208201905082856020860282011115613f9557600080fd5b60005b85811015613fc55781613fab88826140ca565b845260208401935060208301925050600181019050613f98565b5050509392505050565b6000613fe2613fdd84614d49565b614cf8565b905082815260208101848484011115613ffa57600080fd5b614005848285614f6a565b509392505050565b60008135905061401c81615878565b92915050565b60008151905061403181615878565b92915050565b600082601f83011261404857600080fd5b8135614058848260208601613f63565b91505092915050565b6000813590506140708161588f565b92915050565b600081359050614085816158a6565b92915050565b60008151905061409a816158a6565b92915050565b600082601f8301126140b157600080fd5b81356140c1848260208601613fcf565b91505092915050565b6000813590506140d9816158bd565b92915050565b6000602082840312156140f157600080fd5b60006140ff8482850161400d565b91505092915050565b60006020828403121561411a57600080fd5b600061412884828501614022565b91505092915050565b6000806040838503121561414457600080fd5b60006141528582860161400d565b92505060206141638582860161400d565b9150509250929050565b60008060006060848603121561418257600080fd5b60006141908682870161400d565b93505060206141a18682870161400d565b92505060406141b2868287016140ca565b9150509250925092565b600080600080608085870312156141d257600080fd5b60006141e08782880161400d565b94505060206141f18782880161400d565b9350506040614202878288016140ca565b925050606085013567ffffffffffffffff81111561421f57600080fd5b61422b878288016140a0565b91505092959194509250565b6000806040838503121561424a57600080fd5b60006142588582860161400d565b925050602061426985828601614061565b9150509250929050565b6000806040838503121561428657600080fd5b60006142948582860161400d565b92505060206142a5858286016140ca565b9150509250929050565b6000602082840312156142c157600080fd5b600082013567ffffffffffffffff8111156142db57600080fd5b6142e784828501614037565b91505092915050565b60006020828403121561430257600080fd5b600061431084828501614076565b91505092915050565b60006020828403121561432b57600080fd5b60006143398482850161408b565b91505092915050565b60006020828403121561435457600080fd5b6000614362848285016140ca565b91505092915050565b61437481614ed2565b82525050565b61438381614ee4565b82525050565b600061439482614d7a565b61439e8185614d90565b93506143ae818560208601614f79565b6143b781615145565b840191505092915050565b6143cb81614f46565b82525050565b60006143dc82614d85565b6143e68185614da1565b93506143f6818560208601614f79565b6143ff81615145565b840191505092915050565b600061441582614d85565b61441f8185614db2565b935061442f818560208601614f79565b80840191505092915050565b6000614448602b83614da1565b915061445382615156565b604082019050919050565b600061446b603283614da1565b9150614476826151a5565b604082019050919050565b600061448e602683614da1565b9150614499826151f4565b604082019050919050565b60006144b1601c83614da1565b91506144bc82615243565b602082019050919050565b60006144d4602483614da1565b91506144df8261526c565b604082019050919050565b60006144f7601983614da1565b9150614502826152bb565b602082019050919050565b600061451a601f83614da1565b9150614525826152e4565b602082019050919050565b600061453d600b83614db2565b91506145488261530d565b600b82019050919050565b6000614560602c83614da1565b915061456b82615336565b604082019050919050565b6000614583603883614da1565b915061458e82615385565b604082019050919050565b60006145a6602a83614da1565b91506145b1826153d4565b604082019050919050565b60006145c9602983614da1565b91506145d482615423565b604082019050919050565b60006145ec600283614db2565b91506145f782615472565b600282019050919050565b600061460f602083614da1565b915061461a8261549b565b602082019050919050565b6000614632602c83614da1565b915061463d826154c4565b604082019050919050565b6000614655602083614da1565b915061466082615513565b602082019050919050565b6000614678601083614da1565b91506146838261553c565b602082019050919050565b600061469b602983614da1565b91506146a682615565565b604082019050919050565b60006146be60fc83614db2565b91506146c9826155b4565b60fc82019050919050565b60006146e1602183614da1565b91506146ec826156e7565b604082019050919050565b6000614704601d83614db2565b915061470f82615736565b601d82019050919050565b6000614727603183614da1565b91506147328261575f565b604082019050919050565b600061474a601983614da1565b9150614755826157ae565b602082019050919050565b600061476d602c83614da1565b9150614778826157d7565b604082019050919050565b6000614790601583614da1565b915061479b82615826565b602082019050919050565b60006147b3601f83614da1565b91506147be8261584f565b602082019050919050565b6147d281614f3c565b82525050565b60006147e4828461440a565b915081905092915050565b60006147fb828561440a565b9150614807828461440a565b91508190509392505050565b600061481f828a61440a565b915061482b828961440a565b9150614837828861440a565b9150614843828761440a565b915061484f828661440a565b915061485b828561440a565b9150614867828461440a565b915081905098975050505050505050565b6000614884828c61440a565b9150614890828b61440a565b915061489c828a61440a565b91506148a8828961440a565b91506148b4828861440a565b91506148c0828761440a565b91506148cc828661440a565b91506148d8828561440a565b91506148e4828461440a565b91508190509a9950505050505050505050565b600061490282614530565b915061490e828561440a565b9150614919826146b1565b9150614925828461440a565b9150614930826145df565b91508190509392505050565b6000614947826146f7565b9150614953828461440a565b915081905092915050565b6000602082019050614973600083018461436b565b92915050565b600060808201905061498e600083018761436b565b61499b602083018661436b565b6149a860408301856147c9565b81810360608301526149ba8184614389565b905095945050505050565b60006020820190506149da600083018461437a565b92915050565b60006020820190506149f560008301846143c2565b92915050565b60006020820190508181036000830152614a1581846143d1565b905092915050565b60006020820190508181036000830152614a368161443b565b9050919050565b60006020820190508181036000830152614a568161445e565b9050919050565b60006020820190508181036000830152614a7681614481565b9050919050565b60006020820190508181036000830152614a96816144a4565b9050919050565b60006020820190508181036000830152614ab6816144c7565b9050919050565b60006020820190508181036000830152614ad6816144ea565b9050919050565b60006020820190508181036000830152614af68161450d565b9050919050565b60006020820190508181036000830152614b1681614553565b9050919050565b60006020820190508181036000830152614b3681614576565b9050919050565b60006020820190508181036000830152614b5681614599565b9050919050565b60006020820190508181036000830152614b76816145bc565b9050919050565b60006020820190508181036000830152614b9681614602565b9050919050565b60006020820190508181036000830152614bb681614625565b9050919050565b60006020820190508181036000830152614bd681614648565b9050919050565b60006020820190508181036000830152614bf68161466b565b9050919050565b60006020820190508181036000830152614c168161468e565b9050919050565b60006020820190508181036000830152614c36816146d4565b9050919050565b60006020820190508181036000830152614c568161471a565b9050919050565b60006020820190508181036000830152614c768161473d565b9050919050565b60006020820190508181036000830152614c9681614760565b9050919050565b60006020820190508181036000830152614cb681614783565b9050919050565b60006020820190508181036000830152614cd6816147a6565b9050919050565b6000602082019050614cf260008301846147c9565b92915050565b6000614d02614d13565b9050614d0e8282614fde565b919050565b6000604051905090565b600067ffffffffffffffff821115614d3857614d37615116565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d6457614d63615116565b5b614d6d82615145565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dc882614f3c565b9150614dd383614f3c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e0857614e07615089565b5b828201905092915050565b6000614e1e82614f3c565b9150614e2983614f3c565b925082614e3957614e386150b8565b5b828204905092915050565b6000614e4f82614f3c565b9150614e5a83614f3c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e9357614e92615089565b5b828202905092915050565b6000614ea982614f3c565b9150614eb483614f3c565b925082821015614ec757614ec6615089565b5b828203905092915050565b6000614edd82614f1c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614f5182614f58565b9050919050565b6000614f6382614f1c565b9050919050565b82818337600083830152505050565b60005b83811015614f97578082015181840152602081019050614f7c565b83811115614fa6576000848401525b50505050565b60006002820490506001821680614fc457607f821691505b60208210811415614fd857614fd76150e7565b5b50919050565b614fe782615145565b810181811067ffffffffffffffff8211171561500657615005615116565b5b80604052505050565b600061501a82614f3c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561504d5761504c615089565b5b600182019050919050565b600061506382614f3c565b915061506e83614f3c565b92508261507e5761507d6150b8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f7b226e616d65223a202223000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a20224964656e74697479206973206160008201527f20706572736f6e61206c61796572206f6e20746f70206f6620426c6f6f74302e60208201527f204e616d65732c2070726f706572746965732c20696d616765732c20616e642060408201527f6f746865722066756e6374696f6e616c6974792061726520696e74656e74696f60608201527f6e616c6c79206f6d697474656420666f72206f746865727320746f20696e746560808201527f72707265742e204665656c206672656520746f20757365204964656e7469747960a08201527f20696e20616e792077617920796f752077616e742e222c2022696d616765223a60c08201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c0000000060e082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420746865206f776e6572206f6620426c6f6f7420696400000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e6572206f6620426c6f6f742069640000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61588181614ed2565b811461588c57600080fd5b50565b61589881614ee4565b81146158a357600080fd5b50565b6158af81614ef0565b81146158ba57600080fd5b50565b6158c681614f3c565b81146158d157600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a20626c61636b3b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d223c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220c09af66517fefd252d28bfd190823a37b670779abdcc39b080636fa8db810a0164736f6c63430008020033
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.