ETH Price: $2,498.23 (-0.61%)

Token

ScorchingDucks (SCD)
 

Overview

Max Total Supply

10,000 SCD

Holders

1,245

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 SCD
0x062f832261e769457d1d700cfea3bae6a43ccec2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 10000 Nonconformist ducks from hell

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ScorchingDucks

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 12 : ScorchingDucks.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity 0.8.6;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract ScorchingDucks is ERC721, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
uint256 private _maxSupply = 10000;
string public _provenanceHash;
string public _baseURL;
// Scorching variables
IERC721 private ogd;
event ScorchMultiple(address _from, uint256[] _tokenIds);
bool private scorchIsActive = false;
mapping(uint256 => uint256) public scorchDuckToOGDuck;
// Minting
bool private mintIsActive = false;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 12 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 12 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 12 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 12 : Counters.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 12 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 12 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 12 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 12 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 12 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 12 : ERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 12 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "byzantium",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"ScorchMultiple","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipScorchingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"scorchDuckToOGDuck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"scorchNDucks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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"}]

6080604052612710600855600b805460a060020a60ff0219169055600d805460ff191690553480156200003157600080fd5b50604080518082018252600e81527f53636f726368696e674475636b7300000000000000000000000000000000000060208083019182528351808501909452600384527f5343440000000000000000000000000000000000000000000000000000000000908401528151919291620000ac9160009162000173565b508051620000c290600190602084019062000173565b505050620000f1620000e26200011d640100000000026401000000009004565b64010000000062000121810204565b600b8054600160a060020a031916730f4b28d46cab209bc5fa987a92a26a5680538e451790556200026f565b3390565b60068054600160a060020a03838116600160a060020a0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001819062000219565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b6002810460018216806200022e57607f821691505b6020821081141562000269577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b612526806200027f6000396000f3fe6080604052600436106101a05760003560e060020a900480636f23c126116100f0578063a22cb4651161008e578063d5abeb0111610068578063d5abeb0114610480578063e985e9c514610495578063f2fde38b146104de578063f9e0edae146104fe57600080fd5b8063a22cb46514610420578063b88d4fde14610440578063c87b56dd1461046057600080fd5b80638da5cb5b116100ca5780638da5cb5b146103ba57806390267cd7146103d857806395d89b41146103f8578063a0712d681461040d57600080fd5b80636f23c1261461037057806370a0823114610385578063715018a6146103a557600080fd5b806323b872dd1161015d57806349f2553a1161013757806349f2553a14610306578063534308cc1461032657806359c74f291461033b5780636352211e1461035057600080fd5b806323b872dd146102995780633379ad16146102b957806342842e0e146102e657600080fd5b806301ffc9a7146101a557806306fdde03146101da578063081812fc146101fc578063095ea7b314610234578063109695231461025657806318160ddd14610276575b600080fd5b3480156101b157600080fd5b506101c56101c036600461209b565b610513565b60405190151581526020015b60405180910390f35b3480156101e657600080fd5b506101ef6105b0565b6040516101d19190612225565b34801561020857600080fd5b5061021c61021736600461211e565b610642565b604051600160a060020a0390911681526020016101d1565b34801561024057600080fd5b5061025461024f366004611fa6565b6106f0565b005b34801561026257600080fd5b506102546102713660046120d5565b610828565b34801561028257600080fd5b5061028b61086c565b6040519081526020016101d1565b3480156102a557600080fd5b506102546102b4366004611eb7565b61087c565b3480156102c557600080fd5b5061028b6102d436600461211e565b600c6020526000908152604090205481565b3480156102f257600080fd5b50610254610301366004611eb7565b6108b0565b34801561031257600080fd5b506102546103213660046120d5565b6108cb565b34801561033257600080fd5b506101ef61090b565b34801561034757600080fd5b50610254610999565b34801561035c57600080fd5b5061021c61036b36600461211e565b6109da565b34801561037c57600080fd5b50610254610a68565b34801561039157600080fd5b5061028b6103a0366004611e44565b610ad8565b3480156103b157600080fd5b50610254610b75565b3480156103c657600080fd5b50600654600160a060020a031661021c565b3480156103e457600080fd5b506102546103f3366004611fd2565b610bae565b34801561040457600080fd5b506101ef610ff2565b61025461041b36600461211e565b611001565b34801561042c57600080fd5b5061025461043b366004611f78565b6112ad565b34801561044c57600080fd5b5061025461045b366004611ef8565b611375565b34801561046c57600080fd5b506101ef61047b36600461211e565b6113b0565b34801561048c57600080fd5b5060085461028b565b3480156104a157600080fd5b506101c56104b0366004611e7e565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ea57600080fd5b506102546104f9366004611e44565b61149c565b34801561050a57600080fd5b506101ef611554565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105765750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105aa57507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600080546105bf906123e6565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906123e6565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106d45760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b60006106fb826109da565b905080600160a060020a031683600160a060020a031614156107885760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b33600160a060020a03821614806107a457506107a481336104b0565b6108195760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106cb565b6108238383611561565b505050565b600654600160a060020a031633146108555760405160e560020a62461bcd0281526004016106cb90612295565b8051610868906009906020840190611d53565b5050565b600061087760075490565b905090565b61088633826115dc565b6108a55760405160e560020a62461bcd0281526004016106cb906122ca565b6108238383836116e7565b61082383838360405180602001604052806000815250611375565b600654600160a060020a031633146108f85760405160e560020a62461bcd0281526004016106cb90612295565b805161086890600a906020840190611d53565b60098054610918906123e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610944906123e6565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b505050505081565b600654600160a060020a031633146109c65760405160e560020a62461bcd0281526004016106cb90612295565b600d805460ff19811660ff90911615179055565b600081815260026020526040812054600160a060020a0316806105aa5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106cb565b600654600160a060020a03163314610a955760405160e560020a62461bcd0281526004016106cb90612295565b600b805474ff0000000000000000000000000000000000000000198116740100000000000000000000000000000000000000009182900460ff1615909102179055565b6000600160a060020a038216610b595760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106cb565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a03163314610ba25760405160e560020a62461bcd0281526004016106cb90612295565b610bac60006118c7565b565b600b5474010000000000000000000000000000000000000000900460ff16610c1b5760405160e560020a62461bcd02815260206004820152601760248201527f53636f726368696e67206973206e6f742061637469766500000000000000000060448201526064016106cb565b600b546040517fe985e9c5000000000000000000000000000000000000000000000000000000008152336004820152306024820152600160a060020a039091169063e985e9c59060440160206040518083038186803b158015610c7d57600080fd5b505afa158015610c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb5919061207e565b610d2a5760405160e560020a62461bcd02815260206004820152603360248201527f436f6e7472616374206973206e6f7420617070726f76656420746f207472616e60448201527f7366657220796f7572204f47204475636b732e0000000000000000000000000060648201526084016106cb565b600a81511115610da55760405160e560020a62461bcd02815260206004820152602860248201527f43616e27742073636f726368206d6f7265207468616e203130204475636b732060448201527f6174206f6e63652e00000000000000000000000000000000000000000000000060648201526084016106cb565b60005b8151811015610fb557600b5482513391600160a060020a031690636352211e90859085908110610dda57610dda612485565b60200260200101516040518263ffffffff1660e060020a028152600401610e0391815260200190565b60206040518083038186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e539190611e61565b600160a060020a031614610eac5760405160e560020a62461bcd02815260206004820181905260248201527f596f75206d757374206f776e207468652072657175657374656420746f6b656e60448201526064016106cb565b600b548251600160a060020a03909116906323b872dd90339061dead90869086908110610edb57610edb612485565b602090810291909101015160405160e060020a63ffffffff8616028152600160a060020a0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015610f3357600080fd5b505af1158015610f47573d6000803e3d6000fd5b50505050610f59600780546001019055565b610f6b33610f6660075490565b611926565b818181518110610f7d57610f7d612485565b6020026020010151600c6000610f9260075490565b815260208101919091526040016000205580610fad81612424565b915050610da8565b507f2461173703653c70a8da9516e36afffeb326e4096c020a467c663acea658dfcd3382604051610fe79291906121ce565b60405180910390a150565b6060600180546105bf906123e6565b600d5460ff166110565760405160e560020a62461bcd02815260206004820152601260248201527f4d696e74206973206e6f7420616374697665000000000000000000000000000060448201526064016106cb565b600854600754106110d25760405160e560020a62461bcd02815260206004820152602160248201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60448201527f790000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b6000811180156110e35750600a8111155b6111585760405160e560020a62461bcd02815260206004820152602560248201527f596f752063616e206d696e74206265747765656e203120616e6420313020617460448201527f206f6e636500000000000000000000000000000000000000000000000000000060648201526084016106cb565b61116981666a94d74f430000612384565b3410156111bb5760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016106cb565b60005b818110156111f3576111d4600780546001019055565b6111e133610f6660075490565b806111eb81612424565b9150506111be565b506000611208600654600160a060020a031690565b600160a060020a03163460405160006040518083038185875af1925050503d8060008114611252576040519150601f19603f3d011682016040523d82523d6000602084013e611257565b606091505b505080915050806108685760405160e560020a62461bcd02815260206004820152601760248201527f4661696c656420746f2073656e6420746f206f776e657200000000000000000060448201526064016106cb565b600160a060020a0382163314156113095760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106cb565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61137f33836115dc565b61139e5760405160e560020a62461bcd0281526004016106cb906122ca565b6113aa84848484611a7b565b50505050565b600081815260026020526040902054606090600160a060020a03166114405760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106cb565b600061144a611ab1565b9050600081511161146a5760405180602001604052806000815250611495565b8061147484611ac0565b604051602001611485929190612163565b6040516020818303038152906040525b9392505050565b600654600160a060020a031633146114c95760405160e560020a62461bcd0281526004016106cb90612295565b600160a060020a0381166115485760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106cb565b611551816118c7565b50565b600a8054610918906123e6565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03841690811790915581906115a3826109da565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166116695760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106cb565b6000611674836109da565b905080600160a060020a031684600160a060020a031614806116af575083600160a060020a03166116a484610642565b600160a060020a0316145b806116df5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a03166116fa826109da565b600160a060020a0316146117795760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106cb565b600160a060020a0382166117f75760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106cb565b611802600082611561565b600160a060020a038316600090815260036020526040812080546001929061182b9084906123a3565b9091555050600160a060020a0382166000908152600360205260408120805460019290611859908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03821661197f5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106cb565b600081815260026020526040902054600160a060020a0316156119e75760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106cb565b600160a060020a0382166000908152600360205260408120805460019290611a10908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a868484846116e7565b611a9284848484611c11565b6113aa5760405160e560020a62461bcd0281526004016106cb90612238565b6060600a80546105bf906123e6565b606081611b0057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b2a5780611b1481612424565b9150611b239050600a83612370565b9150611b04565b60008167ffffffffffffffff811115611b4557611b4561249e565b6040519080825280601f01601f191660200182016040528015611b6f576020820181803683370190505b5090505b84156116df57611b846001836123a3565b9150611b91600a8661243f565b611b9c906030612358565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110611bd057611bd0612485565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c0a600a86612370565b9450611b73565b6000600160a060020a0384163b15611d48576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611c6e903390899088908890600401612192565b602060405180830381600087803b158015611c8857600080fd5b505af1925050508015611cb8575060408051601f3d908101601f19168201909252611cb5918101906120b8565b60015b611d15573d808015611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b508051611d0d5760405160e560020a62461bcd0281526004016106cb90612238565b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506116df565b506001949350505050565b828054611d5f906123e6565b90600052602060002090601f016020900481019282611d815760008555611dc7565b82601f10611d9a57805160ff1916838001178555611dc7565b82800160010185558215611dc7579182015b82811115611dc7578251825591602001919060010190611dac565b50611dd3929150611dd7565b5090565b5b80821115611dd35760008155600101611dd8565b600067ffffffffffffffff831115611e0657611e0661249e565b611e19601f8401601f1916602001612327565b9050828152838383011115611e2d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e5657600080fd5b8135611495816124b7565b600060208284031215611e7357600080fd5b8151611495816124b7565b60008060408385031215611e9157600080fd5b8235611e9c816124b7565b91506020830135611eac816124b7565b809150509250929050565b600080600060608486031215611ecc57600080fd5b8335611ed7816124b7565b92506020840135611ee7816124b7565b929592945050506040919091013590565b60008060008060808587031215611f0e57600080fd5b8435611f19816124b7565b93506020850135611f29816124b7565b925060408501359150606085013567ffffffffffffffff811115611f4c57600080fd5b8501601f81018713611f5d57600080fd5b611f6c87823560208401611dec565b91505092959194509250565b60008060408385031215611f8b57600080fd5b8235611f96816124b7565b91506020830135611eac816124cc565b60008060408385031215611fb957600080fd5b8235611fc4816124b7565b946020939093013593505050565b60006020808385031215611fe557600080fd5b823567ffffffffffffffff80821115611ffd57600080fd5b818501915085601f83011261201157600080fd5b8135818111156120235761202361249e565b8381029150612033848301612327565b8181528481019084860184860187018a101561204e57600080fd5b600095505b83861015612071578035835260019590950194918601918601612053565b5098975050505050505050565b60006020828403121561209057600080fd5b8151611495816124cc565b6000602082840312156120ad57600080fd5b8135611495816124da565b6000602082840312156120ca57600080fd5b8151611495816124da565b6000602082840312156120e757600080fd5b813567ffffffffffffffff8111156120fe57600080fd5b8201601f8101841361210f57600080fd5b6116df84823560208401611dec565b60006020828403121561213057600080fd5b5035919050565b6000815180845261214f8160208601602086016123ba565b601f01601f19169290920160200192915050565b600083516121758184602088016123ba565b8351908301906121898183602088016123ba565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526121c46080830184612137565b9695505050505050565b600060408201600160a060020a03851683526020604081850152818551808452606086019150828701935060005b81811015612218578451835293830193918301916001016121fc565b5090979650505050505050565b6020815260006114956020830184612137565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123505761235061249e565b604052919050565b6000821982111561236b5761236b612453565b500190565b60008261237f5761237f61246c565b500490565b600081600019048311821515161561239e5761239e612453565b500290565b6000828210156123b5576123b5612453565b500390565b60005b838110156123d55781810151838201526020016123bd565b838111156113aa5750506000910152565b6002810460018216806123fa57607f821691505b6020821081141561241e5760e060020a634e487b7102600052602260045260246000fd5b50919050565b600060001982141561243857612438612453565b5060010190565b60008261244e5761244e61246c565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160a060020a038116811461155157600080fd5b801515811461155157600080fd5b600160e060020a03198116811461155157600080fdfea2646970667358221220c25722d0a80813a61aa9d6195b1714f79914207a95ba5b32023e5ec547159d1664736f6c63430008060033

