ERC-721
NFT
Overview
Max Total Supply
10,000 SHAQS
Holders
5,188
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SHAQSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShaqGivesBack
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// // ███████╗██╗ ██╗ █████╗ ██████╗ ██████╗ ██╗██╗ ██╗███████╗███████╗ // ██╔════╝██║ ██║██╔══██╗██╔═══██╗ ██╔════╝ ██║██║ ██║██╔════╝██╔════╝ // ███████╗███████║███████║██║ ██║ ██║ ███╗██║██║ ██║█████╗ ███████╗ // ╚════██║██╔══██║██╔══██║██║▄▄ ██║ ██║ ██║██║╚██╗ ██╔╝██╔══╝ ╚════██║ // ███████║██║ ██║██║ ██║╚██████╔╝ ╚██████╔╝██║ ╚████╔╝ ███████╗███████║ // ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚══▀▀═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚══════╝╚══════╝ // // ██████╗ █████╗ ██████╗██╗ ██╗ // ██╔══██╗██╔══██╗██╔════╝██║ ██╔╝ // ██████╔╝███████║██║ █████╔╝ // ██╔══██╗██╔══██║██║ ██╔═██╗ // ██████╔╝██║ ██║╚██████╗██║ ██╗ // ╚═════╝ ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ // In partnership with Notables // // Supported by @shufflemint // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract ShaqGivesBack is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; string public baseURI; string public baseExtension = ".json"; uint256 public cost = 0.05 ether; uint256 constant public maxSupply = 10000; uint256 constant public maxMintAmount = 5; uint256 constant public wlAllowance = 3; bool public publicActive = false; bool public presaleActive = false; uint256 constant public teamClaimAmount = 30; bool public teamClaimed = false; // Set merkleRoot for whitelist bytes32 public whitelistMerkleRoot; // mapping to track whitelist that already claimed mapping(address => uint) public addressClaimed; // Payment Addresses address constant notables = 0xC135026969aa9765055eAe9DA120491a1df649b8; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) { setBaseURI(_initBaseURI); _tokenIds.increment(); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // presale function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable { require(presaleActive, "Sale has not started yet."); require(_mintAmount > 0, "Quantity cannot be zero"); require(addressClaimed[_msgSender()] + _mintAmount <= wlAllowance, "Exceeds whitelist supply"); require(totalSupply() + _mintAmount <= maxSupply, "Quantity requested exceeds max supply"); require(msg.value >= cost * _mintAmount, "Ether value sent is below the price"); // Verify merkle proof bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid proof"); // Mark address as having claimed addressClaimed[_msgSender()] += _mintAmount; for (uint256 i = 1; i <= _mintAmount; i++) { uint256 mintIndex = _tokenIds.current(); _mint(msg.sender, mintIndex); // increment id counter _tokenIds.increment(); } } function publicMint(uint256 _mintAmount) public payable { require(publicActive, "Sale has not started yet."); require(_mintAmount > 0, "Quantity cannot be zero"); require(_mintAmount <= maxMintAmount, "Exceeds 5, the max qty per mint"); require(totalSupply() + _mintAmount <= maxSupply, "Quantity requested exceeds max supply."); require(msg.value >= cost * _mintAmount, "Ether value sent is below the price"); for (uint256 i = 1; i <= _mintAmount; i++) { uint256 mintIndex = _tokenIds.current(); _mint(msg.sender, mintIndex); // increment id counter _tokenIds.increment(); } } function teamClaim() public onlyOwner { require(totalSupply() + teamClaimAmount <= maxSupply, "Quantity requested exceeds max supply."); require(!teamClaimed, "Team has claimed"); for (uint256 i = 1; i <= teamClaimAmount; i++) { uint256 mintIndex = _tokenIds.current(); _mint(msg.sender, mintIndex); _tokenIds.increment(); } teamClaimed = true; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function enablePresale(bool _state) public onlyOwner { presaleActive = _state; } function enablePublic(bool _state) public onlyOwner { publicActive = _state; } function totalSupply() public view returns (uint256) { return _tokenIds.current() - 1; } function withdraw() public payable onlyOwner { (bool os, ) = payable(notables).call{value: address(this).balance}(""); require(os); } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { whitelistMerkleRoot = _whitelistMerkleRoot; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"enablePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"enablePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamClaimAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlAllowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200005192919062000321565b5066b1a2bc2ec50000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff021916908315150217905550348015620000bb57600080fd5b5060405162004e4038038062004e408339818101604052810190620000e191906200044f565b82828160009080519060200190620000fb92919062000321565b5080600190805190602001906200011492919062000321565b505050620001376200012b6200016860201b60201c565b6200017060201b60201c565b62000148816200023660201b60201c565b6200015f6007620002e160201b62001e461760201c565b5050506200070f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002466200016860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200026c620002f760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002bc906200052f565b60405180910390fd5b8060089080519060200190620002dd92919062000321565b5050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032f90620005f7565b90600052602060002090601f0160209004810192826200035357600085556200039f565b82601f106200036e57805160ff19168380011785556200039f565b828001600101855582156200039f579182015b828111156200039e57825182559160200191906001019062000381565b5b509050620003ae9190620003b2565b5090565b5b80821115620003cd576000816000905550600101620003b3565b5090565b6000620003e8620003e2846200057a565b62000551565b905082815260208101848484011115620004075762000406620006c6565b5b62000414848285620005c1565b509392505050565b600082601f830112620004345762000433620006c1565b5b815162000446848260208601620003d1565b91505092915050565b6000806000606084860312156200046b576200046a620006d0565b5b600084015167ffffffffffffffff8111156200048c576200048b620006cb565b5b6200049a868287016200041c565b935050602084015167ffffffffffffffff811115620004be57620004bd620006cb565b5b620004cc868287016200041c565b925050604084015167ffffffffffffffff811115620004f057620004ef620006cb565b5b620004fe868287016200041c565b9150509250925092565b600062000517602083620005b0565b91506200052482620006e6565b602082019050919050565b600060208201905081810360008301526200054a8162000508565b9050919050565b60006200055d62000570565b90506200056b82826200062d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000598576200059762000692565b5b620005a382620006d5565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005e1578082015181840152602081019050620005c4565b83811115620005f1576000848401525b50505050565b600060028204905060018216806200061057607f821691505b6020821081141562000627576200062662000663565b5b50919050565b6200063882620006d5565b810181811067ffffffffffffffff821117156200065a576200065962000692565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614721806200071f6000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063c7fc0cd1116100ab578063d5aff63f1161006f578063d5aff63f146107de578063da3ef23f14610807578063e8a467be14610830578063e985e9c51461085b578063f2fde38b1461089857610230565b8063c7fc0cd114610706578063c87b56dd14610731578063d1454bf41461076e578063d2cab05614610797578063d5abeb01146107b357610230565b8063a22cb465116100f2578063a22cb46514610635578063aa98e0c61461065e578063b88d4fde14610689578063bd32fb66146106b2578063c6682862146106db57610230565b806370a082311461054e578063715018a61461058b578063772dc32f146105a25780638da5cb5b146105df57806395d89b411461060a57610230565b80632f334652116101bc57806353135ca01161018057806353135ca01461047b57806355f804b3146104a65780636352211e146104cf5780636ae146c21461050c5780636c0360eb1461052357610230565b80632f334652146103c95780633ccfd60b146103f45780633f2981cf146103fe57806342842e0e1461042957806344a0d68a1461045257610230565b806313faede61161020357806313faede61461030357806318160ddd1461032e578063239c70ae1461035957806323b872dd146103845780632db11544146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613078565b6108c1565b60405161026991906137b6565b60405180910390f35b34801561027e57600080fd5b506102876109a3565b60405161029491906137ec565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061311b565b610a35565b6040516102d1919061374f565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612fde565b610aba565b005b34801561030f57600080fd5b50610318610bd2565b6040516103259190613b2e565b60405180910390f35b34801561033a57600080fd5b50610343610bd8565b6040516103509190613b2e565b60405180910390f35b34801561036557600080fd5b5061036e610bf5565b60405161037b9190613b2e565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190612ec8565b610bfa565b005b6103c760048036038101906103c2919061311b565b610c5a565b005b3480156103d557600080fd5b506103de610e1f565b6040516103eb91906137b6565b60405180910390f35b6103fc610e32565b005b34801561040a57600080fd5b50610413610f3b565b60405161042091906137b6565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612ec8565b610f4e565b005b34801561045e57600080fd5b506104796004803603810190610474919061311b565b610f6e565b005b34801561048757600080fd5b50610490610ff4565b60405161049d91906137b6565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906130d2565b611007565b005b3480156104db57600080fd5b506104f660048036038101906104f1919061311b565b61109d565b604051610503919061374f565b60405180910390f35b34801561051857600080fd5b5061052161114f565b005b34801561052f57600080fd5b506105386112d6565b60405161054591906137ec565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612e5b565b611364565b6040516105829190613b2e565b60405180910390f35b34801561059757600080fd5b506105a061141c565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612e5b565b6114a4565b6040516105d69190613b2e565b60405180910390f35b3480156105eb57600080fd5b506105f46114bc565b604051610601919061374f565b60405180910390f35b34801561061657600080fd5b5061061f6114e6565b60405161062c91906137ec565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612f9e565b611578565b005b34801561066a57600080fd5b5061067361158e565b60405161068091906137d1565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612f1b565b611594565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061304b565b6115f6565b005b3480156106e757600080fd5b506106f061167c565b6040516106fd91906137ec565b60405180910390f35b34801561071257600080fd5b5061071b61170a565b6040516107289190613b2e565b60405180910390f35b34801561073d57600080fd5b506107586004803603810190610753919061311b565b61170f565b60405161076591906137ec565b60405180910390f35b34801561077a57600080fd5b506107956004803603810190610790919061301e565b6117b9565b005b6107b160048036038101906107ac9190613148565b611852565b005b3480156107bf57600080fd5b506107c8611b80565b6040516107d59190613b2e565b60405180910390f35b3480156107ea57600080fd5b506108056004803603810190610800919061301e565b611b86565b005b34801561081357600080fd5b5061082e600480360381019061082991906130d2565b611c1f565b005b34801561083c57600080fd5b50610845611cb5565b6040516108529190613b2e565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190612e88565b611cba565b60405161088f91906137b6565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190612e5b565b611d4e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c575061099b82611e5c565b5b9050919050565b6060600080546109b290613e08565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613e08565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a4082611ec6565b610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a76906139ce565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac58261109d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613aae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b55611f32565b73ffffffffffffffffffffffffffffffffffffffff161480610b845750610b8381610b7e611f32565b611cba565b5b610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba9061392e565b60405180910390fd5b610bcd8383611f3a565b505050565b600a5481565b60006001610be66007611ff3565b610bf09190613d14565b905090565b600581565b610c0b610c05611f32565b82612001565b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613ace565b60405180910390fd5b610c558383836120df565b505050565b600b60009054906101000a900460ff16610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613a8e565b60405180910390fd5b60008111610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061390e565b60405180910390fd5b6005811115610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613a0e565b60405180910390fd5b61271081610d3c610bd8565b610d469190613c33565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906138ce565b60405180910390fd5b80600a54610d959190613cba565b341015610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061398e565b60405180910390fd5b6000600190505b818111610e1b576000610df16007611ff3565b9050610dfd338261233b565b610e076007611e46565b508080610e1390613e6b565b915050610dde565b5050565b600b60029054906101000a900460ff1681565b610e3a611f32565b73ffffffffffffffffffffffffffffffffffffffff16610e586114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906139ee565b60405180910390fd5b600073c135026969aa9765055eae9da120491a1df649b873ffffffffffffffffffffffffffffffffffffffff1647604051610ee89061373a565b60006040518083038185875af1925050503d8060008114610f25576040519150601f19603f3d011682016040523d82523d6000602084013e610f2a565b606091505b5050905080610f3857600080fd5b50565b600b60009054906101000a900460ff1681565b610f6983838360405180602001604052806000815250611594565b505050565b610f76611f32565b73ffffffffffffffffffffffffffffffffffffffff16610f946114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe1906139ee565b60405180910390fd5b80600a8190555050565b600b60019054906101000a900460ff1681565b61100f611f32565b73ffffffffffffffffffffffffffffffffffffffff1661102d6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906139ee565b60405180910390fd5b8060089080519060200190611099929190612c04565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d9061396e565b60405180910390fd5b80915050919050565b611157611f32565b73ffffffffffffffffffffffffffffffffffffffff166111756114bc565b73ffffffffffffffffffffffffffffffffffffffff16146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c2906139ee565b60405180910390fd5b612710601e6111d8610bd8565b6111e29190613c33565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906138ce565b60405180910390fd5b600b60029054906101000a900460ff1615611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613aee565b60405180910390fd5b6000600190505b601e81116112b857600061128e6007611ff3565b905061129a338261233b565b6112a46007611e46565b5080806112b090613e6b565b91505061127a565b506001600b60026101000a81548160ff021916908315150217905550565b600880546112e390613e08565b80601f016020809104026020016040519081016040528092919081815260200182805461130f90613e08565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061394e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611424611f32565b73ffffffffffffffffffffffffffffffffffffffff166114426114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906139ee565b60405180910390fd5b6114a26000612509565b565b600d6020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114f590613e08565b80601f016020809104026020016040519081016040528092919081815260200182805461152190613e08565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b5050505050905090565b61158a611583611f32565b83836125cf565b5050565b600c5481565b6115a561159f611f32565b83612001565b6115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613ace565b60405180910390fd5b6115f08484848461273c565b50505050565b6115fe611f32565b73ffffffffffffffffffffffffffffffffffffffff1661161c6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906139ee565b60405180910390fd5b80600c8190555050565b6009805461168990613e08565b80601f01602080910402602001604051908101604052809291908181526020018280546116b590613e08565b80156117025780601f106116d757610100808354040283529160200191611702565b820191906000526020600020905b8154815290600101906020018083116116e557829003601f168201915b505050505081565b601e81565b606061171a82611ec6565b611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613a4e565b60405180910390fd5b6000611763612798565b9050600081511161178357604051806020016040528060008152506117b1565b8061178d8461282a565b60096040516020016117a193929190613709565b6040516020818303038152906040525b915050919050565b6117c1611f32565b73ffffffffffffffffffffffffffffffffffffffff166117df6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906139ee565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff166118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613a8e565b60405180910390fd5b600083116118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db9061390e565b60405180910390fd5b600383600d60006118f3611f32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119389190613c33565b1115611979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119709061386e565b60405180910390fd5b61271083611985610bd8565b61198f9190613c33565b11156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613a6e565b60405180910390fd5b82600a546119de9190613cba565b341015611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a179061398e565b60405180910390fd5b600033604051602001611a3391906136c2565b604051602081830303815290604052805190602001209050611a99838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c548361298b565b611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613b0e565b60405180910390fd5b83600d6000611ae5611f32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2e9190613c33565b925050819055506000600190505b848111611b79576000611b4f6007611ff3565b9050611b5b338261233b565b611b656007611e46565b508080611b7190613e6b565b915050611b3c565b5050505050565b61271081565b611b8e611f32565b73ffffffffffffffffffffffffffffffffffffffff16611bac6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf9906139ee565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b611c27611f32565b73ffffffffffffffffffffffffffffffffffffffff16611c456114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906139ee565b60405180910390fd5b8060099080519060200190611cb1929190612c04565b5050565b600381565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d56611f32565b73ffffffffffffffffffffffffffffffffffffffff16611d746114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc1906139ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e319061382e565b60405180910390fd5b611e4381612509565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fad8361109d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061200c82611ec6565b61204b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612042906138ee565b60405180910390fd5b60006120568361109d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120c557508373ffffffffffffffffffffffffffffffffffffffff166120ad84610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b806120d657506120d58185611cba565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120ff8261109d565b73ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613a2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc9061388e565b60405180910390fd5b6121d08383836129a2565b6121db600082611f3a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222b9190613d14565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122829190613c33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906139ae565b60405180910390fd5b6123b481611ec6565b156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb9061384e565b60405180910390fd5b612400600083836129a2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124509190613c33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612635906138ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161272f91906137b6565b60405180910390a3505050565b6127478484846120df565b612753848484846129a7565b612792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127899061380e565b60405180910390fd5b50505050565b6060600880546127a790613e08565b80601f01602080910402602001604051908101604052809291908181526020018280546127d390613e08565b80156128205780601f106127f557610100808354040283529160200191612820565b820191906000526020600020905b81548152906001019060200180831161280357829003601f168201915b5050505050905090565b60606000821415612872576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612986565b600082905060005b600082146128a457808061288d90613e6b565b915050600a8261289d9190613c89565b915061287a565b60008167ffffffffffffffff8111156128c0576128bf613fcf565b5b6040519080825280601f01601f1916602001820160405280156128f25781602001600182028036833780820191505090505b5090505b6000851461297f5760018261290b9190613d14565b9150600a8561291a9190613ee2565b60306129269190613c33565b60f81b81838151811061293c5761293b613fa0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129789190613c89565b94506128f6565b8093505050505b919050565b6000826129988584612b3e565b1490509392505050565b505050565b60006129c88473ffffffffffffffffffffffffffffffffffffffff16612bf1565b15612b31578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f1611f32565b8786866040518563ffffffff1660e01b8152600401612a13949392919061376a565b602060405180830381600087803b158015612a2d57600080fd5b505af1925050508015612a5e57506040513d601f19601f82011682018060405250810190612a5b91906130a5565b60015b612ae1573d8060008114612a8e576040519150601f19603f3d011682016040523d82523d6000602084013e612a93565b606091505b50600081511415612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad09061380e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b36565b600190505b949350505050565b60008082905060005b8451811015612be6576000858281518110612b6557612b64613fa0565b5b60200260200101519050808311612ba6578281604051602001612b899291906136dd565b604051602081830303815290604052805190602001209250612bd2565b8083604051602001612bb99291906136dd565b6040516020818303038152906040528051906020012092505b508080612bde90613e6b565b915050612b47565b508091505092915050565b600080823b905060008111915050919050565b828054612c1090613e08565b90600052602060002090601f016020900481019282612c325760008555612c79565b82601f10612c4b57805160ff1916838001178555612c79565b82800160010185558215612c79579182015b82811115612c78578251825591602001919060010190612c5d565b5b509050612c869190612c8a565b5090565b5b80821115612ca3576000816000905550600101612c8b565b5090565b6000612cba612cb584613b6e565b613b49565b905082815260208101848484011115612cd657612cd561400d565b5b612ce1848285613dc6565b509392505050565b6000612cfc612cf784613b9f565b613b49565b905082815260208101848484011115612d1857612d1761400d565b5b612d23848285613dc6565b509392505050565b600081359050612d3a81614678565b92915050565b60008083601f840112612d5657612d55614003565b5b8235905067ffffffffffffffff811115612d7357612d72613ffe565b5b602083019150836020820283011115612d8f57612d8e614008565b5b9250929050565b600081359050612da58161468f565b92915050565b600081359050612dba816146a6565b92915050565b600081359050612dcf816146bd565b92915050565b600081519050612de4816146bd565b92915050565b600082601f830112612dff57612dfe614003565b5b8135612e0f848260208601612ca7565b91505092915050565b600082601f830112612e2d57612e2c614003565b5b8135612e3d848260208601612ce9565b91505092915050565b600081359050612e55816146d4565b92915050565b600060208284031215612e7157612e70614017565b5b6000612e7f84828501612d2b565b91505092915050565b60008060408385031215612e9f57612e9e614017565b5b6000612ead85828601612d2b565b9250506020612ebe85828601612d2b565b9150509250929050565b600080600060608486031215612ee157612ee0614017565b5b6000612eef86828701612d2b565b9350506020612f0086828701612d2b565b9250506040612f1186828701612e46565b9150509250925092565b60008060008060808587031215612f3557612f34614017565b5b6000612f4387828801612d2b565b9450506020612f5487828801612d2b565b9350506040612f6587828801612e46565b925050606085013567ffffffffffffffff811115612f8657612f85614012565b5b612f9287828801612dea565b91505092959194509250565b60008060408385031215612fb557612fb4614017565b5b6000612fc385828601612d2b565b9250506020612fd485828601612d96565b9150509250929050565b60008060408385031215612ff557612ff4614017565b5b600061300385828601612d2b565b925050602061301485828601612e46565b9150509250929050565b60006020828403121561303457613033614017565b5b600061304284828501612d96565b91505092915050565b60006020828403121561306157613060614017565b5b600061306f84828501612dab565b91505092915050565b60006020828403121561308e5761308d614017565b5b600061309c84828501612dc0565b91505092915050565b6000602082840312156130bb576130ba614017565b5b60006130c984828501612dd5565b91505092915050565b6000602082840312156130e8576130e7614017565b5b600082013567ffffffffffffffff81111561310657613105614012565b5b61311284828501612e18565b91505092915050565b60006020828403121561313157613130614017565b5b600061313f84828501612e46565b91505092915050565b60008060006040848603121561316157613160614017565b5b600061316f86828701612e46565b935050602084013567ffffffffffffffff8111156131905761318f614012565b5b61319c86828701612d40565b92509250509250925092565b6131b181613d48565b82525050565b6131c86131c382613d48565b613eb4565b82525050565b6131d781613d5a565b82525050565b6131e681613d66565b82525050565b6131fd6131f882613d66565b613ec6565b82525050565b600061320e82613be5565b6132188185613bfb565b9350613228818560208601613dd5565b6132318161401c565b840191505092915050565b600061324782613bf0565b6132518185613c17565b9350613261818560208601613dd5565b61326a8161401c565b840191505092915050565b600061328082613bf0565b61328a8185613c28565b935061329a818560208601613dd5565b80840191505092915050565b600081546132b381613e08565b6132bd8186613c28565b945060018216600081146132d857600181146132e95761331c565b60ff1983168652818601935061331c565b6132f285613bd0565b60005b83811015613314578154818901526001820191506020810190506132f5565b838801955050505b50505092915050565b6000613332603283613c17565b915061333d8261403a565b604082019050919050565b6000613355602683613c17565b915061336082614089565b604082019050919050565b6000613378601c83613c17565b9150613383826140d8565b602082019050919050565b600061339b601883613c17565b91506133a682614101565b602082019050919050565b60006133be602483613c17565b91506133c98261412a565b604082019050919050565b60006133e1601983613c17565b91506133ec82614179565b602082019050919050565b6000613404602683613c17565b915061340f826141a2565b604082019050919050565b6000613427602c83613c17565b9150613432826141f1565b604082019050919050565b600061344a601783613c17565b915061345582614240565b602082019050919050565b600061346d603883613c17565b915061347882614269565b604082019050919050565b6000613490602a83613c17565b915061349b826142b8565b604082019050919050565b60006134b3602983613c17565b91506134be82614307565b604082019050919050565b60006134d6602383613c17565b91506134e182614356565b604082019050919050565b60006134f9602083613c17565b9150613504826143a5565b602082019050919050565b600061351c602c83613c17565b9150613527826143ce565b604082019050919050565b600061353f602083613c17565b915061354a8261441d565b602082019050919050565b6000613562601f83613c17565b915061356d82614446565b602082019050919050565b6000613585602983613c17565b91506135908261446f565b604082019050919050565b60006135a8602f83613c17565b91506135b3826144be565b604082019050919050565b60006135cb602583613c17565b91506135d68261450d565b604082019050919050565b60006135ee601983613c17565b91506135f98261455c565b602082019050919050565b6000613611602183613c17565b915061361c82614585565b604082019050919050565b6000613634600083613c0c565b915061363f826145d4565b600082019050919050565b6000613657603183613c17565b9150613662826145d7565b604082019050919050565b600061367a601083613c17565b915061368582614626565b602082019050919050565b600061369d600d83613c17565b91506136a88261464f565b602082019050919050565b6136bc81613dbc565b82525050565b60006136ce82846131b7565b60148201915081905092915050565b60006136e982856131ec565b6020820191506136f982846131ec565b6020820191508190509392505050565b60006137158286613275565b91506137218285613275565b915061372d82846132a6565b9150819050949350505050565b600061374582613627565b9150819050919050565b600060208201905061376460008301846131a8565b92915050565b600060808201905061377f60008301876131a8565b61378c60208301866131a8565b61379960408301856136b3565b81810360608301526137ab8184613203565b905095945050505050565b60006020820190506137cb60008301846131ce565b92915050565b60006020820190506137e660008301846131dd565b92915050565b60006020820190508181036000830152613806818461323c565b905092915050565b6000602082019050818103600083015261382781613325565b9050919050565b6000602082019050818103600083015261384781613348565b9050919050565b600060208201905081810360008301526138678161336b565b9050919050565b600060208201905081810360008301526138878161338e565b9050919050565b600060208201905081810360008301526138a7816133b1565b9050919050565b600060208201905081810360008301526138c7816133d4565b9050919050565b600060208201905081810360008301526138e7816133f7565b9050919050565b600060208201905081810360008301526139078161341a565b9050919050565b600060208201905081810360008301526139278161343d565b9050919050565b6000602082019050818103600083015261394781613460565b9050919050565b6000602082019050818103600083015261396781613483565b9050919050565b60006020820190508181036000830152613987816134a6565b9050919050565b600060208201905081810360008301526139a7816134c9565b9050919050565b600060208201905081810360008301526139c7816134ec565b9050919050565b600060208201905081810360008301526139e78161350f565b9050919050565b60006020820190508181036000830152613a0781613532565b9050919050565b60006020820190508181036000830152613a2781613555565b9050919050565b60006020820190508181036000830152613a4781613578565b9050919050565b60006020820190508181036000830152613a678161359b565b9050919050565b60006020820190508181036000830152613a87816135be565b9050919050565b60006020820190508181036000830152613aa7816135e1565b9050919050565b60006020820190508181036000830152613ac781613604565b9050919050565b60006020820190508181036000830152613ae78161364a565b9050919050565b60006020820190508181036000830152613b078161366d565b9050919050565b60006020820190508181036000830152613b2781613690565b9050919050565b6000602082019050613b4360008301846136b3565b92915050565b6000613b53613b64565b9050613b5f8282613e3a565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8957613b88613fcf565b5b613b928261401c565b9050602081019050919050565b600067ffffffffffffffff821115613bba57613bb9613fcf565b5b613bc38261401c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3e82613dbc565b9150613c4983613dbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7e57613c7d613f13565b5b828201905092915050565b6000613c9482613dbc565b9150613c9f83613dbc565b925082613caf57613cae613f42565b5b828204905092915050565b6000613cc582613dbc565b9150613cd083613dbc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0957613d08613f13565b5b828202905092915050565b6000613d1f82613dbc565b9150613d2a83613dbc565b925082821015613d3d57613d3c613f13565b5b828203905092915050565b6000613d5382613d9c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613df3578082015181840152602081019050613dd8565b83811115613e02576000848401525b50505050565b60006002820490506001821680613e2057607f821691505b60208210811415613e3457613e33613f71565b5b50919050565b613e438261401c565b810181811067ffffffffffffffff82111715613e6257613e61613fcf565b5b80604052505050565b6000613e7682613dbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ea957613ea8613f13565b5b600182019050919050565b6000613ebf82613ed0565b9050919050565b6000819050919050565b6000613edb8261402d565b9050919050565b6000613eed82613dbc565b9150613ef883613dbc565b925082613f0857613f07613f42565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5175616e74697479207265717565737465642065786365656473206d6178207360008201527f7570706c792e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4578636565647320352c20746865206d61782071747920706572206d696e7400600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479207265717565737465642065786365656473206d6178207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5465616d2068617320636c61696d656400000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b61468181613d48565b811461468c57600080fd5b50565b61469881613d5a565b81146146a357600080fd5b50565b6146af81613d66565b81146146ba57600080fd5b50565b6146c681613d70565b81146146d157600080fd5b50565b6146dd81613dbc565b81146146e857600080fd5b5056fea26469706673582212200358e8d21a330016a305c2f25ed06ae264292ab6cc35a214b51f63d05a883a8b64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f53686171204769766573204261636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553484151530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61667862516d5577634439677a63536b5a616b4e573969345270793171755932376753706a43375a634173572f00000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c806370a082311161012e578063c7fc0cd1116100ab578063d5aff63f1161006f578063d5aff63f146107de578063da3ef23f14610807578063e8a467be14610830578063e985e9c51461085b578063f2fde38b1461089857610230565b8063c7fc0cd114610706578063c87b56dd14610731578063d1454bf41461076e578063d2cab05614610797578063d5abeb01146107b357610230565b8063a22cb465116100f2578063a22cb46514610635578063aa98e0c61461065e578063b88d4fde14610689578063bd32fb66146106b2578063c6682862146106db57610230565b806370a082311461054e578063715018a61461058b578063772dc32f146105a25780638da5cb5b146105df57806395d89b411461060a57610230565b80632f334652116101bc57806353135ca01161018057806353135ca01461047b57806355f804b3146104a65780636352211e146104cf5780636ae146c21461050c5780636c0360eb1461052357610230565b80632f334652146103c95780633ccfd60b146103f45780633f2981cf146103fe57806342842e0e1461042957806344a0d68a1461045257610230565b806313faede61161020357806313faede61461030357806318160ddd1461032e578063239c70ae1461035957806323b872dd146103845780632db11544146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613078565b6108c1565b60405161026991906137b6565b60405180910390f35b34801561027e57600080fd5b506102876109a3565b60405161029491906137ec565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061311b565b610a35565b6040516102d1919061374f565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612fde565b610aba565b005b34801561030f57600080fd5b50610318610bd2565b6040516103259190613b2e565b60405180910390f35b34801561033a57600080fd5b50610343610bd8565b6040516103509190613b2e565b60405180910390f35b34801561036557600080fd5b5061036e610bf5565b60405161037b9190613b2e565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a69190612ec8565b610bfa565b005b6103c760048036038101906103c2919061311b565b610c5a565b005b3480156103d557600080fd5b506103de610e1f565b6040516103eb91906137b6565b60405180910390f35b6103fc610e32565b005b34801561040a57600080fd5b50610413610f3b565b60405161042091906137b6565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190612ec8565b610f4e565b005b34801561045e57600080fd5b506104796004803603810190610474919061311b565b610f6e565b005b34801561048757600080fd5b50610490610ff4565b60405161049d91906137b6565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906130d2565b611007565b005b3480156104db57600080fd5b506104f660048036038101906104f1919061311b565b61109d565b604051610503919061374f565b60405180910390f35b34801561051857600080fd5b5061052161114f565b005b34801561052f57600080fd5b506105386112d6565b60405161054591906137ec565b60405180910390f35b34801561055a57600080fd5b5061057560048036038101906105709190612e5b565b611364565b6040516105829190613b2e565b60405180910390f35b34801561059757600080fd5b506105a061141c565b005b3480156105ae57600080fd5b506105c960048036038101906105c49190612e5b565b6114a4565b6040516105d69190613b2e565b60405180910390f35b3480156105eb57600080fd5b506105f46114bc565b604051610601919061374f565b60405180910390f35b34801561061657600080fd5b5061061f6114e6565b60405161062c91906137ec565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612f9e565b611578565b005b34801561066a57600080fd5b5061067361158e565b60405161068091906137d1565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612f1b565b611594565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061304b565b6115f6565b005b3480156106e757600080fd5b506106f061167c565b6040516106fd91906137ec565b60405180910390f35b34801561071257600080fd5b5061071b61170a565b6040516107289190613b2e565b60405180910390f35b34801561073d57600080fd5b506107586004803603810190610753919061311b565b61170f565b60405161076591906137ec565b60405180910390f35b34801561077a57600080fd5b506107956004803603810190610790919061301e565b6117b9565b005b6107b160048036038101906107ac9190613148565b611852565b005b3480156107bf57600080fd5b506107c8611b80565b6040516107d59190613b2e565b60405180910390f35b3480156107ea57600080fd5b506108056004803603810190610800919061301e565b611b86565b005b34801561081357600080fd5b5061082e600480360381019061082991906130d2565b611c1f565b005b34801561083c57600080fd5b50610845611cb5565b6040516108529190613b2e565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190612e88565b611cba565b60405161088f91906137b6565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190612e5b565b611d4e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099c575061099b82611e5c565b5b9050919050565b6060600080546109b290613e08565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613e08565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b6000610a4082611ec6565b610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a76906139ce565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac58261109d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2d90613aae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b55611f32565b73ffffffffffffffffffffffffffffffffffffffff161480610b845750610b8381610b7e611f32565b611cba565b5b610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba9061392e565b60405180910390fd5b610bcd8383611f3a565b505050565b600a5481565b60006001610be66007611ff3565b610bf09190613d14565b905090565b600581565b610c0b610c05611f32565b82612001565b610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190613ace565b60405180910390fd5b610c558383836120df565b505050565b600b60009054906101000a900460ff16610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613a8e565b60405180910390fd5b60008111610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061390e565b60405180910390fd5b6005811115610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790613a0e565b60405180910390fd5b61271081610d3c610bd8565b610d469190613c33565b1115610d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7e906138ce565b60405180910390fd5b80600a54610d959190613cba565b341015610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061398e565b60405180910390fd5b6000600190505b818111610e1b576000610df16007611ff3565b9050610dfd338261233b565b610e076007611e46565b508080610e1390613e6b565b915050610dde565b5050565b600b60029054906101000a900460ff1681565b610e3a611f32565b73ffffffffffffffffffffffffffffffffffffffff16610e586114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906139ee565b60405180910390fd5b600073c135026969aa9765055eae9da120491a1df649b873ffffffffffffffffffffffffffffffffffffffff1647604051610ee89061373a565b60006040518083038185875af1925050503d8060008114610f25576040519150601f19603f3d011682016040523d82523d6000602084013e610f2a565b606091505b5050905080610f3857600080fd5b50565b600b60009054906101000a900460ff1681565b610f6983838360405180602001604052806000815250611594565b505050565b610f76611f32565b73ffffffffffffffffffffffffffffffffffffffff16610f946114bc565b73ffffffffffffffffffffffffffffffffffffffff1614610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe1906139ee565b60405180910390fd5b80600a8190555050565b600b60019054906101000a900460ff1681565b61100f611f32565b73ffffffffffffffffffffffffffffffffffffffff1661102d6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a906139ee565b60405180910390fd5b8060089080519060200190611099929190612c04565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d9061396e565b60405180910390fd5b80915050919050565b611157611f32565b73ffffffffffffffffffffffffffffffffffffffff166111756114bc565b73ffffffffffffffffffffffffffffffffffffffff16146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c2906139ee565b60405180910390fd5b612710601e6111d8610bd8565b6111e29190613c33565b1115611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a906138ce565b60405180910390fd5b600b60029054906101000a900460ff1615611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613aee565b60405180910390fd5b6000600190505b601e81116112b857600061128e6007611ff3565b905061129a338261233b565b6112a46007611e46565b5080806112b090613e6b565b91505061127a565b506001600b60026101000a81548160ff021916908315150217905550565b600880546112e390613e08565b80601f016020809104026020016040519081016040528092919081815260200182805461130f90613e08565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc9061394e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611424611f32565b73ffffffffffffffffffffffffffffffffffffffff166114426114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148f906139ee565b60405180910390fd5b6114a26000612509565b565b600d6020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546114f590613e08565b80601f016020809104026020016040519081016040528092919081815260200182805461152190613e08565b801561156e5780601f106115435761010080835404028352916020019161156e565b820191906000526020600020905b81548152906001019060200180831161155157829003601f168201915b5050505050905090565b61158a611583611f32565b83836125cf565b5050565b600c5481565b6115a561159f611f32565b83612001565b6115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90613ace565b60405180910390fd5b6115f08484848461273c565b50505050565b6115fe611f32565b73ffffffffffffffffffffffffffffffffffffffff1661161c6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906139ee565b60405180910390fd5b80600c8190555050565b6009805461168990613e08565b80601f01602080910402602001604051908101604052809291908181526020018280546116b590613e08565b80156117025780601f106116d757610100808354040283529160200191611702565b820191906000526020600020905b8154815290600101906020018083116116e557829003601f168201915b505050505081565b601e81565b606061171a82611ec6565b611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613a4e565b60405180910390fd5b6000611763612798565b9050600081511161178357604051806020016040528060008152506117b1565b8061178d8461282a565b60096040516020016117a193929190613709565b6040516020818303038152906040525b915050919050565b6117c1611f32565b73ffffffffffffffffffffffffffffffffffffffff166117df6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c906139ee565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b600b60019054906101000a900460ff166118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890613a8e565b60405180910390fd5b600083116118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db9061390e565b60405180910390fd5b600383600d60006118f3611f32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119389190613c33565b1115611979576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119709061386e565b60405180910390fd5b61271083611985610bd8565b61198f9190613c33565b11156119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613a6e565b60405180910390fd5b82600a546119de9190613cba565b341015611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a179061398e565b60405180910390fd5b600033604051602001611a3391906136c2565b604051602081830303815290604052805190602001209050611a99838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c548361298b565b611ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acf90613b0e565b60405180910390fd5b83600d6000611ae5611f32565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b2e9190613c33565b925050819055506000600190505b848111611b79576000611b4f6007611ff3565b9050611b5b338261233b565b611b656007611e46565b508080611b7190613e6b565b915050611b3c565b5050505050565b61271081565b611b8e611f32565b73ffffffffffffffffffffffffffffffffffffffff16611bac6114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf9906139ee565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b611c27611f32565b73ffffffffffffffffffffffffffffffffffffffff16611c456114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906139ee565b60405180910390fd5b8060099080519060200190611cb1929190612c04565b5050565b600381565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d56611f32565b73ffffffffffffffffffffffffffffffffffffffff16611d746114bc565b73ffffffffffffffffffffffffffffffffffffffff1614611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc1906139ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e319061382e565b60405180910390fd5b611e4381612509565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fad8361109d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600061200c82611ec6565b61204b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612042906138ee565b60405180910390fd5b60006120568361109d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120c557508373ffffffffffffffffffffffffffffffffffffffff166120ad84610a35565b73ffffffffffffffffffffffffffffffffffffffff16145b806120d657506120d58185611cba565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120ff8261109d565b73ffffffffffffffffffffffffffffffffffffffff1614612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90613a2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bc9061388e565b60405180910390fd5b6121d08383836129a2565b6121db600082611f3a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461222b9190613d14565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122829190613c33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a2906139ae565b60405180910390fd5b6123b481611ec6565b156123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb9061384e565b60405180910390fd5b612400600083836129a2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124509190613c33565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561263e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612635906138ae565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161272f91906137b6565b60405180910390a3505050565b6127478484846120df565b612753848484846129a7565b612792576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127899061380e565b60405180910390fd5b50505050565b6060600880546127a790613e08565b80601f01602080910402602001604051908101604052809291908181526020018280546127d390613e08565b80156128205780601f106127f557610100808354040283529160200191612820565b820191906000526020600020905b81548152906001019060200180831161280357829003601f168201915b5050505050905090565b60606000821415612872576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612986565b600082905060005b600082146128a457808061288d90613e6b565b915050600a8261289d9190613c89565b915061287a565b60008167ffffffffffffffff8111156128c0576128bf613fcf565b5b6040519080825280601f01601f1916602001820160405280156128f25781602001600182028036833780820191505090505b5090505b6000851461297f5760018261290b9190613d14565b9150600a8561291a9190613ee2565b60306129269190613c33565b60f81b81838151811061293c5761293b613fa0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129789190613c89565b94506128f6565b8093505050505b919050565b6000826129988584612b3e565b1490509392505050565b505050565b60006129c88473ffffffffffffffffffffffffffffffffffffffff16612bf1565b15612b31578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129f1611f32565b8786866040518563ffffffff1660e01b8152600401612a13949392919061376a565b602060405180830381600087803b158015612a2d57600080fd5b505af1925050508015612a5e57506040513d601f19601f82011682018060405250810190612a5b91906130a5565b60015b612ae1573d8060008114612a8e576040519150601f19603f3d011682016040523d82523d6000602084013e612a93565b606091505b50600081511415612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad09061380e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b36565b600190505b949350505050565b60008082905060005b8451811015612be6576000858281518110612b6557612b64613fa0565b5b60200260200101519050808311612ba6578281604051602001612b899291906136dd565b604051602081830303815290604052805190602001209250612bd2565b8083604051602001612bb99291906136dd565b6040516020818303038152906040528051906020012092505b508080612bde90613e6b565b915050612b47565b508091505092915050565b600080823b905060008111915050919050565b828054612c1090613e08565b90600052602060002090601f016020900481019282612c325760008555612c79565b82601f10612c4b57805160ff1916838001178555612c79565b82800160010185558215612c79579182015b82811115612c78578251825591602001919060010190612c5d565b5b509050612c869190612c8a565b5090565b5b80821115612ca3576000816000905550600101612c8b565b5090565b6000612cba612cb584613b6e565b613b49565b905082815260208101848484011115612cd657612cd561400d565b5b612ce1848285613dc6565b509392505050565b6000612cfc612cf784613b9f565b613b49565b905082815260208101848484011115612d1857612d1761400d565b5b612d23848285613dc6565b509392505050565b600081359050612d3a81614678565b92915050565b60008083601f840112612d5657612d55614003565b5b8235905067ffffffffffffffff811115612d7357612d72613ffe565b5b602083019150836020820283011115612d8f57612d8e614008565b5b9250929050565b600081359050612da58161468f565b92915050565b600081359050612dba816146a6565b92915050565b600081359050612dcf816146bd565b92915050565b600081519050612de4816146bd565b92915050565b600082601f830112612dff57612dfe614003565b5b8135612e0f848260208601612ca7565b91505092915050565b600082601f830112612e2d57612e2c614003565b5b8135612e3d848260208601612ce9565b91505092915050565b600081359050612e55816146d4565b92915050565b600060208284031215612e7157612e70614017565b5b6000612e7f84828501612d2b565b91505092915050565b60008060408385031215612e9f57612e9e614017565b5b6000612ead85828601612d2b565b9250506020612ebe85828601612d2b565b9150509250929050565b600080600060608486031215612ee157612ee0614017565b5b6000612eef86828701612d2b565b9350506020612f0086828701612d2b565b9250506040612f1186828701612e46565b9150509250925092565b60008060008060808587031215612f3557612f34614017565b5b6000612f4387828801612d2b565b9450506020612f5487828801612d2b565b9350506040612f6587828801612e46565b925050606085013567ffffffffffffffff811115612f8657612f85614012565b5b612f9287828801612dea565b91505092959194509250565b60008060408385031215612fb557612fb4614017565b5b6000612fc385828601612d2b565b9250506020612fd485828601612d96565b9150509250929050565b60008060408385031215612ff557612ff4614017565b5b600061300385828601612d2b565b925050602061301485828601612e46565b9150509250929050565b60006020828403121561303457613033614017565b5b600061304284828501612d96565b91505092915050565b60006020828403121561306157613060614017565b5b600061306f84828501612dab565b91505092915050565b60006020828403121561308e5761308d614017565b5b600061309c84828501612dc0565b91505092915050565b6000602082840312156130bb576130ba614017565b5b60006130c984828501612dd5565b91505092915050565b6000602082840312156130e8576130e7614017565b5b600082013567ffffffffffffffff81111561310657613105614012565b5b61311284828501612e18565b91505092915050565b60006020828403121561313157613130614017565b5b600061313f84828501612e46565b91505092915050565b60008060006040848603121561316157613160614017565b5b600061316f86828701612e46565b935050602084013567ffffffffffffffff8111156131905761318f614012565b5b61319c86828701612d40565b92509250509250925092565b6131b181613d48565b82525050565b6131c86131c382613d48565b613eb4565b82525050565b6131d781613d5a565b82525050565b6131e681613d66565b82525050565b6131fd6131f882613d66565b613ec6565b82525050565b600061320e82613be5565b6132188185613bfb565b9350613228818560208601613dd5565b6132318161401c565b840191505092915050565b600061324782613bf0565b6132518185613c17565b9350613261818560208601613dd5565b61326a8161401c565b840191505092915050565b600061328082613bf0565b61328a8185613c28565b935061329a818560208601613dd5565b80840191505092915050565b600081546132b381613e08565b6132bd8186613c28565b945060018216600081146132d857600181146132e95761331c565b60ff1983168652818601935061331c565b6132f285613bd0565b60005b83811015613314578154818901526001820191506020810190506132f5565b838801955050505b50505092915050565b6000613332603283613c17565b915061333d8261403a565b604082019050919050565b6000613355602683613c17565b915061336082614089565b604082019050919050565b6000613378601c83613c17565b9150613383826140d8565b602082019050919050565b600061339b601883613c17565b91506133a682614101565b602082019050919050565b60006133be602483613c17565b91506133c98261412a565b604082019050919050565b60006133e1601983613c17565b91506133ec82614179565b602082019050919050565b6000613404602683613c17565b915061340f826141a2565b604082019050919050565b6000613427602c83613c17565b9150613432826141f1565b604082019050919050565b600061344a601783613c17565b915061345582614240565b602082019050919050565b600061346d603883613c17565b915061347882614269565b604082019050919050565b6000613490602a83613c17565b915061349b826142b8565b604082019050919050565b60006134b3602983613c17565b91506134be82614307565b604082019050919050565b60006134d6602383613c17565b91506134e182614356565b604082019050919050565b60006134f9602083613c17565b9150613504826143a5565b602082019050919050565b600061351c602c83613c17565b9150613527826143ce565b604082019050919050565b600061353f602083613c17565b915061354a8261441d565b602082019050919050565b6000613562601f83613c17565b915061356d82614446565b602082019050919050565b6000613585602983613c17565b91506135908261446f565b604082019050919050565b60006135a8602f83613c17565b91506135b3826144be565b604082019050919050565b60006135cb602583613c17565b91506135d68261450d565b604082019050919050565b60006135ee601983613c17565b91506135f98261455c565b602082019050919050565b6000613611602183613c17565b915061361c82614585565b604082019050919050565b6000613634600083613c0c565b915061363f826145d4565b600082019050919050565b6000613657603183613c17565b9150613662826145d7565b604082019050919050565b600061367a601083613c17565b915061368582614626565b602082019050919050565b600061369d600d83613c17565b91506136a88261464f565b602082019050919050565b6136bc81613dbc565b82525050565b60006136ce82846131b7565b60148201915081905092915050565b60006136e982856131ec565b6020820191506136f982846131ec565b6020820191508190509392505050565b60006137158286613275565b91506137218285613275565b915061372d82846132a6565b9150819050949350505050565b600061374582613627565b9150819050919050565b600060208201905061376460008301846131a8565b92915050565b600060808201905061377f60008301876131a8565b61378c60208301866131a8565b61379960408301856136b3565b81810360608301526137ab8184613203565b905095945050505050565b60006020820190506137cb60008301846131ce565b92915050565b60006020820190506137e660008301846131dd565b92915050565b60006020820190508181036000830152613806818461323c565b905092915050565b6000602082019050818103600083015261382781613325565b9050919050565b6000602082019050818103600083015261384781613348565b9050919050565b600060208201905081810360008301526138678161336b565b9050919050565b600060208201905081810360008301526138878161338e565b9050919050565b600060208201905081810360008301526138a7816133b1565b9050919050565b600060208201905081810360008301526138c7816133d4565b9050919050565b600060208201905081810360008301526138e7816133f7565b9050919050565b600060208201905081810360008301526139078161341a565b9050919050565b600060208201905081810360008301526139278161343d565b9050919050565b6000602082019050818103600083015261394781613460565b9050919050565b6000602082019050818103600083015261396781613483565b9050919050565b60006020820190508181036000830152613987816134a6565b9050919050565b600060208201905081810360008301526139a7816134c9565b9050919050565b600060208201905081810360008301526139c7816134ec565b9050919050565b600060208201905081810360008301526139e78161350f565b9050919050565b60006020820190508181036000830152613a0781613532565b9050919050565b60006020820190508181036000830152613a2781613555565b9050919050565b60006020820190508181036000830152613a4781613578565b9050919050565b60006020820190508181036000830152613a678161359b565b9050919050565b60006020820190508181036000830152613a87816135be565b9050919050565b60006020820190508181036000830152613aa7816135e1565b9050919050565b60006020820190508181036000830152613ac781613604565b9050919050565b60006020820190508181036000830152613ae78161364a565b9050919050565b60006020820190508181036000830152613b078161366d565b9050919050565b60006020820190508181036000830152613b2781613690565b9050919050565b6000602082019050613b4360008301846136b3565b92915050565b6000613b53613b64565b9050613b5f8282613e3a565b919050565b6000604051905090565b600067ffffffffffffffff821115613b8957613b88613fcf565b5b613b928261401c565b9050602081019050919050565b600067ffffffffffffffff821115613bba57613bb9613fcf565b5b613bc38261401c565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3e82613dbc565b9150613c4983613dbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7e57613c7d613f13565b5b828201905092915050565b6000613c9482613dbc565b9150613c9f83613dbc565b925082613caf57613cae613f42565b5b828204905092915050565b6000613cc582613dbc565b9150613cd083613dbc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0957613d08613f13565b5b828202905092915050565b6000613d1f82613dbc565b9150613d2a83613dbc565b925082821015613d3d57613d3c613f13565b5b828203905092915050565b6000613d5382613d9c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613df3578082015181840152602081019050613dd8565b83811115613e02576000848401525b50505050565b60006002820490506001821680613e2057607f821691505b60208210811415613e3457613e33613f71565b5b50919050565b613e438261401c565b810181811067ffffffffffffffff82111715613e6257613e61613fcf565b5b80604052505050565b6000613e7682613dbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ea957613ea8613f13565b5b600182019050919050565b6000613ebf82613ed0565b9050919050565b6000819050919050565b6000613edb8261402d565b9050919050565b6000613eed82613dbc565b9150613ef883613dbc565b925082613f0857613f07613f42565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5175616e74697479207265717565737465642065786365656473206d6178207360008201527f7570706c792e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e742069732062656c6f772074686520707260008201527f6963650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4578636565647320352c20746865206d61782071747920706572206d696e7400600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479207265717565737465642065786365656473206d6178207360008201527f7570706c79000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206e6f742073746172746564207965742e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5465616d2068617320636c61696d656400000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b61468181613d48565b811461468c57600080fd5b50565b61469881613d5a565b81146146a357600080fd5b50565b6146af81613d66565b81146146ba57600080fd5b50565b6146c681613d70565b81146146d157600080fd5b50565b6146dd81613dbc565b81146146e857600080fd5b5056fea26469706673582212200358e8d21a330016a305c2f25ed06ae264292ab6cc35a214b51f63d05a883a8b64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f53686171204769766573204261636b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553484151530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61667862516d5577634439677a63536b5a616b4e573969345270793171755932376753706a43375a634173572f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Shaq Gives Back
Arg [1] : _symbol (string): SHAQS
Arg [2] : _initBaseURI (string): ipfs://QmafxbQmUwcD9gzcSkZakNW9i4Rpy1quY27gSpjC7ZcAsW/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 53686171204769766573204261636b0000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5348415153000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d61667862516d5577634439677a63536b5a616b4e573969
Arg [9] : 345270793171755932376753706a43375a634173572f00000000000000000000
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.