Overview
TokenID
3260
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PumpkinSpiceMoonbirds
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721r.sol"; contract PumpkinSpiceMoonbirds is ERC721r, Ownable { using Address for address; //#USUAL FARE string public baseURI; uint256 public treasuryPull = 25; uint256 public birdSupply = 10000; bytes32 public merkleroot = 0xbaa07b2bced28e157733470b15a25233f05393cb6c0c7460daa40eaa470f468d; address multisig_wallet = 0xF1df0A37dF6219e13C05adB7BE518210D723B7bA; //#FLAGS bool public allowlistActive; bool public publicSaleActive; //#AMOUNTS uint256 public allowlistMintAmount = 2; uint256 public publicMintAmt = 1; //let's be real, it's not a latte. uint256 public birdPrice = 0.0069 ether; mapping(address => uint256) private presaleBirds; mapping(address => uint256) private mintCount; function _baseURI() internal view virtual override returns (string memory) { return baseURI; } //#MODIFIERS FOR LIVE SALES modifier allowListSaleIsActive() { require(allowlistActive, "allow list sale not live"); _; } modifier publicSaleIsLive() { require(publicSaleActive, "mint not live"); _; } constructor() ERC721r("PumpkinSpiceMoonbirds", "PSMBs", 10_000) { } function isAllowlisted(address _address, bytes32[] calldata _merkleProof) public view returns (bool){ bytes32 leaf = keccak256(abi.encodePacked(_address)); bool res = MerkleProof.verify(_merkleProof,merkleroot,leaf); return res; } // Minting functions function publicMint(uint256 _mintAmount) external payable publicSaleIsLive { address _to = msg.sender; uint256 minted = mintCount[_to]; require(msg.sender == tx.origin,"message being sent doesn't not match origin"); require(minted + _mintAmount <= publicMintAmt, "mint over max"); require(totalSupply() + _mintAmount <= birdSupply, "mint over supply"); require(msg.value >= birdPrice * _mintAmount, "insufficient funds"); mintCount[_to] = minted + _mintAmount; _mintRandom(msg.sender,_mintAmount); } function allowListMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable allowListSaleIsActive { address _to = msg.sender; // uint256 reserved = presaleBirds[_to]; uint256 minted = mintCount[_to]; bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof,merkleroot,leaf), "Invalid Proof."); require(msg.sender == tx.origin,"message being sent doesn't not match origin"); require(minted + _mintAmount <= allowlistMintAmount, "mint over max"); require(totalSupply() + _mintAmount <= birdSupply, "mint over supply"); require(msg.value >= birdPrice * _mintAmount, "insufficient funds"); mintCount[_to] = minted + _mintAmount; _mintRandom(msg.sender, _mintAmount); } // Only Owner executable functions function mintByOwner(address _to, uint256 _mintAmount) external onlyOwner { require(totalSupply() + _mintAmount <= birdSupply, "mint over supply"); _mintRandom(_to, _mintAmount); } function addToAllowlist(address[] calldata _addresses, uint256 _mintAllowance) external onlyOwner { for (uint256 i; i < _addresses.length; i++) { presaleBirds[_addresses[i]] = _mintAllowance; } } //#SALES TOGGLE function togglePublicSaleActive() external onlyOwner { if (publicSaleActive) { publicSaleActive = false; return; } publicSaleActive = true; } function toggleCommunitySaleActive() external onlyOwner { if (allowlistActive) { allowlistActive = false; return; } allowlistActive = true; } //#SETTERS function setBaseURI(string memory _newURI) external onlyOwner { baseURI = _newURI; } function setPayoutAddress(address _newPayout) external onlyOwner { multisig_wallet = _newPayout; } function setPrice(uint256 _price) external onlyOwner { birdPrice = _price; } function setPublicMintAmount(uint256 _amt) external onlyOwner { publicMintAmt = _amt; } function updateMerkle(bytes32 _merkleRoot) external onlyOwner{ merkleroot = _merkleRoot; } //hoothoot function withdraw() public onlyOwner { uint balance = address(this).balance; payable(multisig_wallet).transfer(balance); } }
// 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/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 pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/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. This does random batch minting. */ contract ERC721r is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint => uint) private _availableTokens; uint256 private _numAvailableTokens; uint256 immutable _maxSupply; // 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_, uint maxSupply_) { _name = name_; _symbol = symbol_; _maxSupply = maxSupply_; _numAvailableTokens = maxSupply_; } /** * @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); } function totalSupply() public view virtual returns (uint256) { return _maxSupply - _numAvailableTokens; } function maxSupply() public view virtual returns (uint256) { return _maxSupply; } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721r.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 = ERC721r.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _mintIdWithoutBalanceUpdate(address to, uint256 tokenId) private { _beforeTokenTransfer(address(0), to, tokenId); _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } function _mintRandom(address to, uint _numToMint) internal virtual { require(_msgSender() == tx.origin, "Contracts cannot mint"); require(to != address(0), "ERC721: mint to the zero address"); require(_numToMint > 0, "ERC721r: need to mint at least one token"); // TODO: Probably don't need this as it will underflow and revert automatically in this case require(_numAvailableTokens >= _numToMint, "ERC721r: minting more tokens than available"); uint updatedNumAvailableTokens = _numAvailableTokens; for (uint256 i; i < _numToMint; ++i) { // Do this ++ unchecked? uint256 tokenId = getRandomAvailableTokenId(to, updatedNumAvailableTokens); _mintIdWithoutBalanceUpdate(to, tokenId); --updatedNumAvailableTokens; } _numAvailableTokens = updatedNumAvailableTokens; _balances[to] += _numToMint; } function getRandomAvailableTokenId(address to, uint updatedNumAvailableTokens) internal returns (uint256) { uint256 randomNum = uint256( keccak256( abi.encode( to, tx.gasprice, block.number, block.timestamp, block.difficulty, blockhash(block.number - 1), address(this), updatedNumAvailableTokens ) ) ); uint256 randomIndex = randomNum % updatedNumAvailableTokens; return getAvailableTokenAtIndex(randomIndex, updatedNumAvailableTokens); } // Implements https://en.wikipedia.org/wiki/Fisher%E2%80%93Yates_shuffle. Code taken from CryptoPhunksV2 function getAvailableTokenAtIndex(uint256 indexToUse, uint updatedNumAvailableTokens) internal returns (uint256) { uint256 valAtIndex = _availableTokens[indexToUse]; uint256 result; if (valAtIndex == 0) { // This means the index itself is still an available token result = indexToUse; } else { // This means the index itself is not an available token, but the val at that index is. result = valAtIndex; } uint256 lastIndex = updatedNumAvailableTokens - 1; if (indexToUse != lastIndex) { // Replace the value at indexToUse, now that it's been used. // Replace it with the data from the last index in the array, since we are going to decrease the array size afterwards. uint256 lastValInArray = _availableTokens[lastIndex]; if (lastValInArray == 0) { // This means the index itself is still an available token _availableTokens[indexToUse] = lastIndex; } else { // This means the index itself is not an available token, but the val at that index is. _availableTokens[indexToUse] = lastValInArray; // Gas refund courtsey of @dievardump delete _availableTokens[lastIndex]; } } return result; } // Not as good as minting a specific tokenId, but will behave the same at the start // allowing you to explicitly mint some tokens at launch. function _mintAtIndex(address to, uint index) internal virtual { require(_msgSender() == tx.origin, "Contracts cannot mint"); require(to != address(0), "ERC721: mint to the zero address"); require(_numAvailableTokens >= 1, "ERC721r: minting more tokens than available"); uint tokenId = getAvailableTokenAtIndex(index, _numAvailableTokens); --_numAvailableTokens; _mintIdWithoutBalanceUpdate(to, tokenId); _balances[to] += 1; } /** * @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(ERC721r.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721r.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 (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/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
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_mintAllowance","type":"uint256"}],"name":"addToAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowlistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"birdPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"birdSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPayout","type":"address"}],"name":"setPayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"setPublicMintAmount","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":"toggleCommunitySaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","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":"treasuryPull","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526019600a55612710600b557fbaa07b2bced28e157733470b15a25233f05393cb6c0c7460daa40eaa470f468d60001b600c5573f1df0a37df6219e13c05adb7be518210d723b7ba600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002600e556001600f556618838370f34000601055348015620000ad57600080fd5b506040518060400160405280601581526020017f50756d706b696e53706963654d6f6f6e626972647300000000000000000000008152506040518060400160405280600581526020017f50534d427300000000000000000000000000000000000000000000000000000081525061271082600090805190602001906200013592919062000255565b5081600190805190602001906200014e92919062000255565b5080608081815250508060038190555050505062000181620001756200018760201b60201c565b6200018f60201b60201c565b6200036a565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002639062000305565b90600052602060002090601f016020900481019282620002875760008555620002d3565b82601f10620002a257805160ff1916838001178555620002d3565b82800160010185558215620002d3579182015b82811115620002d2578251825591602001919060010190620002b5565b5b509050620002e29190620002e6565b5090565b5b8082111562000301576000816000905550600101620002e7565b5090565b600060028204905060018216806200031e57607f821691505b602082108114156200033557620003346200033b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b608051614bf76200038d60003960008181610cd50152611bca0152614bf76000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d29756851161006f578063d297568514610816578063d5abeb0114610841578063e985e9c51461086c578063ec8bda8e146108a9578063f2fde38b146108c55761023b565b8063b88d4fde14610745578063bc8893b41461076e578063bf62590614610799578063c87b56dd146107b0578063c9df29f6146107ed5761023b565b80638e04f5c0116100f25780638e04f5c01461067257806391b7f5ed1461069d57806395d89b41146106c6578063a22cb465146106f1578063b6c7ecf51461071a5761023b565b8063715018a6146105b15780637a742d94146105c85780637ad9895e146105f15780638b076b9b1461061c5780638da5cb5b146106475761023b565b806333ea51a8116101bc5780636352211e116101805780636352211e146104b8578063640adfef146104f557806366609acd1461051e5780636c0360eb1461054957806370a08231146105745761023b565b806333ea51a8146103fd5780633542aee2146104265780633ccfd60b1461044f57806342842e0e1461046657806355f804b31461048f5761023b565b806318160ddd1161020357806318160ddd1461032557806318ba2e021461035057806323b872dd1461037b5780632db11544146103a457806333006786146103c05761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630c894cfe1461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906135f6565b6108ee565b6040516102749190613cd2565b60405180910390f35b34801561028957600080fd5b506102926109d0565b60405161029f9190613d08565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613689565b610a62565b6040516102dc9190613bed565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613539565b610ae7565b005b34801561031a57600080fd5b50610323610bff565b005b34801561033157600080fd5b5061033a610cce565b604051610347919061404a565b60405180910390f35b34801561035c57600080fd5b50610365610d03565b604051610372919061404a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906133db565b610d09565b005b6103be60048036038101906103b99190613689565b610d69565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906134a5565b610fc4565b6040516103f49190613cd2565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613376565b61104e565b005b34801561043257600080fd5b5061044d60048036038101906104489190613539565b61110e565b005b34801561045b57600080fd5b506104646111ef565b005b34801561047257600080fd5b5061048d600480360381019061048891906133db565b6112dc565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613648565b6112fc565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613689565b611392565b6040516104ec9190613bed565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613689565b611444565b005b34801561052a57600080fd5b506105336114ca565b604051610540919061404a565b60405180910390f35b34801561055557600080fd5b5061055e6114d0565b60405161056b9190613d08565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613376565b61155e565b6040516105a8919061404a565b60405180910390f35b3480156105bd57600080fd5b506105c6611616565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906135cd565b61169e565b005b3480156105fd57600080fd5b50610606611724565b604051610613919061404a565b60405180910390f35b34801561062857600080fd5b5061063161172a565b60405161063e9190613cd2565b60405180910390f35b34801561065357600080fd5b5061065c61173d565b6040516106699190613bed565b60405180910390f35b34801561067e57600080fd5b50610687611767565b604051610694919061404a565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613689565b61176d565b005b3480156106d257600080fd5b506106db6117f3565b6040516106e89190613d08565b60405180910390f35b3480156106fd57600080fd5b50610718600480360381019061071391906134fd565b611885565b005b34801561072657600080fd5b5061072f61189b565b60405161073c9190613ced565b60405180910390f35b34801561075157600080fd5b5061076c6004803603810190610767919061342a565b6118a1565b005b34801561077a57600080fd5b50610783611903565b6040516107909190613cd2565b60405180910390f35b3480156107a557600080fd5b506107ae611916565b005b3480156107bc57600080fd5b506107d760048036038101906107d29190613689565b6119e5565b6040516107e49190613d08565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613575565b611a8c565b005b34801561082257600080fd5b5061082b611bc0565b604051610838919061404a565b60405180910390f35b34801561084d57600080fd5b50610856611bc6565b604051610863919061404a565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e919061339f565b611bee565b6040516108a09190613cd2565b60405180910390f35b6108c360048036038101906108be91906136b2565b611c82565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613376565b611f98565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957506109c882612090565b5b9050919050565b6060600080546109df9061432e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b9061432e565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b6000610a6d826120fa565b610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390613f2a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af282611392565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90613faa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b82612166565b73ffffffffffffffffffffffffffffffffffffffff161480610bb15750610bb081610bab612166565b611bee565b5b610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790613e6a565b60405180910390fd5b610bfa838361216e565b505050565b610c07612166565b73ffffffffffffffffffffffffffffffffffffffff16610c2561173d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613f4a565b60405180910390fd5b600d60159054906101000a900460ff1615610cb0576000600d60156101000a81548160ff021916908315150217905550610ccc565b6001600d60156101000a81548160ff0219169083151502179055505b565b60006003547f0000000000000000000000000000000000000000000000000000000000000000610cfe9190614210565b905090565b600e5481565b610d1a610d14612166565b82612227565b610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d509061400a565b60405180910390fd5b610d64838383612305565b505050565b600d60159054906101000a900460ff16610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613e8a565b60405180910390fd5b60003390506000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690613d6a565b60405180910390fd5b600f548382610e7e919061412f565b1115610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690613f8a565b60405180910390fd5b600b5483610ecb610cce565b610ed5919061412f565b1115610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d9061402a565b60405180910390fd5b82601054610f2491906141b6565b341015610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90613fea565b60405180910390fd5b8281610f72919061412f565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fbf338461256c565b505050565b60008084604051602001610fd89190613b82565b6040516020818303038152906040528051906020012090506000611040858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5484612784565b905080925050509392505050565b611056612166565b73ffffffffffffffffffffffffffffffffffffffff1661107461173d565b73ffffffffffffffffffffffffffffffffffffffff16146110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190613f4a565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611116612166565b73ffffffffffffffffffffffffffffffffffffffff1661113461173d565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613f4a565b60405180910390fd5b600b5481611196610cce565b6111a0919061412f565b11156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061402a565b60405180910390fd5b6111eb828261256c565b5050565b6111f7612166565b73ffffffffffffffffffffffffffffffffffffffff1661121561173d565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613f4a565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112d8573d6000803e3d6000fd5b5050565b6112f7838383604051806020016040528060008152506118a1565b505050565b611304612166565b73ffffffffffffffffffffffffffffffffffffffff1661132261173d565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613f4a565b60405180910390fd5b806009908051906020019061138e9291906130f1565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613eca565b60405180910390fd5b80915050919050565b61144c612166565b73ffffffffffffffffffffffffffffffffffffffff1661146a61173d565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613f4a565b60405180910390fd5b80600f8190555050565b600f5481565b600980546114dd9061432e565b80601f01602080910402602001604051908101604052809291908181526020018280546115099061432e565b80156115565780601f1061152b57610100808354040283529160200191611556565b820191906000526020600020905b81548152906001019060200180831161153957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613eaa565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161e612166565b73ffffffffffffffffffffffffffffffffffffffff1661163c61173d565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613f4a565b60405180910390fd5b61169c600061279b565b565b6116a6612166565b73ffffffffffffffffffffffffffffffffffffffff166116c461173d565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613f4a565b60405180910390fd5b80600c8190555050565b600b5481565b600d60149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b611775612166565b73ffffffffffffffffffffffffffffffffffffffff1661179361173d565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090613f4a565b60405180910390fd5b8060108190555050565b6060600180546118029061432e565b80601f016020809104026020016040519081016040528092919081815260200182805461182e9061432e565b801561187b5780601f106118505761010080835404028352916020019161187b565b820191906000526020600020905b81548152906001019060200180831161185e57829003601f168201915b5050505050905090565b611897611890612166565b8383612861565b5050565b600c5481565b6118b26118ac612166565b83612227565b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061400a565b60405180910390fd5b6118fd848484846129ce565b50505050565b600d60159054906101000a900460ff1681565b61191e612166565b73ffffffffffffffffffffffffffffffffffffffff1661193c61173d565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613f4a565b60405180910390fd5b600d60149054906101000a900460ff16156119c7576000600d60146101000a81548160ff0219169083151502179055506119e3565b6001600d60146101000a81548160ff0219169083151502179055505b565b60606119f0826120fa565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613f6a565b60405180910390fd5b6000611a39612a2a565b90506000815111611a595760405180602001604052806000815250611a84565b80611a6384612abc565b604051602001611a74929190613bc9565b6040516020818303038152906040525b915050919050565b611a94612166565b73ffffffffffffffffffffffffffffffffffffffff16611ab261173d565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90613f4a565b60405180910390fd5b60005b83839050811015611bba578160116000868685818110611b54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b699190613376565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611bb290614391565b915050611b0b565b50505050565b600a5481565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60149054906101000a900460ff16611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890613d2a565b60405180910390fd5b60003390506000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600033604051602001611d2d9190613b82565b604051602081830303815290604052805190602001209050611d93858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612784565b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613e4a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790613d6a565b60405180910390fd5b600e548683611e4f919061412f565b1115611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790613f8a565b60405180910390fd5b600b5486611e9c610cce565b611ea6919061412f565b1115611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede9061402a565b60405180910390fd5b85601054611ef591906141b6565b341015611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613fea565b60405180910390fd5b8582611f43919061412f565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f90338761256c565b505050505050565b611fa0612166565b73ffffffffffffffffffffffffffffffffffffffff16611fbe61173d565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613f4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613d8a565b60405180910390fd5b61208d8161279b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121e183611392565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612232826120fa565b612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890613e2a565b60405180910390fd5b600061227c83611392565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122eb57508373ffffffffffffffffffffffffffffffffffffffff166122d384610a62565b73ffffffffffffffffffffffffffffffffffffffff16145b806122fc57506122fb8185611bee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661232582611392565b73ffffffffffffffffffffffffffffffffffffffff161461237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613daa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290613dea565b60405180910390fd5b6123f6838383612c69565b61240160008261216e565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124519190614210565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a8919061412f565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612567838383612c6e565b505050565b3273ffffffffffffffffffffffffffffffffffffffff1661258b612166565b73ffffffffffffffffffffffffffffffffffffffff16146125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613dca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264890613eea565b60405180910390fd5b60008111612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90613fca565b60405180910390fd5b8060035410156126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090613f0a565b60405180910390fd5b6000600354905060005b828110156127215760006126f78584612c73565b90506127038582612ce1565b8261270d90614304565b9250508061271a90614391565b90506126e3565b508060038190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612778919061412f565b92505081905550505050565b6000826127918584612dab565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c790613e0a565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129c19190613cd2565b60405180910390a3505050565b6129d9848484612305565b6129e584848484612e84565b612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613d4a565b60405180910390fd5b50505050565b606060098054612a399061432e565b80601f0160208091040260200160405190810160405280929190818152602001828054612a659061432e565b8015612ab25780601f10612a8757610100808354040283529160200191612ab2565b820191906000526020600020905b815481529060010190602001808311612a9557829003601f168201915b5050505050905090565b60606000821415612b04576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c64565b600082905060005b60008214612b36578080612b1f90614391565b915050600a82612b2f9190614185565b9150612b0c565b60008167ffffffffffffffff811115612b78577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612baa5781602001600182028036833780820191505090505b5090505b60008514612c5d57600182612bc39190614210565b9150600a85612bd29190614408565b6030612bde919061412f565b60f81b818381518110612c1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c569190614185565b9450612bae565b8093505050505b919050565b505050565b505050565b600080833a434244600143612c889190614210565b403089604051602001612ca2989796959493929190613c54565b6040516020818303038152906040528051906020012060001c905060008382612ccb9190614408565b9050612cd7818561301b565b9250505092915050565b612ced60008383612c69565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612da760008383612c6e565b5050565b60008082905060005b8451811015612e79576000858281518110612df8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612e39578281604051602001612e1c929190613b9d565b604051602081830303815290604052805190602001209250612e65565b8083604051602001612e4c929190613b9d565b6040516020818303038152906040528051906020012092505b508080612e7190614391565b915050612db4565b508091505092915050565b6000612ea58473ffffffffffffffffffffffffffffffffffffffff166130de565b1561300e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ece612166565b8786866040518563ffffffff1660e01b8152600401612ef09493929190613c08565b602060405180830381600087803b158015612f0a57600080fd5b505af1925050508015612f3b57506040513d601f19601f82011682018060405250810190612f38919061361f565b60015b612fbe573d8060008114612f6b576040519150601f19603f3d011682016040523d82523d6000602084013e612f70565b606091505b50600081511415612fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fad90613d4a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613013565b600190505b949350505050565b600080600260008581526020019081526020016000205490506000808214156130465784905061304a565b8190505b60006001856130599190614210565b90508086146130d25760006002600083815260200190815260200160002054905060008114156130a0578160026000898152602001908152602001600020819055506130d0565b80600260008981526020019081526020016000208190555060026000838152602001908152602001600020600090555b505b81935050505092915050565b600080823b905060008111915050919050565b8280546130fd9061432e565b90600052602060002090601f01602090048101928261311f5760008555613166565b82601f1061313857805160ff1916838001178555613166565b82800160010185558215613166579182015b8281111561316557825182559160200191906001019061314a565b5b5090506131739190613177565b5090565b5b80821115613190576000816000905550600101613178565b5090565b60006131a76131a28461408a565b614065565b9050828152602081018484840111156131bf57600080fd5b6131ca8482856142c2565b509392505050565b60006131e56131e0846140bb565b614065565b9050828152602081018484840111156131fd57600080fd5b6132088482856142c2565b509392505050565b60008135905061321f81614b4e565b92915050565b60008083601f84011261323757600080fd5b8235905067ffffffffffffffff81111561325057600080fd5b60208301915083602082028301111561326857600080fd5b9250929050565b60008083601f84011261328157600080fd5b8235905067ffffffffffffffff81111561329a57600080fd5b6020830191508360208202830111156132b257600080fd5b9250929050565b6000813590506132c881614b65565b92915050565b6000813590506132dd81614b7c565b92915050565b6000813590506132f281614b93565b92915050565b60008151905061330781614b93565b92915050565b600082601f83011261331e57600080fd5b813561332e848260208601613194565b91505092915050565b600082601f83011261334857600080fd5b81356133588482602086016131d2565b91505092915050565b60008135905061337081614baa565b92915050565b60006020828403121561338857600080fd5b600061339684828501613210565b91505092915050565b600080604083850312156133b257600080fd5b60006133c085828601613210565b92505060206133d185828601613210565b9150509250929050565b6000806000606084860312156133f057600080fd5b60006133fe86828701613210565b935050602061340f86828701613210565b925050604061342086828701613361565b9150509250925092565b6000806000806080858703121561344057600080fd5b600061344e87828801613210565b945050602061345f87828801613210565b935050604061347087828801613361565b925050606085013567ffffffffffffffff81111561348d57600080fd5b6134998782880161330d565b91505092959194509250565b6000806000604084860312156134ba57600080fd5b60006134c886828701613210565b935050602084013567ffffffffffffffff8111156134e557600080fd5b6134f18682870161326f565b92509250509250925092565b6000806040838503121561351057600080fd5b600061351e85828601613210565b925050602061352f858286016132b9565b9150509250929050565b6000806040838503121561354c57600080fd5b600061355a85828601613210565b925050602061356b85828601613361565b9150509250929050565b60008060006040848603121561358a57600080fd5b600084013567ffffffffffffffff8111156135a457600080fd5b6135b086828701613225565b935093505060206135c386828701613361565b9150509250925092565b6000602082840312156135df57600080fd5b60006135ed848285016132ce565b91505092915050565b60006020828403121561360857600080fd5b6000613616848285016132e3565b91505092915050565b60006020828403121561363157600080fd5b600061363f848285016132f8565b91505092915050565b60006020828403121561365a57600080fd5b600082013567ffffffffffffffff81111561367457600080fd5b61368084828501613337565b91505092915050565b60006020828403121561369b57600080fd5b60006136a984828501613361565b91505092915050565b6000806000604084860312156136c757600080fd5b60006136d586828701613361565b935050602084013567ffffffffffffffff8111156136f257600080fd5b6136fe8682870161326f565b92509250509250925092565b61371381614244565b82525050565b61372a61372582614244565b6143da565b82525050565b61373981614256565b82525050565b61374881614262565b82525050565b61375f61375a82614262565b6143ec565b82525050565b6000613770826140ec565b61377a8185614102565b935061378a8185602086016142d1565b613793816144f5565b840191505092915050565b60006137a9826140f7565b6137b38185614113565b93506137c38185602086016142d1565b6137cc816144f5565b840191505092915050565b60006137e2826140f7565b6137ec8185614124565b93506137fc8185602086016142d1565b80840191505092915050565b6000613815601883614113565b915061382082614513565b602082019050919050565b6000613838603283614113565b91506138438261453c565b604082019050919050565b600061385b602b83614113565b91506138668261458b565b604082019050919050565b600061387e602683614113565b9150613889826145da565b604082019050919050565b60006138a1602583614113565b91506138ac82614629565b604082019050919050565b60006138c4601583614113565b91506138cf82614678565b602082019050919050565b60006138e7602483614113565b91506138f2826146a1565b604082019050919050565b600061390a601983614113565b9150613915826146f0565b602082019050919050565b600061392d602c83614113565b915061393882614719565b604082019050919050565b6000613950600e83614113565b915061395b82614768565b602082019050919050565b6000613973603883614113565b915061397e82614791565b604082019050919050565b6000613996600d83614113565b91506139a1826147e0565b602082019050919050565b60006139b9602a83614113565b91506139c482614809565b604082019050919050565b60006139dc602983614113565b91506139e782614858565b604082019050919050565b60006139ff602083614113565b9150613a0a826148a7565b602082019050919050565b6000613a22602b83614113565b9150613a2d826148d0565b604082019050919050565b6000613a45602c83614113565b9150613a508261491f565b604082019050919050565b6000613a68602083614113565b9150613a738261496e565b602082019050919050565b6000613a8b602f83614113565b9150613a9682614997565b604082019050919050565b6000613aae600d83614113565b9150613ab9826149e6565b602082019050919050565b6000613ad1602183614113565b9150613adc82614a0f565b604082019050919050565b6000613af4602883614113565b9150613aff82614a5e565b604082019050919050565b6000613b17601283614113565b9150613b2282614aad565b602082019050919050565b6000613b3a603183614113565b9150613b4582614ad6565b604082019050919050565b6000613b5d601083614113565b9150613b6882614b25565b602082019050919050565b613b7c816142b8565b82525050565b6000613b8e8284613719565b60148201915081905092915050565b6000613ba9828561374e565b602082019150613bb9828461374e565b6020820191508190509392505050565b6000613bd582856137d7565b9150613be182846137d7565b91508190509392505050565b6000602082019050613c02600083018461370a565b92915050565b6000608082019050613c1d600083018761370a565b613c2a602083018661370a565b613c376040830185613b73565b8181036060830152613c498184613765565b905095945050505050565b600061010082019050613c6a600083018b61370a565b613c77602083018a613b73565b613c846040830189613b73565b613c916060830188613b73565b613c9e6080830187613b73565b613cab60a083018661373f565b613cb860c083018561370a565b613cc560e0830184613b73565b9998505050505050505050565b6000602082019050613ce76000830184613730565b92915050565b6000602082019050613d02600083018461373f565b92915050565b60006020820190508181036000830152613d22818461379e565b905092915050565b60006020820190508181036000830152613d4381613808565b9050919050565b60006020820190508181036000830152613d638161382b565b9050919050565b60006020820190508181036000830152613d838161384e565b9050919050565b60006020820190508181036000830152613da381613871565b9050919050565b60006020820190508181036000830152613dc381613894565b9050919050565b60006020820190508181036000830152613de3816138b7565b9050919050565b60006020820190508181036000830152613e03816138da565b9050919050565b60006020820190508181036000830152613e23816138fd565b9050919050565b60006020820190508181036000830152613e4381613920565b9050919050565b60006020820190508181036000830152613e6381613943565b9050919050565b60006020820190508181036000830152613e8381613966565b9050919050565b60006020820190508181036000830152613ea381613989565b9050919050565b60006020820190508181036000830152613ec3816139ac565b9050919050565b60006020820190508181036000830152613ee3816139cf565b9050919050565b60006020820190508181036000830152613f03816139f2565b9050919050565b60006020820190508181036000830152613f2381613a15565b9050919050565b60006020820190508181036000830152613f4381613a38565b9050919050565b60006020820190508181036000830152613f6381613a5b565b9050919050565b60006020820190508181036000830152613f8381613a7e565b9050919050565b60006020820190508181036000830152613fa381613aa1565b9050919050565b60006020820190508181036000830152613fc381613ac4565b9050919050565b60006020820190508181036000830152613fe381613ae7565b9050919050565b6000602082019050818103600083015261400381613b0a565b9050919050565b6000602082019050818103600083015261402381613b2d565b9050919050565b6000602082019050818103600083015261404381613b50565b9050919050565b600060208201905061405f6000830184613b73565b92915050565b600061406f614080565b905061407b8282614360565b919050565b6000604051905090565b600067ffffffffffffffff8211156140a5576140a46144c6565b5b6140ae826144f5565b9050602081019050919050565b600067ffffffffffffffff8211156140d6576140d56144c6565b5b6140df826144f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061413a826142b8565b9150614145836142b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417a57614179614439565b5b828201905092915050565b6000614190826142b8565b915061419b836142b8565b9250826141ab576141aa614468565b5b828204905092915050565b60006141c1826142b8565b91506141cc836142b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420557614204614439565b5b828202905092915050565b600061421b826142b8565b9150614226836142b8565b92508282101561423957614238614439565b5b828203905092915050565b600061424f82614298565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142ef5780820151818401526020810190506142d4565b838111156142fe576000848401525b50505050565b600061430f826142b8565b9150600082141561432357614322614439565b5b600182039050919050565b6000600282049050600182168061434657607f821691505b6020821081141561435a57614359614497565b5b50919050565b614369826144f5565b810181811067ffffffffffffffff82111715614388576143876144c6565b5b80604052505050565b600061439c826142b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143cf576143ce614439565b5b600182019050919050565b60006143e5826143f6565b9050919050565b6000819050919050565b600061440182614506565b9050919050565b6000614413826142b8565b915061441e836142b8565b92508261442e5761442d614468565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f616c6c6f77206c6973742073616c65206e6f74206c6976650000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d657373616765206265696e672073656e7420646f65736e2774206e6f74206d60008201527f61746368206f726967696e000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374732063616e6e6f74206d696e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f662e000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f6d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f455243373231723a206d696e74696e67206d6f726520746f6b656e732074686160008201527f6e20617661696c61626c65000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d696e74206f766572206d617800000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231723a206e65656420746f206d696e74206174206c65617374206f60008201527f6e6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206f76657220737570706c7900000000000000000000000000000000600082015250565b614b5781614244565b8114614b6257600080fd5b50565b614b6e81614256565b8114614b7957600080fd5b50565b614b8581614262565b8114614b9057600080fd5b50565b614b9c8161426c565b8114614ba757600080fd5b50565b614bb3816142b8565b8114614bbe57600080fd5b5056fea26469706673582212201dcee209b80cf214019581c52586c83356b7d1f0eaed1734fdd7c1e89d6b97e364736f6c63430008040033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063d29756851161006f578063d297568514610816578063d5abeb0114610841578063e985e9c51461086c578063ec8bda8e146108a9578063f2fde38b146108c55761023b565b8063b88d4fde14610745578063bc8893b41461076e578063bf62590614610799578063c87b56dd146107b0578063c9df29f6146107ed5761023b565b80638e04f5c0116100f25780638e04f5c01461067257806391b7f5ed1461069d57806395d89b41146106c6578063a22cb465146106f1578063b6c7ecf51461071a5761023b565b8063715018a6146105b15780637a742d94146105c85780637ad9895e146105f15780638b076b9b1461061c5780638da5cb5b146106475761023b565b806333ea51a8116101bc5780636352211e116101805780636352211e146104b8578063640adfef146104f557806366609acd1461051e5780636c0360eb1461054957806370a08231146105745761023b565b806333ea51a8146103fd5780633542aee2146104265780633ccfd60b1461044f57806342842e0e1461046657806355f804b31461048f5761023b565b806318160ddd1161020357806318160ddd1461032557806318ba2e021461035057806323b872dd1461037b5780632db11544146103a457806333006786146103c05761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e55780630c894cfe1461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906135f6565b6108ee565b6040516102749190613cd2565b60405180910390f35b34801561028957600080fd5b506102926109d0565b60405161029f9190613d08565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613689565b610a62565b6040516102dc9190613bed565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613539565b610ae7565b005b34801561031a57600080fd5b50610323610bff565b005b34801561033157600080fd5b5061033a610cce565b604051610347919061404a565b60405180910390f35b34801561035c57600080fd5b50610365610d03565b604051610372919061404a565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d91906133db565b610d09565b005b6103be60048036038101906103b99190613689565b610d69565b005b3480156103cc57600080fd5b506103e760048036038101906103e291906134a5565b610fc4565b6040516103f49190613cd2565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613376565b61104e565b005b34801561043257600080fd5b5061044d60048036038101906104489190613539565b61110e565b005b34801561045b57600080fd5b506104646111ef565b005b34801561047257600080fd5b5061048d600480360381019061048891906133db565b6112dc565b005b34801561049b57600080fd5b506104b660048036038101906104b19190613648565b6112fc565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613689565b611392565b6040516104ec9190613bed565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190613689565b611444565b005b34801561052a57600080fd5b506105336114ca565b604051610540919061404a565b60405180910390f35b34801561055557600080fd5b5061055e6114d0565b60405161056b9190613d08565b60405180910390f35b34801561058057600080fd5b5061059b60048036038101906105969190613376565b61155e565b6040516105a8919061404a565b60405180910390f35b3480156105bd57600080fd5b506105c6611616565b005b3480156105d457600080fd5b506105ef60048036038101906105ea91906135cd565b61169e565b005b3480156105fd57600080fd5b50610606611724565b604051610613919061404a565b60405180910390f35b34801561062857600080fd5b5061063161172a565b60405161063e9190613cd2565b60405180910390f35b34801561065357600080fd5b5061065c61173d565b6040516106699190613bed565b60405180910390f35b34801561067e57600080fd5b50610687611767565b604051610694919061404a565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190613689565b61176d565b005b3480156106d257600080fd5b506106db6117f3565b6040516106e89190613d08565b60405180910390f35b3480156106fd57600080fd5b50610718600480360381019061071391906134fd565b611885565b005b34801561072657600080fd5b5061072f61189b565b60405161073c9190613ced565b60405180910390f35b34801561075157600080fd5b5061076c6004803603810190610767919061342a565b6118a1565b005b34801561077a57600080fd5b50610783611903565b6040516107909190613cd2565b60405180910390f35b3480156107a557600080fd5b506107ae611916565b005b3480156107bc57600080fd5b506107d760048036038101906107d29190613689565b6119e5565b6040516107e49190613d08565b60405180910390f35b3480156107f957600080fd5b50610814600480360381019061080f9190613575565b611a8c565b005b34801561082257600080fd5b5061082b611bc0565b604051610838919061404a565b60405180910390f35b34801561084d57600080fd5b50610856611bc6565b604051610863919061404a565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e919061339f565b611bee565b6040516108a09190613cd2565b60405180910390f35b6108c360048036038101906108be91906136b2565b611c82565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613376565b611f98565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c957506109c882612090565b5b9050919050565b6060600080546109df9061432e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b9061432e565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b6000610a6d826120fa565b610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390613f2a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af282611392565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90613faa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b82612166565b73ffffffffffffffffffffffffffffffffffffffff161480610bb15750610bb081610bab612166565b611bee565b5b610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790613e6a565b60405180910390fd5b610bfa838361216e565b505050565b610c07612166565b73ffffffffffffffffffffffffffffffffffffffff16610c2561173d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290613f4a565b60405180910390fd5b600d60159054906101000a900460ff1615610cb0576000600d60156101000a81548160ff021916908315150217905550610ccc565b6001600d60156101000a81548160ff0219169083151502179055505b565b60006003547f0000000000000000000000000000000000000000000000000000000000002710610cfe9190614210565b905090565b600e5481565b610d1a610d14612166565b82612227565b610d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d509061400a565b60405180910390fd5b610d64838383612305565b505050565b600d60159054906101000a900460ff16610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90613e8a565b60405180910390fd5b60003390506000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690613d6a565b60405180910390fd5b600f548382610e7e919061412f565b1115610ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb690613f8a565b60405180910390fd5b600b5483610ecb610cce565b610ed5919061412f565b1115610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d9061402a565b60405180910390fd5b82601054610f2491906141b6565b341015610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d90613fea565b60405180910390fd5b8281610f72919061412f565b601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fbf338461256c565b505050565b60008084604051602001610fd89190613b82565b6040516020818303038152906040528051906020012090506000611040858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5484612784565b905080925050509392505050565b611056612166565b73ffffffffffffffffffffffffffffffffffffffff1661107461173d565b73ffffffffffffffffffffffffffffffffffffffff16146110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c190613f4a565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611116612166565b73ffffffffffffffffffffffffffffffffffffffff1661113461173d565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190613f4a565b60405180910390fd5b600b5481611196610cce565b6111a0919061412f565b11156111e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d89061402a565b60405180910390fd5b6111eb828261256c565b5050565b6111f7612166565b73ffffffffffffffffffffffffffffffffffffffff1661121561173d565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290613f4a565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112d8573d6000803e3d6000fd5b5050565b6112f7838383604051806020016040528060008152506118a1565b505050565b611304612166565b73ffffffffffffffffffffffffffffffffffffffff1661132261173d565b73ffffffffffffffffffffffffffffffffffffffff1614611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90613f4a565b60405180910390fd5b806009908051906020019061138e9291906130f1565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613eca565b60405180910390fd5b80915050919050565b61144c612166565b73ffffffffffffffffffffffffffffffffffffffff1661146a61173d565b73ffffffffffffffffffffffffffffffffffffffff16146114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790613f4a565b60405180910390fd5b80600f8190555050565b600f5481565b600980546114dd9061432e565b80601f01602080910402602001604051908101604052809291908181526020018280546115099061432e565b80156115565780601f1061152b57610100808354040283529160200191611556565b820191906000526020600020905b81548152906001019060200180831161153957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c690613eaa565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61161e612166565b73ffffffffffffffffffffffffffffffffffffffff1661163c61173d565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613f4a565b60405180910390fd5b61169c600061279b565b565b6116a6612166565b73ffffffffffffffffffffffffffffffffffffffff166116c461173d565b73ffffffffffffffffffffffffffffffffffffffff161461171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190613f4a565b60405180910390fd5b80600c8190555050565b600b5481565b600d60149054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60105481565b611775612166565b73ffffffffffffffffffffffffffffffffffffffff1661179361173d565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090613f4a565b60405180910390fd5b8060108190555050565b6060600180546118029061432e565b80601f016020809104026020016040519081016040528092919081815260200182805461182e9061432e565b801561187b5780601f106118505761010080835404028352916020019161187b565b820191906000526020600020905b81548152906001019060200180831161185e57829003601f168201915b5050505050905090565b611897611890612166565b8383612861565b5050565b600c5481565b6118b26118ac612166565b83612227565b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061400a565b60405180910390fd5b6118fd848484846129ce565b50505050565b600d60159054906101000a900460ff1681565b61191e612166565b73ffffffffffffffffffffffffffffffffffffffff1661193c61173d565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613f4a565b60405180910390fd5b600d60149054906101000a900460ff16156119c7576000600d60146101000a81548160ff0219169083151502179055506119e3565b6001600d60146101000a81548160ff0219169083151502179055505b565b60606119f0826120fa565b611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613f6a565b60405180910390fd5b6000611a39612a2a565b90506000815111611a595760405180602001604052806000815250611a84565b80611a6384612abc565b604051602001611a74929190613bc9565b6040516020818303038152906040525b915050919050565b611a94612166565b73ffffffffffffffffffffffffffffffffffffffff16611ab261173d565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90613f4a565b60405180910390fd5b60005b83839050811015611bba578160116000868685818110611b54577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611b699190613376565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611bb290614391565b915050611b0b565b50505050565b600a5481565b60007f0000000000000000000000000000000000000000000000000000000000002710905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60149054906101000a900460ff16611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890613d2a565b60405180910390fd5b60003390506000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600033604051602001611d2d9190613b82565b604051602081830303815290604052805190602001209050611d93858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612784565b611dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc990613e4a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3790613d6a565b60405180910390fd5b600e548683611e4f919061412f565b1115611e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8790613f8a565b60405180910390fd5b600b5486611e9c610cce565b611ea6919061412f565b1115611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede9061402a565b60405180910390fd5b85601054611ef591906141b6565b341015611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613fea565b60405180910390fd5b8582611f43919061412f565b601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f90338761256c565b505050505050565b611fa0612166565b73ffffffffffffffffffffffffffffffffffffffff16611fbe61173d565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90613f4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207b90613d8a565b60405180910390fd5b61208d8161279b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121e183611392565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612232826120fa565b612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890613e2a565b60405180910390fd5b600061227c83611392565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122eb57508373ffffffffffffffffffffffffffffffffffffffff166122d384610a62565b73ffffffffffffffffffffffffffffffffffffffff16145b806122fc57506122fb8185611bee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661232582611392565b73ffffffffffffffffffffffffffffffffffffffff161461237b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237290613daa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e290613dea565b60405180910390fd5b6123f6838383612c69565b61240160008261216e565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124519190614210565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124a8919061412f565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612567838383612c6e565b505050565b3273ffffffffffffffffffffffffffffffffffffffff1661258b612166565b73ffffffffffffffffffffffffffffffffffffffff16146125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613dca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264890613eea565b60405180910390fd5b60008111612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90613fca565b60405180910390fd5b8060035410156126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090613f0a565b60405180910390fd5b6000600354905060005b828110156127215760006126f78584612c73565b90506127038582612ce1565b8261270d90614304565b9250508061271a90614391565b90506126e3565b508060038190555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612778919061412f565b92505081905550505050565b6000826127918584612dab565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c790613e0a565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129c19190613cd2565b60405180910390a3505050565b6129d9848484612305565b6129e584848484612e84565b612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90613d4a565b60405180910390fd5b50505050565b606060098054612a399061432e565b80601f0160208091040260200160405190810160405280929190818152602001828054612a659061432e565b8015612ab25780601f10612a8757610100808354040283529160200191612ab2565b820191906000526020600020905b815481529060010190602001808311612a9557829003601f168201915b5050505050905090565b60606000821415612b04576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c64565b600082905060005b60008214612b36578080612b1f90614391565b915050600a82612b2f9190614185565b9150612b0c565b60008167ffffffffffffffff811115612b78577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612baa5781602001600182028036833780820191505090505b5090505b60008514612c5d57600182612bc39190614210565b9150600a85612bd29190614408565b6030612bde919061412f565b60f81b818381518110612c1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c569190614185565b9450612bae565b8093505050505b919050565b505050565b505050565b600080833a434244600143612c889190614210565b403089604051602001612ca2989796959493929190613c54565b6040516020818303038152906040528051906020012060001c905060008382612ccb9190614408565b9050612cd7818561301b565b9250505092915050565b612ced60008383612c69565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612da760008383612c6e565b5050565b60008082905060005b8451811015612e79576000858281518110612df8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311612e39578281604051602001612e1c929190613b9d565b604051602081830303815290604052805190602001209250612e65565b8083604051602001612e4c929190613b9d565b6040516020818303038152906040528051906020012092505b508080612e7190614391565b915050612db4565b508091505092915050565b6000612ea58473ffffffffffffffffffffffffffffffffffffffff166130de565b1561300e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ece612166565b8786866040518563ffffffff1660e01b8152600401612ef09493929190613c08565b602060405180830381600087803b158015612f0a57600080fd5b505af1925050508015612f3b57506040513d601f19601f82011682018060405250810190612f38919061361f565b60015b612fbe573d8060008114612f6b576040519150601f19603f3d011682016040523d82523d6000602084013e612f70565b606091505b50600081511415612fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fad90613d4a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613013565b600190505b949350505050565b600080600260008581526020019081526020016000205490506000808214156130465784905061304a565b8190505b60006001856130599190614210565b90508086146130d25760006002600083815260200190815260200160002054905060008114156130a0578160026000898152602001908152602001600020819055506130d0565b80600260008981526020019081526020016000208190555060026000838152602001908152602001600020600090555b505b81935050505092915050565b600080823b905060008111915050919050565b8280546130fd9061432e565b90600052602060002090601f01602090048101928261311f5760008555613166565b82601f1061313857805160ff1916838001178555613166565b82800160010185558215613166579182015b8281111561316557825182559160200191906001019061314a565b5b5090506131739190613177565b5090565b5b80821115613190576000816000905550600101613178565b5090565b60006131a76131a28461408a565b614065565b9050828152602081018484840111156131bf57600080fd5b6131ca8482856142c2565b509392505050565b60006131e56131e0846140bb565b614065565b9050828152602081018484840111156131fd57600080fd5b6132088482856142c2565b509392505050565b60008135905061321f81614b4e565b92915050565b60008083601f84011261323757600080fd5b8235905067ffffffffffffffff81111561325057600080fd5b60208301915083602082028301111561326857600080fd5b9250929050565b60008083601f84011261328157600080fd5b8235905067ffffffffffffffff81111561329a57600080fd5b6020830191508360208202830111156132b257600080fd5b9250929050565b6000813590506132c881614b65565b92915050565b6000813590506132dd81614b7c565b92915050565b6000813590506132f281614b93565b92915050565b60008151905061330781614b93565b92915050565b600082601f83011261331e57600080fd5b813561332e848260208601613194565b91505092915050565b600082601f83011261334857600080fd5b81356133588482602086016131d2565b91505092915050565b60008135905061337081614baa565b92915050565b60006020828403121561338857600080fd5b600061339684828501613210565b91505092915050565b600080604083850312156133b257600080fd5b60006133c085828601613210565b92505060206133d185828601613210565b9150509250929050565b6000806000606084860312156133f057600080fd5b60006133fe86828701613210565b935050602061340f86828701613210565b925050604061342086828701613361565b9150509250925092565b6000806000806080858703121561344057600080fd5b600061344e87828801613210565b945050602061345f87828801613210565b935050604061347087828801613361565b925050606085013567ffffffffffffffff81111561348d57600080fd5b6134998782880161330d565b91505092959194509250565b6000806000604084860312156134ba57600080fd5b60006134c886828701613210565b935050602084013567ffffffffffffffff8111156134e557600080fd5b6134f18682870161326f565b92509250509250925092565b6000806040838503121561351057600080fd5b600061351e85828601613210565b925050602061352f858286016132b9565b9150509250929050565b6000806040838503121561354c57600080fd5b600061355a85828601613210565b925050602061356b85828601613361565b9150509250929050565b60008060006040848603121561358a57600080fd5b600084013567ffffffffffffffff8111156135a457600080fd5b6135b086828701613225565b935093505060206135c386828701613361565b9150509250925092565b6000602082840312156135df57600080fd5b60006135ed848285016132ce565b91505092915050565b60006020828403121561360857600080fd5b6000613616848285016132e3565b91505092915050565b60006020828403121561363157600080fd5b600061363f848285016132f8565b91505092915050565b60006020828403121561365a57600080fd5b600082013567ffffffffffffffff81111561367457600080fd5b61368084828501613337565b91505092915050565b60006020828403121561369b57600080fd5b60006136a984828501613361565b91505092915050565b6000806000604084860312156136c757600080fd5b60006136d586828701613361565b935050602084013567ffffffffffffffff8111156136f257600080fd5b6136fe8682870161326f565b92509250509250925092565b61371381614244565b82525050565b61372a61372582614244565b6143da565b82525050565b61373981614256565b82525050565b61374881614262565b82525050565b61375f61375a82614262565b6143ec565b82525050565b6000613770826140ec565b61377a8185614102565b935061378a8185602086016142d1565b613793816144f5565b840191505092915050565b60006137a9826140f7565b6137b38185614113565b93506137c38185602086016142d1565b6137cc816144f5565b840191505092915050565b60006137e2826140f7565b6137ec8185614124565b93506137fc8185602086016142d1565b80840191505092915050565b6000613815601883614113565b915061382082614513565b602082019050919050565b6000613838603283614113565b91506138438261453c565b604082019050919050565b600061385b602b83614113565b91506138668261458b565b604082019050919050565b600061387e602683614113565b9150613889826145da565b604082019050919050565b60006138a1602583614113565b91506138ac82614629565b604082019050919050565b60006138c4601583614113565b91506138cf82614678565b602082019050919050565b60006138e7602483614113565b91506138f2826146a1565b604082019050919050565b600061390a601983614113565b9150613915826146f0565b602082019050919050565b600061392d602c83614113565b915061393882614719565b604082019050919050565b6000613950600e83614113565b915061395b82614768565b602082019050919050565b6000613973603883614113565b915061397e82614791565b604082019050919050565b6000613996600d83614113565b91506139a1826147e0565b602082019050919050565b60006139b9602a83614113565b91506139c482614809565b604082019050919050565b60006139dc602983614113565b91506139e782614858565b604082019050919050565b60006139ff602083614113565b9150613a0a826148a7565b602082019050919050565b6000613a22602b83614113565b9150613a2d826148d0565b604082019050919050565b6000613a45602c83614113565b9150613a508261491f565b604082019050919050565b6000613a68602083614113565b9150613a738261496e565b602082019050919050565b6000613a8b602f83614113565b9150613a9682614997565b604082019050919050565b6000613aae600d83614113565b9150613ab9826149e6565b602082019050919050565b6000613ad1602183614113565b9150613adc82614a0f565b604082019050919050565b6000613af4602883614113565b9150613aff82614a5e565b604082019050919050565b6000613b17601283614113565b9150613b2282614aad565b602082019050919050565b6000613b3a603183614113565b9150613b4582614ad6565b604082019050919050565b6000613b5d601083614113565b9150613b6882614b25565b602082019050919050565b613b7c816142b8565b82525050565b6000613b8e8284613719565b60148201915081905092915050565b6000613ba9828561374e565b602082019150613bb9828461374e565b6020820191508190509392505050565b6000613bd582856137d7565b9150613be182846137d7565b91508190509392505050565b6000602082019050613c02600083018461370a565b92915050565b6000608082019050613c1d600083018761370a565b613c2a602083018661370a565b613c376040830185613b73565b8181036060830152613c498184613765565b905095945050505050565b600061010082019050613c6a600083018b61370a565b613c77602083018a613b73565b613c846040830189613b73565b613c916060830188613b73565b613c9e6080830187613b73565b613cab60a083018661373f565b613cb860c083018561370a565b613cc560e0830184613b73565b9998505050505050505050565b6000602082019050613ce76000830184613730565b92915050565b6000602082019050613d02600083018461373f565b92915050565b60006020820190508181036000830152613d22818461379e565b905092915050565b60006020820190508181036000830152613d4381613808565b9050919050565b60006020820190508181036000830152613d638161382b565b9050919050565b60006020820190508181036000830152613d838161384e565b9050919050565b60006020820190508181036000830152613da381613871565b9050919050565b60006020820190508181036000830152613dc381613894565b9050919050565b60006020820190508181036000830152613de3816138b7565b9050919050565b60006020820190508181036000830152613e03816138da565b9050919050565b60006020820190508181036000830152613e23816138fd565b9050919050565b60006020820190508181036000830152613e4381613920565b9050919050565b60006020820190508181036000830152613e6381613943565b9050919050565b60006020820190508181036000830152613e8381613966565b9050919050565b60006020820190508181036000830152613ea381613989565b9050919050565b60006020820190508181036000830152613ec3816139ac565b9050919050565b60006020820190508181036000830152613ee3816139cf565b9050919050565b60006020820190508181036000830152613f03816139f2565b9050919050565b60006020820190508181036000830152613f2381613a15565b9050919050565b60006020820190508181036000830152613f4381613a38565b9050919050565b60006020820190508181036000830152613f6381613a5b565b9050919050565b60006020820190508181036000830152613f8381613a7e565b9050919050565b60006020820190508181036000830152613fa381613aa1565b9050919050565b60006020820190508181036000830152613fc381613ac4565b9050919050565b60006020820190508181036000830152613fe381613ae7565b9050919050565b6000602082019050818103600083015261400381613b0a565b9050919050565b6000602082019050818103600083015261402381613b2d565b9050919050565b6000602082019050818103600083015261404381613b50565b9050919050565b600060208201905061405f6000830184613b73565b92915050565b600061406f614080565b905061407b8282614360565b919050565b6000604051905090565b600067ffffffffffffffff8211156140a5576140a46144c6565b5b6140ae826144f5565b9050602081019050919050565b600067ffffffffffffffff8211156140d6576140d56144c6565b5b6140df826144f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061413a826142b8565b9150614145836142b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561417a57614179614439565b5b828201905092915050565b6000614190826142b8565b915061419b836142b8565b9250826141ab576141aa614468565b5b828204905092915050565b60006141c1826142b8565b91506141cc836142b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561420557614204614439565b5b828202905092915050565b600061421b826142b8565b9150614226836142b8565b92508282101561423957614238614439565b5b828203905092915050565b600061424f82614298565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142ef5780820151818401526020810190506142d4565b838111156142fe576000848401525b50505050565b600061430f826142b8565b9150600082141561432357614322614439565b5b600182039050919050565b6000600282049050600182168061434657607f821691505b6020821081141561435a57614359614497565b5b50919050565b614369826144f5565b810181811067ffffffffffffffff82111715614388576143876144c6565b5b80604052505050565b600061439c826142b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143cf576143ce614439565b5b600182019050919050565b60006143e5826143f6565b9050919050565b6000819050919050565b600061440182614506565b9050919050565b6000614413826142b8565b915061441e836142b8565b92508261442e5761442d614468565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f616c6c6f77206c6973742073616c65206e6f74206c6976650000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f6d657373616765206265696e672073656e7420646f65736e2774206e6f74206d60008201527f61746368206f726967696e000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374732063616e6e6f74206d696e740000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e76616c69642050726f6f662e000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f6d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f455243373231723a206d696e74696e67206d6f726520746f6b656e732074686160008201527f6e20617661696c61626c65000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d696e74206f766572206d617800000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231723a206e65656420746f206d696e74206174206c65617374206f60008201527f6e6520746f6b656e000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f6d696e74206f76657220737570706c7900000000000000000000000000000000600082015250565b614b5781614244565b8114614b6257600080fd5b50565b614b6e81614256565b8114614b7957600080fd5b50565b614b8581614262565b8114614b9057600080fd5b50565b614b9c8161426c565b8114614ba757600080fd5b50565b614bb3816142b8565b8114614bbe57600080fd5b5056fea26469706673582212201dcee209b80cf214019581c52586c83356b7d1f0eaed1734fdd7c1e89d6b97e364736f6c63430008040033
Loading...
Loading
Loading...
Loading
[ 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.