Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
5,000 S2TM-S1
Holders
1,489
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 S2TM-S1Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
S2TMPass
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: None pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract S2TMPass is Ownable, ERC721 { using SafeMath for uint256; using Strings for uint256; uint256 public mintPrice = 0.05 ether; uint256 public mintLimit = 10; uint256 public supplyLimit; bool public saleActive = false; string public baseURI = ""; uint256 public totalSupply = 0; uint256 devShare = 20; uint256 teamShare = 12; uint256 marketingShare = 8; address payable SCHILLER_ADDRESS = payable(0x376FFEff9820826a564A1BA05A464b9923862418); address payable SNAZZY_ADDRESS = payable(0x57a1fCc7c7F7d253414a85EF4658B5C68Dc3D63B); address payable SEAN_ADDRESS = payable(0xcdb1e7Acd76166CCcBb61c1d4cb86cc0C033EcFa); address payable RISK_ADDRESS = payable(0x17485802CcE36b50CDc8EA94422C7000879e444f); address payable JOSH_ADDRESS = payable(0x340e02c1306ebED52cDF90163C12Ab342e171916); address payable JARED_ADDRESS = payable(0x22DD354645Da9BB7e02434F54D62bB388e0c5120); address payable devAddress = payable(0x4d3FD3865A46cE2cEd63fA56562Ab932149E7d3C); address payable marketingAddress = payable(0xeE1AB23f8426Cd12AB67513202A08135Cf6B0d6A); /********* Events - Start *********/ event SaleStateChanged(bool _state); event SupplyLimitChanged(uint256 _supplyLimit); event MintLimitChanged(uint256 _mintLimit); event MintPriceChanged(uint256 _mintPrice); event BaseURIChanged(string _baseURI); event PassMinted(address indexed _user, uint256 indexed _tokenId, string _tokenURI); event ReservePass(uint256 _numberOfTokens); /********* Events - Ends *********/ constructor( uint256 tokenSupplyLimit, string memory _baseURI ) ERC721("S2TM Space Pass - Season 1", "S2TM-S1") { supplyLimit = tokenSupplyLimit; baseURI = _baseURI; emit SupplyLimitChanged(supplyLimit); emit MintLimitChanged(mintLimit); emit MintPriceChanged(mintPrice); emit BaseURIChanged(_baseURI); } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; emit BaseURIChanged(_baseURI); } function toggleSaleActive() external onlyOwner { saleActive = !saleActive; emit SaleStateChanged(saleActive); } function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner { require(_supplyLimit >= totalSupply, "Value should be greater than currently minted."); supplyLimit = _supplyLimit; emit SupplyLimitChanged(_supplyLimit); } function changeMintLimit(uint256 _mintLimit) external onlyOwner { mintLimit = _mintLimit; emit MintLimitChanged(_mintLimit); } function changeMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; emit MintPriceChanged(_mintPrice); } function buyPass(uint _numberOfTokens) external payable { require(saleActive, "Sale is not active."); require(_numberOfTokens <= mintLimit, "Too many tokens for one transaction."); require(msg.value >= mintPrice.mul(_numberOfTokens), "Insufficient payment."); _mintPass(_numberOfTokens); } function _mintPass(uint _numberOfTokens) internal { require(totalSupply.add(_numberOfTokens) <= supplyLimit, "Not enough tokens left."); uint256 newId = totalSupply; for(uint i = 0; i < _numberOfTokens; i++) { newId += 1; totalSupply = totalSupply.add(1); _safeMint(msg.sender, newId); emit PassMinted(msg.sender, newId, tokenURI(newId)); } } function reservePass(uint256 _numberOfTokens) external onlyOwner { _mintPass(_numberOfTokens); emit ReservePass(_numberOfTokens); } /* This function will send all contract balance to its contract owner. */ function emergencyWithdraw() external onlyOwner { require(address(this).balance > 0, "No funds in smart Contract."); (bool success, ) = owner().call{value: address(this).balance}(""); require(success, "Withdraw Failed."); } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } function withdraw() external onlyOwner { require(address(this).balance > 0, "No funds in smart Contract."); bool success; uint256 totalDevShare = address(this).balance.mul(devShare).div(100); uint256 totalTeamShare = address(this).balance.mul(teamShare).div(100); uint256 totalMarketingShare = address(this).balance.mul(marketingShare).div(100); (success, ) = devAddress.call{value: totalDevShare}(""); (success, ) = SCHILLER_ADDRESS.call{value: totalTeamShare}(""); (success, ) = SNAZZY_ADDRESS.call{value: totalTeamShare}(""); (success, ) = SEAN_ADDRESS.call{value: totalTeamShare}(""); (success, ) = RISK_ADDRESS.call{value: totalTeamShare}(""); (success, ) = JARED_ADDRESS.call{value: totalTeamShare}(""); (success, ) = JOSH_ADDRESS.call{value: totalTeamShare}(""); (success, ) = marketingAddress.call{value: totalMarketingShare}(""); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"tokenSupplyLimit","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","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":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"PassMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"ReservePass","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","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":"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":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"buyPass","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"changeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"reservePass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"toggleSaleActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405266b1a2bc2ec50000600755600a6008556000600a60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600b908051906020019062000056929190620005e4565b506000600c556014600d55600c600e556008600f5573376ffeff9820826a564a1ba05a464b9923862418601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507357a1fcc7c7f7d253414a85ef4658b5c68dc3d63b601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cdb1e7acd76166cccbb61c1d4cb86cc0c033ecfa601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507317485802cce36b50cdc8ea94422c7000879e444f601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073340e02c1306ebed52cdf90163c12ab342e171916601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507322dd354645da9bb7e02434f54d62bb388e0c5120601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734d3fd3865a46ce2ced63fa56562ab932149e7d3c601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ee1ab23f8426cd12ab67513202a08135cf6b0d6a601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200032057600080fd5b5060405162004d4738038062004d4783398181016040528101906200034691906200071d565b6040518060400160405280601a81526020017f5332544d2053706163652050617373202d20536561736f6e20310000000000008152506040518060400160405280600781526020017f5332544d2d533100000000000000000000000000000000000000000000000000815250620003d2620003c66200051860201b60201c565b6200052060201b60201c565b8160019080519060200190620003ea929190620005e4565b50806002908051906020019062000403929190620005e4565b5050508160098190555080600b908051906020019062000425929190620005e4565b507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07600954604051620004599190620007ed565b60405180910390a17f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab600854604051620004949190620007ed565b60405180910390a17f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f600754604051620004cf9190620007ed565b60405180910390a17f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051620005089190620007c9565b60405180910390a15050620009ba565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005f290620008c5565b90600052602060002090601f01602090048101928262000616576000855562000662565b82601f106200063157805160ff191683800117855562000662565b8280016001018555821562000662579182015b828111156200066157825182559160200191906001019062000644565b5b50905062000671919062000675565b5090565b5b808211156200069057600081600090555060010162000676565b5090565b6000620006ab620006a58462000833565b6200080a565b905082815260208101848484011115620006c457600080fd5b620006d18482856200088f565b509392505050565b600082601f830112620006eb57600080fd5b8151620006fd84826020860162000694565b91505092915050565b6000815190506200071781620009a0565b92915050565b600080604083850312156200073157600080fd5b6000620007418582860162000706565b925050602083015167ffffffffffffffff8111156200075f57600080fd5b6200076d85828601620006d9565b9150509250929050565b6000620007848262000869565b62000790818562000874565b9350620007a28185602086016200088f565b620007ad816200098f565b840191505092915050565b620007c38162000885565b82525050565b60006020820190508181036000830152620007e5818462000777565b905092915050565b6000602082019050620008046000830184620007b8565b92915050565b60006200081662000829565b9050620008248282620008fb565b919050565b6000604051905090565b600067ffffffffffffffff82111562000851576200085062000960565b5b6200085c826200098f565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620008af57808201518184015260208101905062000892565b83811115620008bf576000848401525b50505050565b60006002820490506001821680620008de57607f821691505b60208210811415620008f557620008f462000931565b5b50919050565b62000906826200098f565b810181811067ffffffffffffffff8211171562000928576200092762000960565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620009ab8162000885565b8114620009b757600080fd5b50565b61437d80620009ca6000396000f3fe6080604052600436106101d85760003560e01c80636817c76c11610102578063a22cb46511610095578063d44e357311610064578063d44e357314610663578063db2e21bc1461068c578063e985e9c5146106a3578063f2fde38b146106e0576101d8565b8063a22cb465146105ab578063b88d4fde146105d4578063c87b56dd146105fd578063cc23bb491461063a576101d8565b8063715018a6116100d1578063715018a6146105135780638da5cb5b1461052a57806395d89b4114610555578063996517cf14610580576101d8565b80636817c76c1461045557806368428a1b146104805780636c0360eb146104ab57806370a08231146104d6576101d8565b80633100a5351161017a5780633fd17366116101495780633fd173661461039d57806342842e0e146103c657806355f804b3146103ef5780636352211e14610418576101d8565b80633100a5351461032a5780633420f9b31461034157806334259b5c1461035d5780633ccfd60b14610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806319d1997a146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f9b565b610709565b604051610211919061358e565b60405180910390f35b34801561022657600080fd5b5061022f6107eb565b60405161023c91906135a9565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061302e565b61087d565b6040516102799190613527565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612f5f565b610902565b005b3480156102b757600080fd5b506102c0610a1a565b6040516102cd91906138ab565b60405180910390f35b3480156102e257600080fd5b506102eb610a20565b6040516102f891906138ab565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612e59565b610a26565b005b34801561033657600080fd5b5061033f610a86565b005b61035b6004803603810190610356919061302e565b610b74565b005b34801561036957600080fd5b50610384600480360381019061037f919061302e565b610c6b565b005b34801561039257600080fd5b5061039b610d28565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061302e565b6112e2565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612e59565b61139f565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612fed565b6113bf565b005b34801561042457600080fd5b5061043f600480360381019061043a919061302e565b61148c565b60405161044c9190613527565b60405180910390f35b34801561046157600080fd5b5061046a61153e565b60405161047791906138ab565b60405180910390f35b34801561048c57600080fd5b50610495611544565b6040516104a2919061358e565b60405180910390f35b3480156104b757600080fd5b506104c0611557565b6040516104cd91906135a9565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612df4565b6115e5565b60405161050a91906138ab565b60405180910390f35b34801561051f57600080fd5b5061052861169d565b005b34801561053657600080fd5b5061053f611725565b60405161054c9190613527565b60405180910390f35b34801561056157600080fd5b5061056a61174e565b60405161057791906135a9565b60405180910390f35b34801561058c57600080fd5b506105956117e0565b6040516105a291906138ab565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612f23565b6117e6565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612ea8565b611967565b005b34801561060957600080fd5b50610624600480360381019061061f919061302e565b6119c9565b60405161063191906135a9565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061302e565b611a71565b005b34801561066f57600080fd5b5061068a6004803603810190610685919061302e565b611b30565b005b34801561069857600080fd5b506106a1611c32565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612e1d565b611da7565b6040516106d7919061358e565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190612df4565b611e3b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e457506107e382611f33565b5b9050919050565b6060600180546107fa90613b7b565b80601f016020809104026020016040519081016040528092919081815260200182805461082690613b7b565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611f9d565b6108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be9061378b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090d8261148c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061382b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099d612009565b73ffffffffffffffffffffffffffffffffffffffff1614806109cc57506109cb816109c6612009565b611da7565b5b610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a029061370b565b60405180910390fd5b610a158383612011565b505050565b600c5481565b60095481565b610a37610a31612009565b826120ca565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061384b565b60405180910390fd5b610a818383836121a8565b505050565b610a8e612009565b73ffffffffffffffffffffffffffffffffffffffff16610aac611725565b73ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906137ab565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602600a60009054906101000a900460ff16604051610b6a919061358e565b60405180910390a1565b600a60009054906101000a900460ff16610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba9061380b565b60405180910390fd5b600854811115610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061364b565b60405180910390fd5b610c1d8160075461240490919063ffffffff16565b341015610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c569061386b565b60405180910390fd5b610c688161241a565b50565b610c73612009565b73ffffffffffffffffffffffffffffffffffffffff16610c91611725565b73ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde906137ab565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab81604051610d1d91906138ab565b60405180910390a150565b610d30612009565b73ffffffffffffffffffffffffffffffffffffffff16610d4e611725565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906137ab565b60405180910390fd5b60004711610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906136eb565b60405180910390fd5b600080610e126064610e04600d544761240490919063ffffffff16565b61252990919063ffffffff16565b90506000610e3e6064610e30600e544761240490919063ffffffff16565b61252990919063ffffffff16565b90506000610e6a6064610e5c600f544761240490919063ffffffff16565b61252990919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610eb290613512565b60006040518083038185875af1925050503d8060008114610eef576040519150601f19603f3d011682016040523d82523d6000602084013e610ef4565b606091505b505080945050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f4090613512565b60006040518083038185875af1925050503d8060008114610f7d576040519150601f19603f3d011682016040523d82523d6000602084013e610f82565b606091505b505080945050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610fce90613512565b60006040518083038185875af1925050503d806000811461100b576040519150601f19603f3d011682016040523d82523d6000602084013e611010565b606091505b505080945050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161105c90613512565b60006040518083038185875af1925050503d8060008114611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b505080945050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110ea90613512565b60006040518083038185875af1925050503d8060008114611127576040519150601f19603f3d011682016040523d82523d6000602084013e61112c565b606091505b505080945050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161117890613512565b60006040518083038185875af1925050503d80600081146111b5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ba565b606091505b505080945050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161120690613512565b60006040518083038185875af1925050503d8060008114611243576040519150601f19603f3d011682016040523d82523d6000602084013e611248565b606091505b505080945050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161129490613512565b60006040518083038185875af1925050503d80600081146112d1576040519150601f19603f3d011682016040523d82523d6000602084013e6112d6565b606091505b50508094505050505050565b6112ea612009565b73ffffffffffffffffffffffffffffffffffffffff16611308611725565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906137ab565b60405180910390fd5b806007819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f8160405161139491906138ab565b60405180910390a150565b6113ba83838360405180602001604052806000815250611967565b505050565b6113c7612009565b73ffffffffffffffffffffffffffffffffffffffff166113e5611725565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906137ab565b60405180910390fd5b80600b9080519060200190611451929190612c18565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68160405161148191906135a9565b60405180910390a150565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c9061374b565b60405180910390fd5b80915050919050565b60075481565b600a60009054906101000a900460ff1681565b600b805461156490613b7b565b80601f016020809104026020016040519081016040528092919081815260200182805461159090613b7b565b80156115dd5780601f106115b2576101008083540402835291602001916115dd565b820191906000526020600020905b8154815290600101906020018083116115c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d9061372b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116a5612009565b73ffffffffffffffffffffffffffffffffffffffff166116c3611725565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611710906137ab565b60405180910390fd5b611723600061253f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461175d90613b7b565b80601f016020809104026020016040519081016040528092919081815260200182805461178990613b7b565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b5050505050905090565b60085481565b6117ee612009565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906136ab565b60405180910390fd5b8060066000611869612009565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611916612009565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161195b919061358e565b60405180910390a35050565b611978611972612009565b836120ca565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae9061384b565b60405180910390fd5b6119c384848484612603565b50505050565b60606119d482611f9d565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906137eb565b60405180910390fd5b6000600b8054611a2290613b7b565b905011611a3e5760405180602001604052806000815250611a6a565b600b611a498361265f565b604051602001611a5a9291906134ee565b6040516020818303038152906040525b9050919050565b611a79612009565b73ffffffffffffffffffffffffffffffffffffffff16611a97611725565b73ffffffffffffffffffffffffffffffffffffffff1614611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906137ab565b60405180910390fd5b611af68161241a565b7f9d85e718538d5b42eddf198587808af9a6e7e86abce7d4f159ff3294aa368cdc81604051611b2591906138ab565b60405180910390a150565b611b38612009565b73ffffffffffffffffffffffffffffffffffffffff16611b56611725565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba3906137ab565b60405180910390fd5b600c54811015611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906135cb565b60405180910390fd5b806009819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0781604051611c2791906138ab565b60405180910390a150565b611c3a612009565b73ffffffffffffffffffffffffffffffffffffffff16611c58611725565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca5906137ab565b60405180910390fd5b60004711611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906136eb565b60405180910390fd5b6000611cfb611725565b73ffffffffffffffffffffffffffffffffffffffff1647604051611d1e90613512565b60006040518083038185875af1925050503d8060008114611d5b576040519150601f19603f3d011682016040523d82523d6000602084013e611d60565b606091505b5050905080611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061388b565b60405180910390fd5b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e43612009565b73ffffffffffffffffffffffffffffffffffffffff16611e61611725565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae906137ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e9061360b565b60405180910390fd5b611f308161253f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120848361148c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120d582611f9d565b612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b906136cb565b60405180910390fd5b600061211f8361148c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218e57508373ffffffffffffffffffffffffffffffffffffffff166121768461087d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061219f575061219e8185611da7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121c88261148c565b73ffffffffffffffffffffffffffffffffffffffff161461221e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612215906137cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561228e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122859061368b565b60405180910390fd5b61229983838361280c565b6122a4600082612011565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f49190613a91565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234b91906139b0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836124129190613a37565b905092915050565b60095461243282600c5461281190919063ffffffff16565b1115612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a9061366b565b60405180910390fd5b6000600c54905060005b828110156125245760018261249291906139b0565b91506124aa6001600c5461281190919063ffffffff16565b600c819055506124ba3383612827565b813373ffffffffffffffffffffffffffffffffffffffff167ffe50b82eeba2105881a3f6226ad65d6b795c6321c8786a273598829b94a76b806124fc856119c9565b60405161250991906135a9565b60405180910390a3808061251c90613bde565b91505061247d565b505050565b600081836125379190613a06565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260e8484846121a8565b61261a84848484612845565b612659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612650906135eb565b60405180910390fd5b50505050565b606060008214156126a7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612807565b600082905060005b600082146126d95780806126c290613bde565b915050600a826126d29190613a06565b91506126af565b60008167ffffffffffffffff81111561271b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561274d5781602001600182028036833780820191505090505b5090505b60008514612800576001826127669190613a91565b9150600a856127759190613c27565b603061278191906139b0565b60f81b8183815181106127bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127f99190613a06565b9450612751565b8093505050505b919050565b505050565b6000818361281f91906139b0565b905092915050565b6128418282604051806020016040528060008152506129dc565b5050565b60006128668473ffffffffffffffffffffffffffffffffffffffff16612a37565b156129cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261288f612009565b8786866040518563ffffffff1660e01b81526004016128b19493929190613542565b602060405180830381600087803b1580156128cb57600080fd5b505af19250505080156128fc57506040513d601f19601f820116820180604052508101906128f99190612fc4565b60015b61297f573d806000811461292c576040519150601f19603f3d011682016040523d82523d6000602084013e612931565b606091505b50600081511415612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e906135eb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129d4565b600190505b949350505050565b6129e68383612a4a565b6129f36000848484612845565b612a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a29906135eb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab19061376b565b60405180910390fd5b612ac381611f9d565b15612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa9061362b565b60405180910390fd5b612b0f6000838361280c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b5f91906139b0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612c2490613b7b565b90600052602060002090601f016020900481019282612c465760008555612c8d565b82601f10612c5f57805160ff1916838001178555612c8d565b82800160010185558215612c8d579182015b82811115612c8c578251825591602001919060010190612c71565b5b509050612c9a9190612c9e565b5090565b5b80821115612cb7576000816000905550600101612c9f565b5090565b6000612cce612cc9846138eb565b6138c6565b905082815260208101848484011115612ce657600080fd5b612cf1848285613b39565b509392505050565b6000612d0c612d078461391c565b6138c6565b905082815260208101848484011115612d2457600080fd5b612d2f848285613b39565b509392505050565b600081359050612d46816142eb565b92915050565b600081359050612d5b81614302565b92915050565b600081359050612d7081614319565b92915050565b600081519050612d8581614319565b92915050565b600082601f830112612d9c57600080fd5b8135612dac848260208601612cbb565b91505092915050565b600082601f830112612dc657600080fd5b8135612dd6848260208601612cf9565b91505092915050565b600081359050612dee81614330565b92915050565b600060208284031215612e0657600080fd5b6000612e1484828501612d37565b91505092915050565b60008060408385031215612e3057600080fd5b6000612e3e85828601612d37565b9250506020612e4f85828601612d37565b9150509250929050565b600080600060608486031215612e6e57600080fd5b6000612e7c86828701612d37565b9350506020612e8d86828701612d37565b9250506040612e9e86828701612ddf565b9150509250925092565b60008060008060808587031215612ebe57600080fd5b6000612ecc87828801612d37565b9450506020612edd87828801612d37565b9350506040612eee87828801612ddf565b925050606085013567ffffffffffffffff811115612f0b57600080fd5b612f1787828801612d8b565b91505092959194509250565b60008060408385031215612f3657600080fd5b6000612f4485828601612d37565b9250506020612f5585828601612d4c565b9150509250929050565b60008060408385031215612f7257600080fd5b6000612f8085828601612d37565b9250506020612f9185828601612ddf565b9150509250929050565b600060208284031215612fad57600080fd5b6000612fbb84828501612d61565b91505092915050565b600060208284031215612fd657600080fd5b6000612fe484828501612d76565b91505092915050565b600060208284031215612fff57600080fd5b600082013567ffffffffffffffff81111561301957600080fd5b61302584828501612db5565b91505092915050565b60006020828403121561304057600080fd5b600061304e84828501612ddf565b91505092915050565b61306081613ac5565b82525050565b61306f81613ad7565b82525050565b600061308082613962565b61308a8185613978565b935061309a818560208601613b48565b6130a381613d14565b840191505092915050565b60006130b98261396d565b6130c38185613994565b93506130d3818560208601613b48565b6130dc81613d14565b840191505092915050565b60006130f28261396d565b6130fc81856139a5565b935061310c818560208601613b48565b80840191505092915050565b6000815461312581613b7b565b61312f81866139a5565b9450600182166000811461314a576001811461315b5761318e565b60ff1983168652818601935061318e565b6131648561394d565b60005b8381101561318657815481890152600182019150602081019050613167565b838801955050505b50505092915050565b60006131a4602e83613994565b91506131af82613d25565b604082019050919050565b60006131c7603283613994565b91506131d282613d74565b604082019050919050565b60006131ea602683613994565b91506131f582613dc3565b604082019050919050565b600061320d601c83613994565b915061321882613e12565b602082019050919050565b6000613230602483613994565b915061323b82613e3b565b604082019050919050565b6000613253601783613994565b915061325e82613e8a565b602082019050919050565b6000613276602483613994565b915061328182613eb3565b604082019050919050565b6000613299601983613994565b91506132a482613f02565b602082019050919050565b60006132bc602c83613994565b91506132c782613f2b565b604082019050919050565b60006132df601b83613994565b91506132ea82613f7a565b602082019050919050565b6000613302603883613994565b915061330d82613fa3565b604082019050919050565b6000613325602a83613994565b915061333082613ff2565b604082019050919050565b6000613348602983613994565b915061335382614041565b604082019050919050565b600061336b602083613994565b915061337682614090565b602082019050919050565b600061338e602c83613994565b9150613399826140b9565b604082019050919050565b60006133b1602083613994565b91506133bc82614108565b602082019050919050565b60006133d4602983613994565b91506133df82614131565b604082019050919050565b60006133f7602f83613994565b915061340282614180565b604082019050919050565b600061341a601383613994565b9150613425826141cf565b602082019050919050565b600061343d602183613994565b9150613448826141f8565b604082019050919050565b6000613460600083613989565b915061346b82614247565b600082019050919050565b6000613483603183613994565b915061348e8261424a565b604082019050919050565b60006134a6601583613994565b91506134b182614299565b602082019050919050565b60006134c9601083613994565b91506134d4826142c2565b602082019050919050565b6134e881613b2f565b82525050565b60006134fa8285613118565b915061350682846130e7565b91508190509392505050565b600061351d82613453565b9150819050919050565b600060208201905061353c6000830184613057565b92915050565b60006080820190506135576000830187613057565b6135646020830186613057565b61357160408301856134df565b81810360608301526135838184613075565b905095945050505050565b60006020820190506135a36000830184613066565b92915050565b600060208201905081810360008301526135c381846130ae565b905092915050565b600060208201905081810360008301526135e481613197565b9050919050565b60006020820190508181036000830152613604816131ba565b9050919050565b60006020820190508181036000830152613624816131dd565b9050919050565b6000602082019050818103600083015261364481613200565b9050919050565b6000602082019050818103600083015261366481613223565b9050919050565b6000602082019050818103600083015261368481613246565b9050919050565b600060208201905081810360008301526136a481613269565b9050919050565b600060208201905081810360008301526136c48161328c565b9050919050565b600060208201905081810360008301526136e4816132af565b9050919050565b60006020820190508181036000830152613704816132d2565b9050919050565b60006020820190508181036000830152613724816132f5565b9050919050565b6000602082019050818103600083015261374481613318565b9050919050565b600060208201905081810360008301526137648161333b565b9050919050565b600060208201905081810360008301526137848161335e565b9050919050565b600060208201905081810360008301526137a481613381565b9050919050565b600060208201905081810360008301526137c4816133a4565b9050919050565b600060208201905081810360008301526137e4816133c7565b9050919050565b60006020820190508181036000830152613804816133ea565b9050919050565b600060208201905081810360008301526138248161340d565b9050919050565b6000602082019050818103600083015261384481613430565b9050919050565b6000602082019050818103600083015261386481613476565b9050919050565b6000602082019050818103600083015261388481613499565b9050919050565b600060208201905081810360008301526138a4816134bc565b9050919050565b60006020820190506138c060008301846134df565b92915050565b60006138d06138e1565b90506138dc8282613bad565b919050565b6000604051905090565b600067ffffffffffffffff82111561390657613905613ce5565b5b61390f82613d14565b9050602081019050919050565b600067ffffffffffffffff82111561393757613936613ce5565b5b61394082613d14565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139bb82613b2f565b91506139c683613b2f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139fb576139fa613c58565b5b828201905092915050565b6000613a1182613b2f565b9150613a1c83613b2f565b925082613a2c57613a2b613c87565b5b828204905092915050565b6000613a4282613b2f565b9150613a4d83613b2f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8657613a85613c58565b5b828202905092915050565b6000613a9c82613b2f565b9150613aa783613b2f565b925082821015613aba57613ab9613c58565b5b828203905092915050565b6000613ad082613b0f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b66578082015181840152602081019050613b4b565b83811115613b75576000848401525b50505050565b60006002820490506001821680613b9357607f821691505b60208210811415613ba757613ba6613cb6565b5b50919050565b613bb682613d14565b810181811067ffffffffffffffff82111715613bd557613bd4613ce5565b5b80604052505050565b6000613be982613b2f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1c57613c1b613c58565b5b600182019050919050565b6000613c3282613b2f565b9150613c3d83613b2f565b925082613c4d57613c4c613c87565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f56616c75652073686f756c642062652067726561746572207468616e2063757260008201527f72656e746c79206d696e7465642e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f2066756e647320696e20736d61727420436f6e74726163742e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f5769746864726177204661696c65642e00000000000000000000000000000000600082015250565b6142f481613ac5565b81146142ff57600080fd5b50565b61430b81613ad7565b811461431657600080fd5b50565b61432281613ae3565b811461432d57600080fd5b50565b61433981613b2f565b811461434457600080fd5b5056fea264697066735822122003633f2b26ca8e30231299b6daf8234913f64f930ec375fd6d6a2c1a0cdda43d64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5136454e664745687875476a6f4d7479446f7a31786955466271796e64365437776d696f414c59346e4e50342f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636817c76c11610102578063a22cb46511610095578063d44e357311610064578063d44e357314610663578063db2e21bc1461068c578063e985e9c5146106a3578063f2fde38b146106e0576101d8565b8063a22cb465146105ab578063b88d4fde146105d4578063c87b56dd146105fd578063cc23bb491461063a576101d8565b8063715018a6116100d1578063715018a6146105135780638da5cb5b1461052a57806395d89b4114610555578063996517cf14610580576101d8565b80636817c76c1461045557806368428a1b146104805780636c0360eb146104ab57806370a08231146104d6576101d8565b80633100a5351161017a5780633fd17366116101495780633fd173661461039d57806342842e0e146103c657806355f804b3146103ef5780636352211e14610418576101d8565b80633100a5351461032a5780633420f9b31461034157806334259b5c1461035d5780633ccfd60b14610386576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806319d1997a146102d657806323b872dd14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f9b565b610709565b604051610211919061358e565b60405180910390f35b34801561022657600080fd5b5061022f6107eb565b60405161023c91906135a9565b60405180910390f35b34801561025157600080fd5b5061026c6004803603810190610267919061302e565b61087d565b6040516102799190613527565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612f5f565b610902565b005b3480156102b757600080fd5b506102c0610a1a565b6040516102cd91906138ab565b60405180910390f35b3480156102e257600080fd5b506102eb610a20565b6040516102f891906138ab565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190612e59565b610a26565b005b34801561033657600080fd5b5061033f610a86565b005b61035b6004803603810190610356919061302e565b610b74565b005b34801561036957600080fd5b50610384600480360381019061037f919061302e565b610c6b565b005b34801561039257600080fd5b5061039b610d28565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061302e565b6112e2565b005b3480156103d257600080fd5b506103ed60048036038101906103e89190612e59565b61139f565b005b3480156103fb57600080fd5b5061041660048036038101906104119190612fed565b6113bf565b005b34801561042457600080fd5b5061043f600480360381019061043a919061302e565b61148c565b60405161044c9190613527565b60405180910390f35b34801561046157600080fd5b5061046a61153e565b60405161047791906138ab565b60405180910390f35b34801561048c57600080fd5b50610495611544565b6040516104a2919061358e565b60405180910390f35b3480156104b757600080fd5b506104c0611557565b6040516104cd91906135a9565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f89190612df4565b6115e5565b60405161050a91906138ab565b60405180910390f35b34801561051f57600080fd5b5061052861169d565b005b34801561053657600080fd5b5061053f611725565b60405161054c9190613527565b60405180910390f35b34801561056157600080fd5b5061056a61174e565b60405161057791906135a9565b60405180910390f35b34801561058c57600080fd5b506105956117e0565b6040516105a291906138ab565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd9190612f23565b6117e6565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612ea8565b611967565b005b34801561060957600080fd5b50610624600480360381019061061f919061302e565b6119c9565b60405161063191906135a9565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c919061302e565b611a71565b005b34801561066f57600080fd5b5061068a6004803603810190610685919061302e565b611b30565b005b34801561069857600080fd5b506106a1611c32565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612e1d565b611da7565b6040516106d7919061358e565b60405180910390f35b3480156106ec57600080fd5b5061070760048036038101906107029190612df4565b611e3b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e457506107e382611f33565b5b9050919050565b6060600180546107fa90613b7b565b80601f016020809104026020016040519081016040528092919081815260200182805461082690613b7b565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611f9d565b6108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be9061378b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090d8261148c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109759061382b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661099d612009565b73ffffffffffffffffffffffffffffffffffffffff1614806109cc57506109cb816109c6612009565b611da7565b5b610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a029061370b565b60405180910390fd5b610a158383612011565b505050565b600c5481565b60095481565b610a37610a31612009565b826120ca565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061384b565b60405180910390fd5b610a818383836121a8565b505050565b610a8e612009565b73ffffffffffffffffffffffffffffffffffffffff16610aac611725565b73ffffffffffffffffffffffffffffffffffffffff1614610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906137ab565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602600a60009054906101000a900460ff16604051610b6a919061358e565b60405180910390a1565b600a60009054906101000a900460ff16610bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bba9061380b565b60405180910390fd5b600854811115610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff9061364b565b60405180910390fd5b610c1d8160075461240490919063ffffffff16565b341015610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c569061386b565b60405180910390fd5b610c688161241a565b50565b610c73612009565b73ffffffffffffffffffffffffffffffffffffffff16610c91611725565b73ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde906137ab565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab81604051610d1d91906138ab565b60405180910390a150565b610d30612009565b73ffffffffffffffffffffffffffffffffffffffff16610d4e611725565b73ffffffffffffffffffffffffffffffffffffffff1614610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906137ab565b60405180910390fd5b60004711610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906136eb565b60405180910390fd5b600080610e126064610e04600d544761240490919063ffffffff16565b61252990919063ffffffff16565b90506000610e3e6064610e30600e544761240490919063ffffffff16565b61252990919063ffffffff16565b90506000610e6a6064610e5c600f544761240490919063ffffffff16565b61252990919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610eb290613512565b60006040518083038185875af1925050503d8060008114610eef576040519150601f19603f3d011682016040523d82523d6000602084013e610ef4565b606091505b505080945050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f4090613512565b60006040518083038185875af1925050503d8060008114610f7d576040519150601f19603f3d011682016040523d82523d6000602084013e610f82565b606091505b505080945050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610fce90613512565b60006040518083038185875af1925050503d806000811461100b576040519150601f19603f3d011682016040523d82523d6000602084013e611010565b606091505b505080945050601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161105c90613512565b60006040518083038185875af1925050503d8060008114611099576040519150601f19603f3d011682016040523d82523d6000602084013e61109e565b606091505b505080945050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110ea90613512565b60006040518083038185875af1925050503d8060008114611127576040519150601f19603f3d011682016040523d82523d6000602084013e61112c565b606091505b505080945050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161117890613512565b60006040518083038185875af1925050503d80600081146111b5576040519150601f19603f3d011682016040523d82523d6000602084013e6111ba565b606091505b505080945050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161120690613512565b60006040518083038185875af1925050503d8060008114611243576040519150601f19603f3d011682016040523d82523d6000602084013e611248565b606091505b505080945050601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161129490613512565b60006040518083038185875af1925050503d80600081146112d1576040519150601f19603f3d011682016040523d82523d6000602084013e6112d6565b606091505b50508094505050505050565b6112ea612009565b73ffffffffffffffffffffffffffffffffffffffff16611308611725565b73ffffffffffffffffffffffffffffffffffffffff161461135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906137ab565b60405180910390fd5b806007819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f8160405161139491906138ab565b60405180910390a150565b6113ba83838360405180602001604052806000815250611967565b505050565b6113c7612009565b73ffffffffffffffffffffffffffffffffffffffff166113e5611725565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906137ab565b60405180910390fd5b80600b9080519060200190611451929190612c18565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68160405161148191906135a9565b60405180910390a150565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152c9061374b565b60405180910390fd5b80915050919050565b60075481565b600a60009054906101000a900460ff1681565b600b805461156490613b7b565b80601f016020809104026020016040519081016040528092919081815260200182805461159090613b7b565b80156115dd5780601f106115b2576101008083540402835291602001916115dd565b820191906000526020600020905b8154815290600101906020018083116115c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d9061372b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116a5612009565b73ffffffffffffffffffffffffffffffffffffffff166116c3611725565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611710906137ab565b60405180910390fd5b611723600061253f565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461175d90613b7b565b80601f016020809104026020016040519081016040528092919081815260200182805461178990613b7b565b80156117d65780601f106117ab576101008083540402835291602001916117d6565b820191906000526020600020905b8154815290600101906020018083116117b957829003601f168201915b5050505050905090565b60085481565b6117ee612009565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611853906136ab565b60405180910390fd5b8060066000611869612009565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611916612009565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161195b919061358e565b60405180910390a35050565b611978611972612009565b836120ca565b6119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ae9061384b565b60405180910390fd5b6119c384848484612603565b50505050565b60606119d482611f9d565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906137eb565b60405180910390fd5b6000600b8054611a2290613b7b565b905011611a3e5760405180602001604052806000815250611a6a565b600b611a498361265f565b604051602001611a5a9291906134ee565b6040516020818303038152906040525b9050919050565b611a79612009565b73ffffffffffffffffffffffffffffffffffffffff16611a97611725565b73ffffffffffffffffffffffffffffffffffffffff1614611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906137ab565b60405180910390fd5b611af68161241a565b7f9d85e718538d5b42eddf198587808af9a6e7e86abce7d4f159ff3294aa368cdc81604051611b2591906138ab565b60405180910390a150565b611b38612009565b73ffffffffffffffffffffffffffffffffffffffff16611b56611725565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba3906137ab565b60405180910390fd5b600c54811015611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906135cb565b60405180910390fd5b806009819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0781604051611c2791906138ab565b60405180910390a150565b611c3a612009565b73ffffffffffffffffffffffffffffffffffffffff16611c58611725565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca5906137ab565b60405180910390fd5b60004711611cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce8906136eb565b60405180910390fd5b6000611cfb611725565b73ffffffffffffffffffffffffffffffffffffffff1647604051611d1e90613512565b60006040518083038185875af1925050503d8060008114611d5b576040519150601f19603f3d011682016040523d82523d6000602084013e611d60565b606091505b5050905080611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061388b565b60405180910390fd5b50565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e43612009565b73ffffffffffffffffffffffffffffffffffffffff16611e61611725565b73ffffffffffffffffffffffffffffffffffffffff1614611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae906137ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e9061360b565b60405180910390fd5b611f308161253f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120848361148c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006120d582611f9d565b612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b906136cb565b60405180910390fd5b600061211f8361148c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061218e57508373ffffffffffffffffffffffffffffffffffffffff166121768461087d565b73ffffffffffffffffffffffffffffffffffffffff16145b8061219f575061219e8185611da7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121c88261148c565b73ffffffffffffffffffffffffffffffffffffffff161461221e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612215906137cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561228e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122859061368b565b60405180910390fd5b61229983838361280c565b6122a4600082612011565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f49190613a91565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234b91906139b0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836124129190613a37565b905092915050565b60095461243282600c5461281190919063ffffffff16565b1115612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a9061366b565b60405180910390fd5b6000600c54905060005b828110156125245760018261249291906139b0565b91506124aa6001600c5461281190919063ffffffff16565b600c819055506124ba3383612827565b813373ffffffffffffffffffffffffffffffffffffffff167ffe50b82eeba2105881a3f6226ad65d6b795c6321c8786a273598829b94a76b806124fc856119c9565b60405161250991906135a9565b60405180910390a3808061251c90613bde565b91505061247d565b505050565b600081836125379190613a06565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61260e8484846121a8565b61261a84848484612845565b612659576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612650906135eb565b60405180910390fd5b50505050565b606060008214156126a7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612807565b600082905060005b600082146126d95780806126c290613bde565b915050600a826126d29190613a06565b91506126af565b60008167ffffffffffffffff81111561271b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561274d5781602001600182028036833780820191505090505b5090505b60008514612800576001826127669190613a91565b9150600a856127759190613c27565b603061278191906139b0565b60f81b8183815181106127bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127f99190613a06565b9450612751565b8093505050505b919050565b505050565b6000818361281f91906139b0565b905092915050565b6128418282604051806020016040528060008152506129dc565b5050565b60006128668473ffffffffffffffffffffffffffffffffffffffff16612a37565b156129cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261288f612009565b8786866040518563ffffffff1660e01b81526004016128b19493929190613542565b602060405180830381600087803b1580156128cb57600080fd5b505af19250505080156128fc57506040513d601f19601f820116820180604052508101906128f99190612fc4565b60015b61297f573d806000811461292c576040519150601f19603f3d011682016040523d82523d6000602084013e612931565b606091505b50600081511415612977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296e906135eb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129d4565b600190505b949350505050565b6129e68383612a4a565b6129f36000848484612845565b612a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a29906135eb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab19061376b565b60405180910390fd5b612ac381611f9d565b15612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa9061362b565b60405180910390fd5b612b0f6000838361280c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b5f91906139b0565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612c2490613b7b565b90600052602060002090601f016020900481019282612c465760008555612c8d565b82601f10612c5f57805160ff1916838001178555612c8d565b82800160010185558215612c8d579182015b82811115612c8c578251825591602001919060010190612c71565b5b509050612c9a9190612c9e565b5090565b5b80821115612cb7576000816000905550600101612c9f565b5090565b6000612cce612cc9846138eb565b6138c6565b905082815260208101848484011115612ce657600080fd5b612cf1848285613b39565b509392505050565b6000612d0c612d078461391c565b6138c6565b905082815260208101848484011115612d2457600080fd5b612d2f848285613b39565b509392505050565b600081359050612d46816142eb565b92915050565b600081359050612d5b81614302565b92915050565b600081359050612d7081614319565b92915050565b600081519050612d8581614319565b92915050565b600082601f830112612d9c57600080fd5b8135612dac848260208601612cbb565b91505092915050565b600082601f830112612dc657600080fd5b8135612dd6848260208601612cf9565b91505092915050565b600081359050612dee81614330565b92915050565b600060208284031215612e0657600080fd5b6000612e1484828501612d37565b91505092915050565b60008060408385031215612e3057600080fd5b6000612e3e85828601612d37565b9250506020612e4f85828601612d37565b9150509250929050565b600080600060608486031215612e6e57600080fd5b6000612e7c86828701612d37565b9350506020612e8d86828701612d37565b9250506040612e9e86828701612ddf565b9150509250925092565b60008060008060808587031215612ebe57600080fd5b6000612ecc87828801612d37565b9450506020612edd87828801612d37565b9350506040612eee87828801612ddf565b925050606085013567ffffffffffffffff811115612f0b57600080fd5b612f1787828801612d8b565b91505092959194509250565b60008060408385031215612f3657600080fd5b6000612f4485828601612d37565b9250506020612f5585828601612d4c565b9150509250929050565b60008060408385031215612f7257600080fd5b6000612f8085828601612d37565b9250506020612f9185828601612ddf565b9150509250929050565b600060208284031215612fad57600080fd5b6000612fbb84828501612d61565b91505092915050565b600060208284031215612fd657600080fd5b6000612fe484828501612d76565b91505092915050565b600060208284031215612fff57600080fd5b600082013567ffffffffffffffff81111561301957600080fd5b61302584828501612db5565b91505092915050565b60006020828403121561304057600080fd5b600061304e84828501612ddf565b91505092915050565b61306081613ac5565b82525050565b61306f81613ad7565b82525050565b600061308082613962565b61308a8185613978565b935061309a818560208601613b48565b6130a381613d14565b840191505092915050565b60006130b98261396d565b6130c38185613994565b93506130d3818560208601613b48565b6130dc81613d14565b840191505092915050565b60006130f28261396d565b6130fc81856139a5565b935061310c818560208601613b48565b80840191505092915050565b6000815461312581613b7b565b61312f81866139a5565b9450600182166000811461314a576001811461315b5761318e565b60ff1983168652818601935061318e565b6131648561394d565b60005b8381101561318657815481890152600182019150602081019050613167565b838801955050505b50505092915050565b60006131a4602e83613994565b91506131af82613d25565b604082019050919050565b60006131c7603283613994565b91506131d282613d74565b604082019050919050565b60006131ea602683613994565b91506131f582613dc3565b604082019050919050565b600061320d601c83613994565b915061321882613e12565b602082019050919050565b6000613230602483613994565b915061323b82613e3b565b604082019050919050565b6000613253601783613994565b915061325e82613e8a565b602082019050919050565b6000613276602483613994565b915061328182613eb3565b604082019050919050565b6000613299601983613994565b91506132a482613f02565b602082019050919050565b60006132bc602c83613994565b91506132c782613f2b565b604082019050919050565b60006132df601b83613994565b91506132ea82613f7a565b602082019050919050565b6000613302603883613994565b915061330d82613fa3565b604082019050919050565b6000613325602a83613994565b915061333082613ff2565b604082019050919050565b6000613348602983613994565b915061335382614041565b604082019050919050565b600061336b602083613994565b915061337682614090565b602082019050919050565b600061338e602c83613994565b9150613399826140b9565b604082019050919050565b60006133b1602083613994565b91506133bc82614108565b602082019050919050565b60006133d4602983613994565b91506133df82614131565b604082019050919050565b60006133f7602f83613994565b915061340282614180565b604082019050919050565b600061341a601383613994565b9150613425826141cf565b602082019050919050565b600061343d602183613994565b9150613448826141f8565b604082019050919050565b6000613460600083613989565b915061346b82614247565b600082019050919050565b6000613483603183613994565b915061348e8261424a565b604082019050919050565b60006134a6601583613994565b91506134b182614299565b602082019050919050565b60006134c9601083613994565b91506134d4826142c2565b602082019050919050565b6134e881613b2f565b82525050565b60006134fa8285613118565b915061350682846130e7565b91508190509392505050565b600061351d82613453565b9150819050919050565b600060208201905061353c6000830184613057565b92915050565b60006080820190506135576000830187613057565b6135646020830186613057565b61357160408301856134df565b81810360608301526135838184613075565b905095945050505050565b60006020820190506135a36000830184613066565b92915050565b600060208201905081810360008301526135c381846130ae565b905092915050565b600060208201905081810360008301526135e481613197565b9050919050565b60006020820190508181036000830152613604816131ba565b9050919050565b60006020820190508181036000830152613624816131dd565b9050919050565b6000602082019050818103600083015261364481613200565b9050919050565b6000602082019050818103600083015261366481613223565b9050919050565b6000602082019050818103600083015261368481613246565b9050919050565b600060208201905081810360008301526136a481613269565b9050919050565b600060208201905081810360008301526136c48161328c565b9050919050565b600060208201905081810360008301526136e4816132af565b9050919050565b60006020820190508181036000830152613704816132d2565b9050919050565b60006020820190508181036000830152613724816132f5565b9050919050565b6000602082019050818103600083015261374481613318565b9050919050565b600060208201905081810360008301526137648161333b565b9050919050565b600060208201905081810360008301526137848161335e565b9050919050565b600060208201905081810360008301526137a481613381565b9050919050565b600060208201905081810360008301526137c4816133a4565b9050919050565b600060208201905081810360008301526137e4816133c7565b9050919050565b60006020820190508181036000830152613804816133ea565b9050919050565b600060208201905081810360008301526138248161340d565b9050919050565b6000602082019050818103600083015261384481613430565b9050919050565b6000602082019050818103600083015261386481613476565b9050919050565b6000602082019050818103600083015261388481613499565b9050919050565b600060208201905081810360008301526138a4816134bc565b9050919050565b60006020820190506138c060008301846134df565b92915050565b60006138d06138e1565b90506138dc8282613bad565b919050565b6000604051905090565b600067ffffffffffffffff82111561390657613905613ce5565b5b61390f82613d14565b9050602081019050919050565b600067ffffffffffffffff82111561393757613936613ce5565b5b61394082613d14565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139bb82613b2f565b91506139c683613b2f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139fb576139fa613c58565b5b828201905092915050565b6000613a1182613b2f565b9150613a1c83613b2f565b925082613a2c57613a2b613c87565b5b828204905092915050565b6000613a4282613b2f565b9150613a4d83613b2f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a8657613a85613c58565b5b828202905092915050565b6000613a9c82613b2f565b9150613aa783613b2f565b925082821015613aba57613ab9613c58565b5b828203905092915050565b6000613ad082613b0f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b66578082015181840152602081019050613b4b565b83811115613b75576000848401525b50505050565b60006002820490506001821680613b9357607f821691505b60208210811415613ba757613ba6613cb6565b5b50919050565b613bb682613d14565b810181811067ffffffffffffffff82111715613bd557613bd4613ce5565b5b80604052505050565b6000613be982613b2f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1c57613c1b613c58565b5b600182019050919050565b6000613c3282613b2f565b9150613c3d83613b2f565b925082613c4d57613c4c613c87565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f56616c75652073686f756c642062652067726561746572207468616e2063757260008201527f72656e746c79206d696e7465642e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6f206d616e7920746f6b656e7320666f72206f6e65207472616e7361637460008201527f696f6e2e00000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4e6f2066756e647320696e20736d61727420436f6e74726163742e0000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e74207061796d656e742e0000000000000000000000600082015250565b7f5769746864726177204661696c65642e00000000000000000000000000000000600082015250565b6142f481613ac5565b81146142ff57600080fd5b50565b61430b81613ad7565b811461431657600080fd5b50565b61432281613ae3565b811461432d57600080fd5b50565b61433981613b2f565b811461434457600080fd5b5056fea264697066735822122003633f2b26ca8e30231299b6daf8234913f64f930ec375fd6d6a2c1a0cdda43d64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5136454e664745687875476a6f4d7479446f7a31786955466271796e64365437776d696f414c59346e4e50342f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenSupplyLimit (uint256): 5000
Arg [1] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmQ6ENfGEhxuGjoMtyDoz1xiUFbqynd6T7wmioALY4nNP4/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d5136454e664745687875476a6f4d7479446f7a31786955466271796e
Arg [5] : 64365437776d696f414c59346e4e50342f000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.