Overview
TokenID
46
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Repus
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: Unlicensed pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } interface ArtifactsInterface { function burnAsBurner( address from, uint256 tokenId, uint256 amount ) external; function balanceOf(address account, uint256 tokenID) external view returns (uint256 balance); } interface SSSInterface { function balanceOf(address owner) external view returns (uint256 balance); } contract Repus is ERC721, Ownable { uint256 public totalSupply = 0; address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; address private _manager = 0xf5383b4e0d3EDDA3B6c091e51AbE58F882c98ce3; uint256 private constant ARTIFACT_ID = 1; string public baseUri = ""; string public endingUri = ".json"; string private revealedBaseURI; bool public saleIsActive = true; ArtifactsInterface artifactsContract; SSSInterface sssContract; constructor(address artifactsAddress, address sssAddress) ERC721("The Repus", "REPUS") { artifactsContract = ArtifactsInterface(artifactsAddress); sssContract = SSSInterface(sssAddress); } receive() external payable {} modifier onlyOwnerOrManager() { require( owner() == _msgSender() || _manager == _msgSender(), "Caller not the owner or manager" ); _; } function setManager(address manager) external onlyOwnerOrManager { _manager = manager; } function setArtifactsContract(address _artifactsContract) external onlyOwnerOrManager { artifactsContract = ArtifactsInterface(_artifactsContract); } function setSSSContract(address _sssContract) external onlyOwnerOrManager { sssContract = SSSInterface(_sssContract); } function withdraw() public onlyOwnerOrManager { payable(msg.sender).transfer(address(this).balance); } function mint(uint256 amount) external { require( artifactsContract.balanceOf(msg.sender, ARTIFACT_ID) >= amount, "not enough artifacts" ); require(sssContract.balanceOf(msg.sender) > 0, "not an sss owner"); artifactsContract.burnAsBurner(msg.sender, ARTIFACT_ID, amount); for (uint256 i = 0; i < amount; i++) { _mint(msg.sender, totalSupply); totalSupply = totalSupply + 1; } } function setBaseURI(string calldata _URI) external onlyOwnerOrManager { baseUri = _URI; } function setRevealedBaseURI(string calldata URI) external onlyOwnerOrManager { revealedBaseURI = URI; } function setEndingURI(string calldata _URI) external onlyOwnerOrManager { endingUri = _URI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { return bytes(revealedBaseURI).length > 0 ? string(abi.encodePacked(super.tokenURI(_tokenId), endingUri)) : baseUri; } function _baseURI() internal view override(ERC721) returns (string memory) { return revealedBaseURI; } function setProxyRegistry(address preg) external onlyOwnerOrManager { proxyRegistryAddress = preg; } function isApprovedForAll(address owner, address operator) public view override returns (bool) { ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"artifactsAddress","type":"address"},{"internalType":"address","name":"sssAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endingUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","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":"address","name":"_artifactsContract","type":"address"}],"name":"setArtifactsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setEndingURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"preg","type":"address"}],"name":"setProxyRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sssContract","type":"address"}],"name":"setSSSContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600060075573a5409ec958c83c3f309868babaca7c86dcb077c1600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f5383b4e0d3edda3b6c091e51abe58f882c98ce3600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180602001604052806000815250600a9080519060200190620000da9291906200038f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620001289291906200038f565b506001600d60006101000a81548160ff0219169083151502179055503480156200015157600080fd5b506040516200469e3803806200469e833981810160405281019062000177919062000456565b6040518060400160405280600981526020017f54686520526570757300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f52455055530000000000000000000000000000000000000000000000000000008152508160009080519060200190620001fb9291906200038f565b508060019080519060200190620002149291906200038f565b505050620002376200022b620002c160201b60201c565b620002c960201b60201c565b81600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200054a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200039d90620004cb565b90600052602060002090601f016020900481019282620003c157600085556200040d565b82601f10620003dc57805160ff19168380011785556200040d565b828001600101855582156200040d579182015b828111156200040c578251825591602001919060010190620003ef565b5b5090506200041c919062000420565b5090565b5b808211156200043b57600081600090555060010162000421565b5090565b600081519050620004508162000530565b92915050565b600080604083850312156200046a57600080fd5b60006200047a858286016200043f565b92505060206200048d858286016200043f565b9150509250929050565b6000620004a482620004ab565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004e457607f821691505b60208210811415620004fb57620004fa62000501565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200053b8162000497565b81146200054757600080fd5b50565b614144806200055a6000396000f3fe6080604052600436106101d15760003560e01c806395d89b41116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610655578063eb8d244414610692578063f2fde38b146106bd578063fc9b55ea146106e6576101d8565b8063c87b56dd1461059b578063cd7c0326146105d8578063d0ebdbe714610603578063da2c77111461062c576101d8565b8063a0712d68116100d1578063a0712d68146104f7578063a22cb46514610520578063adfdeef914610549578063b88d4fde14610572576101d8565b806395d89b4114610476578063962ef00d146104a15780639abc8320146104cc576101d8565b80633ccfd60b1161016f5780636e83843a1161013e5780636e83843a146103ce57806370a08231146103f7578063715018a6146104345780638da5cb5b1461044b576101d8565b80633ccfd60b1461032857806342842e0e1461033f57806355f804b3146103685780636352211e14610391576101d8565b8063095ea7b3116101ab578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d6578063242877c5146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f2c565b61070f565b6040516102119190613535565b60405180910390f35b34801561022657600080fd5b5061022f6107f1565b60405161023c9190613550565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612fec565b610883565b604051610279919061346e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612ef0565b610908565b005b3480156102b757600080fd5b506102c0610a20565b6040516102cd91906137d2565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612dea565b610a26565b005b34801561030b57600080fd5b5061032660048036038101906103219190612fa7565b610a86565b005b34801561033457600080fd5b5061033d610b77565b005b34801561034b57600080fd5b5061036660048036038101906103619190612dea565b610c9b565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612fa7565b610cbb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612fec565b610dac565b6040516103c5919061346e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612fa7565b610e5e565b005b34801561040357600080fd5b5061041e60048036038101906104199190612d85565b610f4f565b60405161042b91906137d2565b60405180910390f35b34801561044057600080fd5b50610449611007565b005b34801561045757600080fd5b5061046061108f565b60405161046d919061346e565b60405180910390f35b34801561048257600080fd5b5061048b6110b9565b6040516104989190613550565b60405180910390f35b3480156104ad57600080fd5b506104b661114b565b6040516104c39190613550565b60405180910390f35b3480156104d857600080fd5b506104e16111d9565b6040516104ee9190613550565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190612fec565b611267565b005b34801561052c57600080fd5b5061054760048036038101906105429190612eb4565b611518565b005b34801561055557600080fd5b50610570600480360381019061056b9190612d85565b61152e565b005b34801561057e57600080fd5b5061059960048036038101906105949190612e39565b61164d565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612fec565b6116af565b6040516105cf9190613550565b60405180910390f35b3480156105e457600080fd5b506105ed61178a565b6040516105fa919061346e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612d85565b6117b0565b005b34801561063857600080fd5b50610653600480360381019061064e9190612d85565b6118cf565b005b34801561066157600080fd5b5061067c60048036038101906106779190612dae565b6119ee565b6040516106899190613535565b60405180910390f35b34801561069e57600080fd5b506106a7611af0565b6040516106b49190613535565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612d85565b611b03565b005b3480156106f257600080fd5b5061070d60048036038101906107089190612d85565b611bfb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ea57506107e982611d1a565b5b9050919050565b60606000805461080090613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90613a1e565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b600061088e82611d84565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c4906136f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091382610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90613772565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611df0565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611df0565b6119ee565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890613672565b60405180910390fd5b610a1b8383611df8565b505050565b60075481565b610a37610a31611df0565b82611eb1565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613792565b60405180910390fd5b610a81838383611f8f565b505050565b610a8e611df0565b73ffffffffffffffffffffffffffffffffffffffff16610aac61108f565b73ffffffffffffffffffffffffffffffffffffffff161480610b225750610ad1611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b58906137b2565b60405180910390fd5b8181600b9190610b72929190612b9d565b505050565b610b7f611df0565b73ffffffffffffffffffffffffffffffffffffffff16610b9d61108f565b73ffffffffffffffffffffffffffffffffffffffff161480610c135750610bc2611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906137b2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c98573d6000803e3d6000fd5b50565b610cb68383836040518060200160405280600081525061164d565b505050565b610cc3611df0565b73ffffffffffffffffffffffffffffffffffffffff16610ce161108f565b73ffffffffffffffffffffffffffffffffffffffff161480610d575750610d06611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906137b2565b60405180910390fd5b8181600a9190610da7929190612b9d565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906136b2565b60405180910390fd5b80915050919050565b610e66611df0565b73ffffffffffffffffffffffffffffffffffffffff16610e8461108f565b73ffffffffffffffffffffffffffffffffffffffff161480610efa5750610ea9611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906137b2565b60405180910390fd5b8181600c9190610f4a929190612b9d565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790613692565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61100f611df0565b73ffffffffffffffffffffffffffffffffffffffff1661102d61108f565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90613732565b60405180910390fd5b61108d60006121f6565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110c890613a1e565b80601f01602080910402602001604051908101604052809291908181526020018280546110f490613a1e565b80156111415780601f1061111657610100808354040283529160200191611141565b820191906000526020600020905b81548152906001019060200180831161112457829003601f168201915b5050505050905090565b600b805461115890613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461118490613a1e565b80156111d15780601f106111a6576101008083540402835291602001916111d1565b820191906000526020600020905b8154815290600101906020018083116111b457829003601f168201915b505050505081565b600a80546111e690613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461121290613a1e565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b505050505081565b80600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360016040518363ffffffff1660e01b81526004016112c59291906134d5565b60206040518083038186803b1580156112dd57600080fd5b505afa1580156112f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113159190613015565b1015611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90613712565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113b3919061346e565b60206040518083038186803b1580156113cb57600080fd5b505afa1580156113df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114039190613015565b11611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613572565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166357bc9fd4336001846040518463ffffffff1660e01b81526004016114a3939291906134fe565b600060405180830381600087803b1580156114bd57600080fd5b505af11580156114d1573d6000803e3d6000fd5b5050505060005b81811015611514576114ec336007546122bc565b60016007546114fb919061389b565b600781905550808061150c90613a81565b9150506114d8565b5050565b61152a611523611df0565b8383612496565b5050565b611536611df0565b73ffffffffffffffffffffffffffffffffffffffff1661155461108f565b73ffffffffffffffffffffffffffffffffffffffff1614806115ca5750611579611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906137b2565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61165e611658611df0565b83611eb1565b61169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613792565b60405180910390fd5b6116a984848484612603565b50505050565b60606000600c80546116c090613a1e565b90501161175757600a80546116d490613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461170090613a1e565b801561174d5780601f106117225761010080835404028352916020019161174d565b820191906000526020600020905b81548152906001019060200180831161173057829003601f168201915b5050505050611783565b6117608261265f565b600b60405160200161177392919061344a565b6040516020818303038152906040525b9050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117b8611df0565b73ffffffffffffffffffffffffffffffffffffffff166117d661108f565b73ffffffffffffffffffffffffffffffffffffffff16148061184c57506117fb611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906137b2565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118d7611df0565b73ffffffffffffffffffffffffffffffffffffffff166118f561108f565b73ffffffffffffffffffffffffffffffffffffffff16148061196b575061191a611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a1906137b2565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a66919061346e565b60206040518083038186803b158015611a7e57600080fd5b505afa158015611a92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab69190612f7e565b73ffffffffffffffffffffffffffffffffffffffff161415611adc576001915050611aea565b611ae68484612706565b9150505b92915050565b600d60009054906101000a900460ff1681565b611b0b611df0565b73ffffffffffffffffffffffffffffffffffffffff16611b2961108f565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613732565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be6906135b2565b60405180910390fd5b611bf8816121f6565b50565b611c03611df0565b73ffffffffffffffffffffffffffffffffffffffff16611c2161108f565b73ffffffffffffffffffffffffffffffffffffffff161480611c975750611c46611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd906137b2565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6b83610dac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ebc82611d84565b611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613652565b60405180910390fd5b6000611f0683610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7557508373ffffffffffffffffffffffffffffffffffffffff16611f5d84610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f865750611f8581856119ee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611faf82610dac565b73ffffffffffffffffffffffffffffffffffffffff1614612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc906135d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90613612565b60405180910390fd5b61208083838361279a565b61208b600082611df8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120db9190613922565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612132919061389b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f183838361279f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612323906136d2565b60405180910390fd5b61233581611d84565b15612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c906135f2565b60405180910390fd5b6123816000838361279a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d1919061389b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124926000838361279f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90613632565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125f69190613535565b60405180910390a3505050565b61260e848484611f8f565b61261a848484846127a4565b612659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265090613592565b60405180910390fd5b50505050565b606061266a82611d84565b6126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090613752565b60405180910390fd5b60006126b361293b565b905060008151116126d357604051806020016040528060008152506126fe565b806126dd846129cd565b6040516020016126ee929190613426565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b60006127c58473ffffffffffffffffffffffffffffffffffffffff16612b7a565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ee611df0565b8786866040518563ffffffff1660e01b81526004016128109493929190613489565b602060405180830381600087803b15801561282a57600080fd5b505af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190612f55565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd90613592565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b6060600c805461294a90613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461297690613a1e565b80156129c35780601f10612998576101008083540402835291602001916129c3565b820191906000526020600020905b8154815290600101906020018083116129a657829003601f168201915b5050505050905090565b60606000821415612a15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b75565b600082905060005b60008214612a47578080612a3090613a81565b915050600a82612a4091906138f1565b9150612a1d565b60008167ffffffffffffffff811115612a89577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612abb5781602001600182028036833780820191505090505b5090505b60008514612b6e57600182612ad49190613922565b9150600a85612ae39190613aca565b6030612aef919061389b565b60f81b818381518110612b2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b6791906138f1565b9450612abf565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ba990613a1e565b90600052602060002090601f016020900481019282612bcb5760008555612c12565b82601f10612be457803560ff1916838001178555612c12565b82800160010185558215612c12579182015b82811115612c11578235825591602001919060010190612bf6565b5b509050612c1f9190612c23565b5090565b5b80821115612c3c576000816000905550600101612c24565b5090565b6000612c53612c4e84613812565b6137ed565b905082815260208101848484011115612c6b57600080fd5b612c768482856139dc565b509392505050565b600081359050612c8d8161409b565b92915050565b600081359050612ca2816140b2565b92915050565b600081359050612cb7816140c9565b92915050565b600081519050612ccc816140c9565b92915050565b600082601f830112612ce357600080fd5b8135612cf3848260208601612c40565b91505092915050565b600081519050612d0b816140e0565b92915050565b60008083601f840112612d2357600080fd5b8235905067ffffffffffffffff811115612d3c57600080fd5b602083019150836001820283011115612d5457600080fd5b9250929050565b600081359050612d6a816140f7565b92915050565b600081519050612d7f816140f7565b92915050565b600060208284031215612d9757600080fd5b6000612da584828501612c7e565b91505092915050565b60008060408385031215612dc157600080fd5b6000612dcf85828601612c7e565b9250506020612de085828601612c7e565b9150509250929050565b600080600060608486031215612dff57600080fd5b6000612e0d86828701612c7e565b9350506020612e1e86828701612c7e565b9250506040612e2f86828701612d5b565b9150509250925092565b60008060008060808587031215612e4f57600080fd5b6000612e5d87828801612c7e565b9450506020612e6e87828801612c7e565b9350506040612e7f87828801612d5b565b925050606085013567ffffffffffffffff811115612e9c57600080fd5b612ea887828801612cd2565b91505092959194509250565b60008060408385031215612ec757600080fd5b6000612ed585828601612c7e565b9250506020612ee685828601612c93565b9150509250929050565b60008060408385031215612f0357600080fd5b6000612f1185828601612c7e565b9250506020612f2285828601612d5b565b9150509250929050565b600060208284031215612f3e57600080fd5b6000612f4c84828501612ca8565b91505092915050565b600060208284031215612f6757600080fd5b6000612f7584828501612cbd565b91505092915050565b600060208284031215612f9057600080fd5b6000612f9e84828501612cfc565b91505092915050565b60008060208385031215612fba57600080fd5b600083013567ffffffffffffffff811115612fd457600080fd5b612fe085828601612d11565b92509250509250929050565b600060208284031215612ffe57600080fd5b600061300c84828501612d5b565b91505092915050565b60006020828403121561302757600080fd5b600061303584828501612d70565b91505092915050565b61304781613956565b82525050565b61305681613968565b82525050565b600061306782613858565b613071818561386e565b93506130818185602086016139eb565b61308a81613bb7565b840191505092915050565b60006130a082613863565b6130aa818561387f565b93506130ba8185602086016139eb565b6130c381613bb7565b840191505092915050565b60006130d982613863565b6130e38185613890565b93506130f38185602086016139eb565b80840191505092915050565b6000815461310c81613a1e565b6131168186613890565b94506001821660008114613131576001811461314257613175565b60ff19831686528186019350613175565b61314b85613843565b60005b8381101561316d5781548189015260018201915060208101905061314e565b838801955050505b50505092915050565b600061318b60108361387f565b915061319682613bc8565b602082019050919050565b60006131ae60328361387f565b91506131b982613bf1565b604082019050919050565b60006131d160268361387f565b91506131dc82613c40565b604082019050919050565b60006131f460258361387f565b91506131ff82613c8f565b604082019050919050565b6000613217601c8361387f565b915061322282613cde565b602082019050919050565b600061323a60248361387f565b915061324582613d07565b604082019050919050565b600061325d60198361387f565b915061326882613d56565b602082019050919050565b6000613280602c8361387f565b915061328b82613d7f565b604082019050919050565b60006132a360388361387f565b91506132ae82613dce565b604082019050919050565b60006132c6602a8361387f565b91506132d182613e1d565b604082019050919050565b60006132e960298361387f565b91506132f482613e6c565b604082019050919050565b600061330c60208361387f565b915061331782613ebb565b602082019050919050565b600061332f602c8361387f565b915061333a82613ee4565b604082019050919050565b600061335260148361387f565b915061335d82613f33565b602082019050919050565b600061337560208361387f565b915061338082613f5c565b602082019050919050565b6000613398602f8361387f565b91506133a382613f85565b604082019050919050565b60006133bb60218361387f565b91506133c682613fd4565b604082019050919050565b60006133de60318361387f565b91506133e982614023565b604082019050919050565b6000613401601f8361387f565b915061340c82614072565b602082019050919050565b613420816139d2565b82525050565b600061343282856130ce565b915061343e82846130ce565b91508190509392505050565b600061345682856130ce565b915061346282846130ff565b91508190509392505050565b6000602082019050613483600083018461303e565b92915050565b600060808201905061349e600083018761303e565b6134ab602083018661303e565b6134b86040830185613417565b81810360608301526134ca818461305c565b905095945050505050565b60006040820190506134ea600083018561303e565b6134f76020830184613417565b9392505050565b6000606082019050613513600083018661303e565b6135206020830185613417565b61352d6040830184613417565b949350505050565b600060208201905061354a600083018461304d565b92915050565b6000602082019050818103600083015261356a8184613095565b905092915050565b6000602082019050818103600083015261358b8161317e565b9050919050565b600060208201905081810360008301526135ab816131a1565b9050919050565b600060208201905081810360008301526135cb816131c4565b9050919050565b600060208201905081810360008301526135eb816131e7565b9050919050565b6000602082019050818103600083015261360b8161320a565b9050919050565b6000602082019050818103600083015261362b8161322d565b9050919050565b6000602082019050818103600083015261364b81613250565b9050919050565b6000602082019050818103600083015261366b81613273565b9050919050565b6000602082019050818103600083015261368b81613296565b9050919050565b600060208201905081810360008301526136ab816132b9565b9050919050565b600060208201905081810360008301526136cb816132dc565b9050919050565b600060208201905081810360008301526136eb816132ff565b9050919050565b6000602082019050818103600083015261370b81613322565b9050919050565b6000602082019050818103600083015261372b81613345565b9050919050565b6000602082019050818103600083015261374b81613368565b9050919050565b6000602082019050818103600083015261376b8161338b565b9050919050565b6000602082019050818103600083015261378b816133ae565b9050919050565b600060208201905081810360008301526137ab816133d1565b9050919050565b600060208201905081810360008301526137cb816133f4565b9050919050565b60006020820190506137e76000830184613417565b92915050565b60006137f7613808565b90506138038282613a50565b919050565b6000604051905090565b600067ffffffffffffffff82111561382d5761382c613b88565b5b61383682613bb7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138a6826139d2565b91506138b1836139d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138e6576138e5613afb565b5b828201905092915050565b60006138fc826139d2565b9150613907836139d2565b92508261391757613916613b2a565b5b828204905092915050565b600061392d826139d2565b9150613938836139d2565b92508282101561394b5761394a613afb565b5b828203905092915050565b6000613961826139b2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139ab82613956565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a095780820151818401526020810190506139ee565b83811115613a18576000848401525b50505050565b60006002820490506001821680613a3657607f821691505b60208210811415613a4a57613a49613b59565b5b50919050565b613a5982613bb7565b810181811067ffffffffffffffff82111715613a7857613a77613b88565b5b80604052505050565b6000613a8c826139d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613abf57613abe613afb565b5b600182019050919050565b6000613ad5826139d2565b9150613ae0836139d2565b925082613af057613aef613b2a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f7420616e20737373206f776e657200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820617274696661637473000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616c6c6572206e6f7420746865206f776e6572206f72206d616e6167657200600082015250565b6140a481613956565b81146140af57600080fd5b50565b6140bb81613968565b81146140c657600080fd5b50565b6140d281613974565b81146140dd57600080fd5b50565b6140e9816139a0565b81146140f457600080fd5b50565b614100816139d2565b811461410b57600080fd5b5056fea26469706673582212203e2550dfb50d178dfdd73de070294328c30b81a4581066d521182993dbc04d7664736f6c63430008040033000000000000000000000000c464839b6287e90a514a577f6da17b3f3f202671000000000000000000000000a7ee407497b2aeb43580cabe2b04026b5419d1dc
Deployed Bytecode
0x6080604052600436106101d15760003560e01c806395d89b41116100f7578063c87b56dd11610095578063e985e9c511610064578063e985e9c514610655578063eb8d244414610692578063f2fde38b146106bd578063fc9b55ea146106e6576101d8565b8063c87b56dd1461059b578063cd7c0326146105d8578063d0ebdbe714610603578063da2c77111461062c576101d8565b8063a0712d68116100d1578063a0712d68146104f7578063a22cb46514610520578063adfdeef914610549578063b88d4fde14610572576101d8565b806395d89b4114610476578063962ef00d146104a15780639abc8320146104cc576101d8565b80633ccfd60b1161016f5780636e83843a1161013e5780636e83843a146103ce57806370a08231146103f7578063715018a6146104345780638da5cb5b1461044b576101d8565b80633ccfd60b1461032857806342842e0e1461033f57806355f804b3146103685780636352211e14610391576101d8565b8063095ea7b3116101ab578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d6578063242877c5146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612f2c565b61070f565b6040516102119190613535565b60405180910390f35b34801561022657600080fd5b5061022f6107f1565b60405161023c9190613550565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612fec565b610883565b604051610279919061346e565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612ef0565b610908565b005b3480156102b757600080fd5b506102c0610a20565b6040516102cd91906137d2565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612dea565b610a26565b005b34801561030b57600080fd5b5061032660048036038101906103219190612fa7565b610a86565b005b34801561033457600080fd5b5061033d610b77565b005b34801561034b57600080fd5b5061036660048036038101906103619190612dea565b610c9b565b005b34801561037457600080fd5b5061038f600480360381019061038a9190612fa7565b610cbb565b005b34801561039d57600080fd5b506103b860048036038101906103b39190612fec565b610dac565b6040516103c5919061346e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612fa7565b610e5e565b005b34801561040357600080fd5b5061041e60048036038101906104199190612d85565b610f4f565b60405161042b91906137d2565b60405180910390f35b34801561044057600080fd5b50610449611007565b005b34801561045757600080fd5b5061046061108f565b60405161046d919061346e565b60405180910390f35b34801561048257600080fd5b5061048b6110b9565b6040516104989190613550565b60405180910390f35b3480156104ad57600080fd5b506104b661114b565b6040516104c39190613550565b60405180910390f35b3480156104d857600080fd5b506104e16111d9565b6040516104ee9190613550565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190612fec565b611267565b005b34801561052c57600080fd5b5061054760048036038101906105429190612eb4565b611518565b005b34801561055557600080fd5b50610570600480360381019061056b9190612d85565b61152e565b005b34801561057e57600080fd5b5061059960048036038101906105949190612e39565b61164d565b005b3480156105a757600080fd5b506105c260048036038101906105bd9190612fec565b6116af565b6040516105cf9190613550565b60405180910390f35b3480156105e457600080fd5b506105ed61178a565b6040516105fa919061346e565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190612d85565b6117b0565b005b34801561063857600080fd5b50610653600480360381019061064e9190612d85565b6118cf565b005b34801561066157600080fd5b5061067c60048036038101906106779190612dae565b6119ee565b6040516106899190613535565b60405180910390f35b34801561069e57600080fd5b506106a7611af0565b6040516106b49190613535565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612d85565b611b03565b005b3480156106f257600080fd5b5061070d60048036038101906107089190612d85565b611bfb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107da57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ea57506107e982611d1a565b5b9050919050565b60606000805461080090613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461082c90613a1e565b80156108795780601f1061084e57610100808354040283529160200191610879565b820191906000526020600020905b81548152906001019060200180831161085c57829003601f168201915b5050505050905090565b600061088e82611d84565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c4906136f2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061091382610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b90613772565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a3611df0565b73ffffffffffffffffffffffffffffffffffffffff1614806109d257506109d1816109cc611df0565b6119ee565b5b610a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0890613672565b60405180910390fd5b610a1b8383611df8565b505050565b60075481565b610a37610a31611df0565b82611eb1565b610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d90613792565b60405180910390fd5b610a81838383611f8f565b505050565b610a8e611df0565b73ffffffffffffffffffffffffffffffffffffffff16610aac61108f565b73ffffffffffffffffffffffffffffffffffffffff161480610b225750610ad1611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b58906137b2565b60405180910390fd5b8181600b9190610b72929190612b9d565b505050565b610b7f611df0565b73ffffffffffffffffffffffffffffffffffffffff16610b9d61108f565b73ffffffffffffffffffffffffffffffffffffffff161480610c135750610bc2611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906137b2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c98573d6000803e3d6000fd5b50565b610cb68383836040518060200160405280600081525061164d565b505050565b610cc3611df0565b73ffffffffffffffffffffffffffffffffffffffff16610ce161108f565b73ffffffffffffffffffffffffffffffffffffffff161480610d575750610d06611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d906137b2565b60405180910390fd5b8181600a9190610da7929190612b9d565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c906136b2565b60405180910390fd5b80915050919050565b610e66611df0565b73ffffffffffffffffffffffffffffffffffffffff16610e8461108f565b73ffffffffffffffffffffffffffffffffffffffff161480610efa5750610ea9611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906137b2565b60405180910390fd5b8181600c9190610f4a929190612b9d565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790613692565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61100f611df0565b73ffffffffffffffffffffffffffffffffffffffff1661102d61108f565b73ffffffffffffffffffffffffffffffffffffffff1614611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107a90613732565b60405180910390fd5b61108d60006121f6565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110c890613a1e565b80601f01602080910402602001604051908101604052809291908181526020018280546110f490613a1e565b80156111415780601f1061111657610100808354040283529160200191611141565b820191906000526020600020905b81548152906001019060200180831161112457829003601f168201915b5050505050905090565b600b805461115890613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461118490613a1e565b80156111d15780601f106111a6576101008083540402835291602001916111d1565b820191906000526020600020905b8154815290600101906020018083116111b457829003601f168201915b505050505081565b600a80546111e690613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461121290613a1e565b801561125f5780601f106112345761010080835404028352916020019161125f565b820191906000526020600020905b81548152906001019060200180831161124257829003601f168201915b505050505081565b80600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e3360016040518363ffffffff1660e01b81526004016112c59291906134d5565b60206040518083038186803b1580156112dd57600080fd5b505afa1580156112f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113159190613015565b1015611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90613712565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016113b3919061346e565b60206040518083038186803b1580156113cb57600080fd5b505afa1580156113df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114039190613015565b11611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613572565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166357bc9fd4336001846040518463ffffffff1660e01b81526004016114a3939291906134fe565b600060405180830381600087803b1580156114bd57600080fd5b505af11580156114d1573d6000803e3d6000fd5b5050505060005b81811015611514576114ec336007546122bc565b60016007546114fb919061389b565b600781905550808061150c90613a81565b9150506114d8565b5050565b61152a611523611df0565b8383612496565b5050565b611536611df0565b73ffffffffffffffffffffffffffffffffffffffff1661155461108f565b73ffffffffffffffffffffffffffffffffffffffff1614806115ca5750611579611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611609576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611600906137b2565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61165e611658611df0565b83611eb1565b61169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613792565b60405180910390fd5b6116a984848484612603565b50505050565b60606000600c80546116c090613a1e565b90501161175757600a80546116d490613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461170090613a1e565b801561174d5780601f106117225761010080835404028352916020019161174d565b820191906000526020600020905b81548152906001019060200180831161173057829003601f168201915b5050505050611783565b6117608261265f565b600b60405160200161177392919061344a565b6040516020818303038152906040525b9050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6117b8611df0565b73ffffffffffffffffffffffffffffffffffffffff166117d661108f565b73ffffffffffffffffffffffffffffffffffffffff16148061184c57506117fb611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906137b2565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118d7611df0565b73ffffffffffffffffffffffffffffffffffffffff166118f561108f565b73ffffffffffffffffffffffffffffffffffffffff16148061196b575061191a611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a1906137b2565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611a66919061346e565b60206040518083038186803b158015611a7e57600080fd5b505afa158015611a92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab69190612f7e565b73ffffffffffffffffffffffffffffffffffffffff161415611adc576001915050611aea565b611ae68484612706565b9150505b92915050565b600d60009054906101000a900460ff1681565b611b0b611df0565b73ffffffffffffffffffffffffffffffffffffffff16611b2961108f565b73ffffffffffffffffffffffffffffffffffffffff1614611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613732565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be6906135b2565b60405180910390fd5b611bf8816121f6565b50565b611c03611df0565b73ffffffffffffffffffffffffffffffffffffffff16611c2161108f565b73ffffffffffffffffffffffffffffffffffffffff161480611c975750611c46611df0565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd906137b2565b60405180910390fd5b80600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6b83610dac565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ebc82611d84565b611efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef290613652565b60405180910390fd5b6000611f0683610dac565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7557508373ffffffffffffffffffffffffffffffffffffffff16611f5d84610883565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f865750611f8581856119ee565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611faf82610dac565b73ffffffffffffffffffffffffffffffffffffffff1614612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc906135d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206c90613612565b60405180910390fd5b61208083838361279a565b61208b600082611df8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120db9190613922565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612132919061389b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f183838361279f565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612323906136d2565b60405180910390fd5b61233581611d84565b15612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c906135f2565b60405180910390fd5b6123816000838361279a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123d1919061389b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124926000838361279f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124fc90613632565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125f69190613535565b60405180910390a3505050565b61260e848484611f8f565b61261a848484846127a4565b612659576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265090613592565b60405180910390fd5b50505050565b606061266a82611d84565b6126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090613752565b60405180910390fd5b60006126b361293b565b905060008151116126d357604051806020016040528060008152506126fe565b806126dd846129cd565b6040516020016126ee929190613426565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b60006127c58473ffffffffffffffffffffffffffffffffffffffff16612b7a565b1561292e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127ee611df0565b8786866040518563ffffffff1660e01b81526004016128109493929190613489565b602060405180830381600087803b15801561282a57600080fd5b505af192505050801561285b57506040513d601f19601f820116820180604052508101906128589190612f55565b60015b6128de573d806000811461288b576040519150601f19603f3d011682016040523d82523d6000602084013e612890565b606091505b506000815114156128d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cd90613592565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612933565b600190505b949350505050565b6060600c805461294a90613a1e565b80601f016020809104026020016040519081016040528092919081815260200182805461297690613a1e565b80156129c35780601f10612998576101008083540402835291602001916129c3565b820191906000526020600020905b8154815290600101906020018083116129a657829003601f168201915b5050505050905090565b60606000821415612a15576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b75565b600082905060005b60008214612a47578080612a3090613a81565b915050600a82612a4091906138f1565b9150612a1d565b60008167ffffffffffffffff811115612a89577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612abb5781602001600182028036833780820191505090505b5090505b60008514612b6e57600182612ad49190613922565b9150600a85612ae39190613aca565b6030612aef919061389b565b60f81b818381518110612b2b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b6791906138f1565b9450612abf565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612ba990613a1e565b90600052602060002090601f016020900481019282612bcb5760008555612c12565b82601f10612be457803560ff1916838001178555612c12565b82800160010185558215612c12579182015b82811115612c11578235825591602001919060010190612bf6565b5b509050612c1f9190612c23565b5090565b5b80821115612c3c576000816000905550600101612c24565b5090565b6000612c53612c4e84613812565b6137ed565b905082815260208101848484011115612c6b57600080fd5b612c768482856139dc565b509392505050565b600081359050612c8d8161409b565b92915050565b600081359050612ca2816140b2565b92915050565b600081359050612cb7816140c9565b92915050565b600081519050612ccc816140c9565b92915050565b600082601f830112612ce357600080fd5b8135612cf3848260208601612c40565b91505092915050565b600081519050612d0b816140e0565b92915050565b60008083601f840112612d2357600080fd5b8235905067ffffffffffffffff811115612d3c57600080fd5b602083019150836001820283011115612d5457600080fd5b9250929050565b600081359050612d6a816140f7565b92915050565b600081519050612d7f816140f7565b92915050565b600060208284031215612d9757600080fd5b6000612da584828501612c7e565b91505092915050565b60008060408385031215612dc157600080fd5b6000612dcf85828601612c7e565b9250506020612de085828601612c7e565b9150509250929050565b600080600060608486031215612dff57600080fd5b6000612e0d86828701612c7e565b9350506020612e1e86828701612c7e565b9250506040612e2f86828701612d5b565b9150509250925092565b60008060008060808587031215612e4f57600080fd5b6000612e5d87828801612c7e565b9450506020612e6e87828801612c7e565b9350506040612e7f87828801612d5b565b925050606085013567ffffffffffffffff811115612e9c57600080fd5b612ea887828801612cd2565b91505092959194509250565b60008060408385031215612ec757600080fd5b6000612ed585828601612c7e565b9250506020612ee685828601612c93565b9150509250929050565b60008060408385031215612f0357600080fd5b6000612f1185828601612c7e565b9250506020612f2285828601612d5b565b9150509250929050565b600060208284031215612f3e57600080fd5b6000612f4c84828501612ca8565b91505092915050565b600060208284031215612f6757600080fd5b6000612f7584828501612cbd565b91505092915050565b600060208284031215612f9057600080fd5b6000612f9e84828501612cfc565b91505092915050565b60008060208385031215612fba57600080fd5b600083013567ffffffffffffffff811115612fd457600080fd5b612fe085828601612d11565b92509250509250929050565b600060208284031215612ffe57600080fd5b600061300c84828501612d5b565b91505092915050565b60006020828403121561302757600080fd5b600061303584828501612d70565b91505092915050565b61304781613956565b82525050565b61305681613968565b82525050565b600061306782613858565b613071818561386e565b93506130818185602086016139eb565b61308a81613bb7565b840191505092915050565b60006130a082613863565b6130aa818561387f565b93506130ba8185602086016139eb565b6130c381613bb7565b840191505092915050565b60006130d982613863565b6130e38185613890565b93506130f38185602086016139eb565b80840191505092915050565b6000815461310c81613a1e565b6131168186613890565b94506001821660008114613131576001811461314257613175565b60ff19831686528186019350613175565b61314b85613843565b60005b8381101561316d5781548189015260018201915060208101905061314e565b838801955050505b50505092915050565b600061318b60108361387f565b915061319682613bc8565b602082019050919050565b60006131ae60328361387f565b91506131b982613bf1565b604082019050919050565b60006131d160268361387f565b91506131dc82613c40565b604082019050919050565b60006131f460258361387f565b91506131ff82613c8f565b604082019050919050565b6000613217601c8361387f565b915061322282613cde565b602082019050919050565b600061323a60248361387f565b915061324582613d07565b604082019050919050565b600061325d60198361387f565b915061326882613d56565b602082019050919050565b6000613280602c8361387f565b915061328b82613d7f565b604082019050919050565b60006132a360388361387f565b91506132ae82613dce565b604082019050919050565b60006132c6602a8361387f565b91506132d182613e1d565b604082019050919050565b60006132e960298361387f565b91506132f482613e6c565b604082019050919050565b600061330c60208361387f565b915061331782613ebb565b602082019050919050565b600061332f602c8361387f565b915061333a82613ee4565b604082019050919050565b600061335260148361387f565b915061335d82613f33565b602082019050919050565b600061337560208361387f565b915061338082613f5c565b602082019050919050565b6000613398602f8361387f565b91506133a382613f85565b604082019050919050565b60006133bb60218361387f565b91506133c682613fd4565b604082019050919050565b60006133de60318361387f565b91506133e982614023565b604082019050919050565b6000613401601f8361387f565b915061340c82614072565b602082019050919050565b613420816139d2565b82525050565b600061343282856130ce565b915061343e82846130ce565b91508190509392505050565b600061345682856130ce565b915061346282846130ff565b91508190509392505050565b6000602082019050613483600083018461303e565b92915050565b600060808201905061349e600083018761303e565b6134ab602083018661303e565b6134b86040830185613417565b81810360608301526134ca818461305c565b905095945050505050565b60006040820190506134ea600083018561303e565b6134f76020830184613417565b9392505050565b6000606082019050613513600083018661303e565b6135206020830185613417565b61352d6040830184613417565b949350505050565b600060208201905061354a600083018461304d565b92915050565b6000602082019050818103600083015261356a8184613095565b905092915050565b6000602082019050818103600083015261358b8161317e565b9050919050565b600060208201905081810360008301526135ab816131a1565b9050919050565b600060208201905081810360008301526135cb816131c4565b9050919050565b600060208201905081810360008301526135eb816131e7565b9050919050565b6000602082019050818103600083015261360b8161320a565b9050919050565b6000602082019050818103600083015261362b8161322d565b9050919050565b6000602082019050818103600083015261364b81613250565b9050919050565b6000602082019050818103600083015261366b81613273565b9050919050565b6000602082019050818103600083015261368b81613296565b9050919050565b600060208201905081810360008301526136ab816132b9565b9050919050565b600060208201905081810360008301526136cb816132dc565b9050919050565b600060208201905081810360008301526136eb816132ff565b9050919050565b6000602082019050818103600083015261370b81613322565b9050919050565b6000602082019050818103600083015261372b81613345565b9050919050565b6000602082019050818103600083015261374b81613368565b9050919050565b6000602082019050818103600083015261376b8161338b565b9050919050565b6000602082019050818103600083015261378b816133ae565b9050919050565b600060208201905081810360008301526137ab816133d1565b9050919050565b600060208201905081810360008301526137cb816133f4565b9050919050565b60006020820190506137e76000830184613417565b92915050565b60006137f7613808565b90506138038282613a50565b919050565b6000604051905090565b600067ffffffffffffffff82111561382d5761382c613b88565b5b61383682613bb7565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138a6826139d2565b91506138b1836139d2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138e6576138e5613afb565b5b828201905092915050565b60006138fc826139d2565b9150613907836139d2565b92508261391757613916613b2a565b5b828204905092915050565b600061392d826139d2565b9150613938836139d2565b92508282101561394b5761394a613afb565b5b828203905092915050565b6000613961826139b2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006139ab82613956565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a095780820151818401526020810190506139ee565b83811115613a18576000848401525b50505050565b60006002820490506001821680613a3657607f821691505b60208210811415613a4a57613a49613b59565b5b50919050565b613a5982613bb7565b810181811067ffffffffffffffff82111715613a7857613a77613b88565b5b80604052505050565b6000613a8c826139d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613abf57613abe613afb565b5b600182019050919050565b6000613ad5826139d2565b9150613ae0836139d2565b925082613af057613aef613b2a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f7420616e20737373206f776e657200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820617274696661637473000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f43616c6c6572206e6f7420746865206f776e6572206f72206d616e6167657200600082015250565b6140a481613956565b81146140af57600080fd5b50565b6140bb81613968565b81146140c657600080fd5b50565b6140d281613974565b81146140dd57600080fd5b50565b6140e9816139a0565b81146140f457600080fd5b50565b614100816139d2565b811461410b57600080fd5b5056fea26469706673582212203e2550dfb50d178dfdd73de070294328c30b81a4581066d521182993dbc04d7664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c464839b6287e90a514a577f6da17b3f3f202671000000000000000000000000a7ee407497b2aeb43580cabe2b04026b5419d1dc
-----Decoded View---------------
Arg [0] : artifactsAddress (address): 0xc464839b6287E90A514A577f6dA17B3F3f202671
Arg [1] : sssAddress (address): 0xa7eE407497b2Aeb43580cabe2B04026b5419D1dc
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c464839b6287e90a514a577f6da17b3f3f202671
Arg [1] : 000000000000000000000000a7ee407497b2aeb43580cabe2b04026b5419d1dc
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.