Deployed Bytecode

0x6080604052600436106101a05760003560e060020a900480636f23c126116100f0578063a22cb4651161008e578063d5abeb0111610068578063d5abeb0114610480578063e985e9c514610495578063f2fde38b146104de578063f9e0edae146104fe57600080fd5b8063a22cb46514610420578063b88d4fde14610440578063c87b56dd1461046057600080fd5b80638da5cb5b116100ca5780638da5cb5b146103ba57806390267cd7146103d857806395d89b41146103f8578063a0712d681461040d57600080fd5b80636f23c1261461037057806370a0823114610385578063715018a6146103a557600080fd5b806323b872dd1161015d57806349f2553a1161013757806349f2553a14610306578063534308cc1461032657806359c74f291461033b5780636352211e1461035057600080fd5b806323b872dd146102995780633379ad16146102b957806342842e0e146102e657600080fd5b806301ffc9a7146101a557806306fdde03146101da578063081812fc146101fc578063095ea7b314610234578063109695231461025657806318160ddd14610276575b600080fd5b3480156101b157600080fd5b506101c56101c036600461209b565b610513565b60405190151581526020015b60405180910390f35b3480156101e657600080fd5b506101ef6105b0565b6040516101d19190612225565b34801561020857600080fd5b5061021c61021736600461211e565b610642565b604051600160a060020a0390911681526020016101d1565b34801561024057600080fd5b5061025461024f366004611fa6565b6106f0565b005b34801561026257600080fd5b506102546102713660046120d5565b610828565b34801561028257600080fd5b5061028b61086c565b6040519081526020016101d1565b3480156102a557600080fd5b506102546102b4366004611eb7565b61087c565b3480156102c557600080fd5b5061028b6102d436600461211e565b600c6020526000908152604090205481565b3480156102f257600080fd5b50610254610301366004611eb7565b6108b0565b34801561031257600080fd5b506102546103213660046120d5565b6108cb565b34801561033257600080fd5b506101ef61090b565b34801561034757600080fd5b50610254610999565b34801561035c57600080fd5b5061021c61036b36600461211e565b6109da565b34801561037c57600080fd5b50610254610a68565b34801561039157600080fd5b5061028b6103a0366004611e44565b610ad8565b3480156103b157600080fd5b50610254610b75565b3480156103c657600080fd5b50600654600160a060020a031661021c565b3480156103e457600080fd5b506102546103f3366004611fd2565b610bae565b34801561040457600080fd5b506101ef610ff2565b61025461041b36600461211e565b611001565b34801561042c57600080fd5b5061025461043b366004611f78565b6112ad565b34801561044c57600080fd5b5061025461045b366004611ef8565b611375565b34801561046c57600080fd5b506101ef61047b36600461211e565b6113b0565b34801561048c57600080fd5b5060085461028b565b3480156104a157600080fd5b506101c56104b0366004611e7e565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104ea57600080fd5b506102546104f9366004611e44565b61149c565b34801561050a57600080fd5b506101ef611554565b6000600160e060020a031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806105765750600160e060020a031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105aa57507f01ffc9a700000000000000000000000000000000000000000000000000000000600160e060020a03198316145b92915050565b6060600080546105bf906123e6565b80601f01602080910402602001604051908101604052809291908181526020018280546105eb906123e6565b80156106385780601f1061060d57610100808354040283529160200191610638565b820191906000526020600020905b81548152906001019060200180831161061b57829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166106d45760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b60006106fb826109da565b905080600160a060020a031683600160a060020a031614156107885760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b33600160a060020a03821614806107a457506107a481336104b0565b6108195760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106cb565b6108238383611561565b505050565b600654600160a060020a031633146108555760405160e560020a62461bcd0281526004016106cb90612295565b8051610868906009906020840190611d53565b5050565b600061087760075490565b905090565b61088633826115dc565b6108a55760405160e560020a62461bcd0281526004016106cb906122ca565b6108238383836116e7565b61082383838360405180602001604052806000815250611375565b600654600160a060020a031633146108f85760405160e560020a62461bcd0281526004016106cb90612295565b805161086890600a906020840190611d53565b60098054610918906123e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610944906123e6565b80156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b505050505081565b600654600160a060020a031633146109c65760405160e560020a62461bcd0281526004016106cb90612295565b600d805460ff19811660ff90911615179055565b600081815260026020526040812054600160a060020a0316806105aa5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106cb565b600654600160a060020a03163314610a955760405160e560020a62461bcd0281526004016106cb90612295565b600b805474ff0000000000000000000000000000000000000000198116740100000000000000000000000000000000000000009182900460ff1615909102179055565b6000600160a060020a038216610b595760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106cb565b50600160a060020a031660009081526003602052604090205490565b600654600160a060020a03163314610ba25760405160e560020a62461bcd0281526004016106cb90612295565b610bac60006118c7565b565b600b5474010000000000000000000000000000000000000000900460ff16610c1b5760405160e560020a62461bcd02815260206004820152601760248201527f53636f726368696e67206973206e6f742061637469766500000000000000000060448201526064016106cb565b600b546040517fe985e9c5000000000000000000000000000000000000000000000000000000008152336004820152306024820152600160a060020a039091169063e985e9c59060440160206040518083038186803b158015610c7d57600080fd5b505afa158015610c91573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cb5919061207e565b610d2a5760405160e560020a62461bcd02815260206004820152603360248201527f436f6e7472616374206973206e6f7420617070726f76656420746f207472616e60448201527f7366657220796f7572204f47204475636b732e0000000000000000000000000060648201526084016106cb565b600a81511115610da55760405160e560020a62461bcd02815260206004820152602860248201527f43616e27742073636f726368206d6f7265207468616e203130204475636b732060448201527f6174206f6e63652e00000000000000000000000000000000000000000000000060648201526084016106cb565b60005b8151811015610fb557600b5482513391600160a060020a031690636352211e90859085908110610dda57610dda612485565b60200260200101516040518263ffffffff1660e060020a028152600401610e0391815260200190565b60206040518083038186803b158015610e1b57600080fd5b505afa158015610e2f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e539190611e61565b600160a060020a031614610eac5760405160e560020a62461bcd02815260206004820181905260248201527f596f75206d757374206f776e207468652072657175657374656420746f6b656e60448201526064016106cb565b600b548251600160a060020a03909116906323b872dd90339061dead90869086908110610edb57610edb612485565b602090810291909101015160405160e060020a63ffffffff8616028152600160a060020a0393841660048201529290911660248301526044820152606401600060405180830381600087803b158015610f3357600080fd5b505af1158015610f47573d6000803e3d6000fd5b50505050610f59600780546001019055565b610f6b33610f6660075490565b611926565b818181518110610f7d57610f7d612485565b6020026020010151600c6000610f9260075490565b815260208101919091526040016000205580610fad81612424565b915050610da8565b507f2461173703653c70a8da9516e36afffeb326e4096c020a467c663acea658dfcd3382604051610fe79291906121ce565b60405180910390a150565b6060600180546105bf906123e6565b600d5460ff166110565760405160e560020a62461bcd02815260206004820152601260248201527f4d696e74206973206e6f7420616374697665000000000000000000000000000060448201526064016106cb565b600854600754106110d25760405160e560020a62461bcd02815260206004820152602160248201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820737570706c60448201527f790000000000000000000000000000000000000000000000000000000000000060648201526084016106cb565b6000811180156110e35750600a8111155b6111585760405160e560020a62461bcd02815260206004820152602560248201527f596f752063616e206d696e74206265747765656e203120616e6420313020617460448201527f206f6e636500000000000000000000000000000000000000000000000000000060648201526084016106cb565b61116981666a94d74f430000612384565b3410156111bb5760405160e560020a62461bcd02815260206004820152601460248201527f496e73756666696369656e74207061796d656e7400000000000000000000000060448201526064016106cb565b60005b818110156111f3576111d4600780546001019055565b6111e133610f6660075490565b806111eb81612424565b9150506111be565b506000611208600654600160a060020a031690565b600160a060020a03163460405160006040518083038185875af1925050503d8060008114611252576040519150601f19603f3d011682016040523d82523d6000602084013e611257565b606091505b505080915050806108685760405160e560020a62461bcd02815260206004820152601760248201527f4661696c656420746f2073656e6420746f206f776e657200000000000000000060448201526064016106cb565b600160a060020a0382163314156113095760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106cb565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61137f33836115dc565b61139e5760405160e560020a62461bcd0281526004016106cb906122ca565b6113aa84848484611a7b565b50505050565b600081815260026020526040902054606090600160a060020a03166114405760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106cb565b600061144a611ab1565b9050600081511161146a5760405180602001604052806000815250611495565b8061147484611ac0565b604051602001611485929190612163565b6040516020818303038152906040525b9392505050565b600654600160a060020a031633146114c95760405160e560020a62461bcd0281526004016106cb90612295565b600160a060020a0381166115485760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106cb565b611551816118c7565b50565b600a8054610918906123e6565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03841690811790915581906115a3826109da565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166116695760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106cb565b6000611674836109da565b905080600160a060020a031684600160a060020a031614806116af575083600160a060020a03166116a484610642565b600160a060020a0316145b806116df5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a03166116fa826109da565b600160a060020a0316146117795760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106cb565b600160a060020a0382166117f75760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106cb565b611802600082611561565b600160a060020a038316600090815260036020526040812080546001929061182b9084906123a3565b9091555050600160a060020a0382166000908152600360205260408120805460019290611859908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60068054600160a060020a0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600160a060020a03821661197f5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106cb565b600081815260026020526040902054600160a060020a0316156119e75760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106cb565b600160a060020a0382166000908152600360205260408120805460019290611a10908490612358565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a868484846116e7565b611a9284848484611c11565b6113aa5760405160e560020a62461bcd0281526004016106cb90612238565b6060600a80546105bf906123e6565b606081611b0057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b2a5780611b1481612424565b9150611b239050600a83612370565b9150611b04565b60008167ffffffffffffffff811115611b4557611b4561249e565b6040519080825280601f01601f191660200182016040528015611b6f576020820181803683370190505b5090505b84156116df57611b846001836123a3565b9150611b91600a8661243f565b611b9c906030612358565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110611bd057611bd0612485565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c0a600a86612370565b9450611b73565b6000600160a060020a0384163b15611d48576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611c6e903390899088908890600401612192565b602060405180830381600087803b158015611c8857600080fd5b505af1925050508015611cb8575060408051601f3d908101601f19168201909252611cb5918101906120b8565b60015b611d15573d808015611ce6576040519150601f19603f3d011682016040523d82523d6000602084013e611ceb565b606091505b508051611d0d5760405160e560020a62461bcd0281526004016106cb90612238565b805181602001fd5b600160e060020a0319167f150b7a02000000000000000000000000000000000000000000000000000000001490506116df565b506001949350505050565b828054611d5f906123e6565b90600052602060002090601f016020900481019282611d815760008555611dc7565b82601f10611d9a57805160ff1916838001178555611dc7565b82800160010185558215611dc7579182015b82811115611dc7578251825591602001919060010190611dac565b50611dd3929150611dd7565b5090565b5b80821115611dd35760008155600101611dd8565b600067ffffffffffffffff831115611e0657611e0661249e565b611e19601f8401601f1916602001612327565b9050828152838383011115611e2d57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e5657600080fd5b8135611495816124b7565b600060208284031215611e7357600080fd5b8151611495816124b7565b60008060408385031215611e9157600080fd5b8235611e9c816124b7565b91506020830135611eac816124b7565b809150509250929050565b600080600060608486031215611ecc57600080fd5b8335611ed7816124b7565b92506020840135611ee7816124b7565b929592945050506040919091013590565b60008060008060808587031215611f0e57600080fd5b8435611f19816124b7565b93506020850135611f29816124b7565b925060408501359150606085013567ffffffffffffffff811115611f4c57600080fd5b8501601f81018713611f5d57600080fd5b611f6c87823560208401611dec565b91505092959194509250565b60008060408385031215611f8b57600080fd5b8235611f96816124b7565b91506020830135611eac816124cc565b60008060408385031215611fb957600080fd5b8235611fc4816124b7565b946020939093013593505050565b60006020808385031215611fe557600080fd5b823567ffffffffffffffff80821115611ffd57600080fd5b818501915085601f83011261201157600080fd5b8135818111156120235761202361249e565b8381029150612033848301612327565b8181528481019084860184860187018a101561204e57600080fd5b600095505b83861015612071578035835260019590950194918601918601612053565b5098975050505050505050565b60006020828403121561209057600080fd5b8151611495816124cc565b6000602082840312156120ad57600080fd5b8135611495816124da565b6000602082840312156120ca57600080fd5b8151611495816124da565b6000602082840312156120e757600080fd5b813567ffffffffffffffff8111156120fe57600080fd5b8201601f8101841361210f57600080fd5b6116df84823560208401611dec565b60006020828403121561213057600080fd5b5035919050565b6000815180845261214f8160208601602086016123ba565b601f01601f19169290920160200192915050565b600083516121758184602088016123ba565b8351908301906121898183602088016123ba565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526121c46080830184612137565b9695505050505050565b600060408201600160a060020a03851683526020604081850152818551808452606086019150828701935060005b81811015612218578451835293830193918301916001016121fc565b5090979650505050505050565b6020815260006114956020830184612137565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156123505761235061249e565b604052919050565b6000821982111561236b5761236b612453565b500190565b60008261237f5761237f61246c565b500490565b600081600019048311821515161561239e5761239e612453565b500290565b6000828210156123b5576123b5612453565b500390565b60005b838110156123d55781810151838201526020016123bd565b838111156113aa5750506000910152565b6002810460018216806123fa57607f821691505b6020821081141561241e5760e060020a634e487b7102600052602260045260246000fd5b50919050565b600060001982141561243857612438612453565b5060010190565b60008261244e5761244e61246c565b500690565b60e060020a634e487b7102600052601160045260246000fd5b60e060020a634e487b7102600052601260045260246000fd5b60e060020a634e487b7102600052603260045260246000fd5b60e060020a634e487b7102600052604160045260246000fd5b600160a060020a038116811461155157600080fd5b801515811461155157600080fd5b600160e060020a03198116811461155157600080fdfea2646970667358221220c25722d0a80813a61aa9d6195b1714f79914207a95ba5b32023e5ec547159d1664736f6c63430008060033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.