Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 67 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23739628 | 58 days ago | IN | 0 ETH | 0.00005977 | ||||
| Approve | 23552713 | 84 days ago | IN | 0 ETH | 0.00003707 | ||||
| Approve | 23457508 | 98 days ago | IN | 0 ETH | 0.00000587 | ||||
| Approve | 22229098 | 270 days ago | IN | 0 ETH | 0.00002615 | ||||
| Approve | 22189633 | 275 days ago | IN | 0 ETH | 0.00004161 | ||||
| Approve | 21988063 | 303 days ago | IN | 0 ETH | 0.000083 | ||||
| Approve | 21858680 | 321 days ago | IN | 0 ETH | 0.00006391 | ||||
| Approve | 21787164 | 331 days ago | IN | 0 ETH | 0.00009144 | ||||
| Set Approval For... | 20979935 | 444 days ago | IN | 0 ETH | 0.00067624 | ||||
| Approve | 19402925 | 664 days ago | IN | 0 ETH | 0.00234634 | ||||
| Approve | 19247102 | 686 days ago | IN | 0 ETH | 0.00099423 | ||||
| Safe Transfer Fr... | 19218412 | 690 days ago | IN | 0 ETH | 0.00193276 | ||||
| Approve | 19188988 | 694 days ago | IN | 0 ETH | 0.00247436 | ||||
| Approve | 19187472 | 695 days ago | IN | 0 ETH | 0.00274395 | ||||
| Approve | 19187060 | 695 days ago | IN | 0 ETH | 0.00227633 | ||||
| Approve | 19185976 | 695 days ago | IN | 0 ETH | 0.00400424 | ||||
| Approve | 19185361 | 695 days ago | IN | 0 ETH | 0.00288155 | ||||
| Approve | 19184428 | 695 days ago | IN | 0 ETH | 0.00332811 | ||||
| Approve | 19184308 | 695 days ago | IN | 0 ETH | 0.00451903 | ||||
| Approve | 19180997 | 696 days ago | IN | 0 ETH | 0.00174425 | ||||
| Approve | 19180949 | 696 days ago | IN | 0 ETH | 0.00133453 | ||||
| Approve | 19180923 | 696 days ago | IN | 0 ETH | 0.00153349 | ||||
| Approve | 19180887 | 696 days ago | IN | 0 ETH | 0.00149883 | ||||
| Approve | 19180875 | 696 days ago | IN | 0 ETH | 0.00182898 | ||||
| Approve | 19180860 | 696 days ago | IN | 0 ETH | 0.0013406 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Error
Compiler Version
v0.8.24+commit.e11b9ed9
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 "./ERC404/ERC404.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Error is ERC404 {
string public dataURI;
string public baseTokenURI;
constructor(
address _owner
) ERC404("Error 404", "ERROR", 18, 10000, _owner) {
balanceOf[_owner] = 10000 * 10 ** 18;
dataURI = "https://ipfs.io/ipfs/QmdFMbUcRPSczR6nGDN4ouFCc9H44jaNHy19KZn7W3UBV1/";
}
function setDataURI(string memory _dataURI) public onlyOwner {
dataURI = _dataURI;
}
function setTokenURI(string memory _tokenURI) public onlyOwner {
baseTokenURI = _tokenURI;
}
function setNameSymbol(
string memory _name,
string memory _symbol
) public onlyOwner {
_setNameSymbol(_name, _symbol);
}
function tokenURI(uint256 id) public view override returns (string memory) {
if (bytes(baseTokenURI).length > 0) {
return string.concat(baseTokenURI, Strings.toString(id));
} else {
uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
string memory image;
string memory color;
if (seed <= 100) {
image = "green.png";
color = "Green";
} else if (seed <= 160) {
image = "blue.png";
color = "Blue";
} else if (seed <= 210) {
image = "purple.png";
color = "Purple";
} else if (seed <= 240) {
image = "orange.png";
color = "Orange";
} else if (seed <= 255) {
image = "red.png";
color = "Red";
}
string memory jsonPreImage = string.concat(
string.concat(
string.concat('{"name": "Error #', Strings.toString(id)),
'","description":"The HTTP 404, 404 Not Found, 404, 404 Error, Page Not Found or File Not Found error message is a Hypertext Transfer Protocol (HTTP) standard response code, in computer network communications,","image":"'
),
string.concat(dataURI, image)
);
string memory jsonPostImage = string.concat(
'","attributes":[{"trait_type":"Color","value":"',
color
);
string memory jsonPostTraits = '"}]}';
return
string.concat(
"data:application/json;utf8,",
string.concat(
string.concat(jsonPreImage, jsonPostImage),
jsonPostTraits
)
);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
uint256 localValue = value;
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_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
* representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;
abstract contract Ownable {
event OwnershipTransferred(address indexed user, address indexed newOwner);
error Unauthorized();
error InvalidOwner();
address public owner;
modifier onlyOwner() virtual {
if (msg.sender != owner) revert Unauthorized();
_;
}
constructor(address _owner) {
if (_owner == address(0)) revert InvalidOwner();
owner = _owner;
emit OwnershipTransferred(address(0), _owner);
}
function transferOwnership(address _owner) public virtual onlyOwner {
if (_owner == address(0)) revert InvalidOwner();
owner = _owner;
emit OwnershipTransferred(msg.sender, _owner);
}
function revokeOwnership() public virtual onlyOwner {
owner = address(0);
emit OwnershipTransferred(msg.sender, address(0));
}
}
abstract contract ERC721Receiver {
function onERC721Received(
address,
address,
uint256,
bytes calldata
) external virtual returns (bytes4) {
return ERC721Receiver.onERC721Received.selector;
}
}
/// @notice ERC404
/// A gas-efficient, mixed ERC20 / ERC721 implementation
/// with native liquidity and fractionalization.
///
/// This is an experimental standard designed to integrate
/// with pre-existing ERC20 / ERC721 support as smoothly as
/// possible.
///
/// @dev In order to support full functionality of ERC20 and ERC721
/// supply assumptions are made that slightly constraint usage.
/// Ensure decimals are sufficiently large (standard 18 recommended)
/// as ids are effectively encoded in the lowest range of amounts.
///
/// NFTs are spent on ERC20 functions in a FILO queue, this is by
/// design.
///
abstract contract ERC404 is Ownable {
// Events
event ERC20Transfer(
address indexed from,
address indexed to,
uint256 amount
);
event Approval(
address indexed owner,
address indexed spender,
uint256 amount
);
event Transfer(
address indexed from,
address indexed to,
uint256 indexed id
);
event ERC721Approval(
address indexed owner,
address indexed spender,
uint256 indexed id
);
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
// Errors
error NotFound();
error AlreadyExists();
error InvalidRecipient();
error InvalidSender();
error UnsafeRecipient();
// Metadata
/// @dev Token name
string public name;
/// @dev Token symbol
string public symbol;
/// @dev Decimals for fractional representation
uint8 public immutable decimals;
/// @dev Total supply in fractionalized representation
uint256 public immutable totalSupply;
/// @dev Current mint counter, monotonically increasing to ensure accurate ownership
uint256 public minted;
// Mappings
/// @dev Balance of user in fractional representation
mapping(address => uint256) public balanceOf;
/// @dev Allowance of user in fractional representation
mapping(address => mapping(address => uint256)) public allowance;
/// @dev Approval in native representaion
mapping(uint256 => address) public getApproved;
/// @dev Approval for all in native representation
mapping(address => mapping(address => bool)) public isApprovedForAll;
/// @dev Owner of id in native representation
mapping(uint256 => address) internal _ownerOf;
/// @dev Array of owned ids in native representation
mapping(address => uint256[]) internal _owned;
/// @dev Tracks indices for the _owned mapping
mapping(uint256 => uint256) internal _ownedIndex;
/// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
mapping(address => bool) public whitelist;
// Constructor
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals,
uint256 _totalNativeSupply,
address _owner
) Ownable(_owner) {
name = _name;
symbol = _symbol;
decimals = _decimals;
totalSupply = _totalNativeSupply * (10 ** decimals);
}
/// @notice Initialization function to set pairs / etc
/// saving gas by avoiding mint / burn on unnecessary targets
function setWhitelist(address target, bool state) public onlyOwner {
whitelist[target] = state;
}
/// @notice Function to find owner of a given native token
function ownerOf(uint256 id) public view virtual returns (address owner) {
owner = _ownerOf[id];
if (owner == address(0)) {
revert NotFound();
}
}
/// @notice tokenURI must be implemented by child contract
function tokenURI(uint256 id) public view virtual returns (string memory);
/// @notice Function for token approvals
/// @dev This function assumes id / native if amount less than or equal to current max id
function approve(
address spender,
uint256 amountOrId
) public virtual returns (bool) {
if (amountOrId <= minted && amountOrId > 0) {
address owner = _ownerOf[amountOrId];
if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
revert Unauthorized();
}
getApproved[amountOrId] = spender;
emit Approval(owner, spender, amountOrId);
} else {
allowance[msg.sender][spender] = amountOrId;
emit Approval(msg.sender, spender, amountOrId);
}
return true;
}
/// @notice Function native approvals
function setApprovalForAll(address operator, bool approved) public virtual {
isApprovedForAll[msg.sender][operator] = approved;
emit ApprovalForAll(msg.sender, operator, approved);
}
/// @notice Function for mixed transfers
/// @dev This function assumes id / native if amount less than or equal to current max id
function transferFrom(
address from,
address to,
uint256 amountOrId
) public virtual {
if (amountOrId <= minted) {
if (from != _ownerOf[amountOrId]) {
revert InvalidSender();
}
if (to == address(0)) {
revert InvalidRecipient();
}
if (
msg.sender != from &&
!isApprovedForAll[from][msg.sender] &&
msg.sender != getApproved[amountOrId]
) {
revert Unauthorized();
}
balanceOf[from] -= _getUnit();
unchecked {
balanceOf[to] += _getUnit();
}
_ownerOf[amountOrId] = to;
delete getApproved[amountOrId];
// update _owned for sender
uint256 updatedId = _owned[from][_owned[from].length - 1];
_owned[from][_ownedIndex[amountOrId]] = updatedId;
// pop
_owned[from].pop();
// update index for the moved id
_ownedIndex[updatedId] = _ownedIndex[amountOrId];
// push token to to owned
_owned[to].push(amountOrId);
// update index for to owned
_ownedIndex[amountOrId] = _owned[to].length - 1;
emit Transfer(from, to, amountOrId);
emit ERC20Transfer(from, to, _getUnit());
} else {
uint256 allowed = allowance[from][msg.sender];
if (allowed != type(uint256).max)
allowance[from][msg.sender] = allowed - amountOrId;
_transfer(from, to, amountOrId);
}
}
/// @notice Function for fractional transfers
function transfer(
address to,
uint256 amount
) public virtual returns (bool) {
return _transfer(msg.sender, to, amount);
}
/// @notice Function for native transfers with contract support
function safeTransferFrom(
address from,
address to,
uint256 id
) public virtual {
transferFrom(from, to, id);
if (
to.code.length != 0 &&
ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
ERC721Receiver.onERC721Received.selector
) {
revert UnsafeRecipient();
}
}
/// @notice Function for native transfers with contract support and callback data
function safeTransferFrom(
address from,
address to,
uint256 id,
bytes calldata data
) public virtual {
transferFrom(from, to, id);
if (
to.code.length != 0 &&
ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
ERC721Receiver.onERC721Received.selector
) {
revert UnsafeRecipient();
}
}
/// @notice Internal function for fractional transfers
function _transfer(
address from,
address to,
uint256 amount
) internal returns (bool) {
uint256 unit = _getUnit();
uint256 balanceBeforeSender = balanceOf[from];
uint256 balanceBeforeReceiver = balanceOf[to];
balanceOf[from] -= amount;
unchecked {
balanceOf[to] += amount;
}
// Skip burn for certain addresses to save gas
if (!whitelist[from]) {
uint256 tokens_to_burn = (balanceBeforeSender / unit) -
(balanceOf[from] / unit);
for (uint256 i = 0; i < tokens_to_burn; i++) {
_burn(from);
}
}
// Skip minting for certain addresses to save gas
if (!whitelist[to]) {
uint256 tokens_to_mint = (balanceOf[to] / unit) -
(balanceBeforeReceiver / unit);
for (uint256 i = 0; i < tokens_to_mint; i++) {
_mint(to);
}
}
emit ERC20Transfer(from, to, amount);
return true;
}
// Internal utility logic
function _getUnit() internal view returns (uint256) {
return 10 ** decimals;
}
function _mint(address to) internal virtual {
if (to == address(0)) {
revert InvalidRecipient();
}
unchecked {
minted++;
}
uint256 id = minted;
if (_ownerOf[id] != address(0)) {
revert AlreadyExists();
}
_ownerOf[id] = to;
_owned[to].push(id);
_ownedIndex[id] = _owned[to].length - 1;
emit Transfer(address(0), to, id);
}
function _burn(address from) internal virtual {
if (from == address(0)) {
revert InvalidSender();
}
uint256 id = _owned[from][_owned[from].length - 1];
_owned[from].pop();
delete _ownedIndex[id];
delete _ownerOf[id];
delete getApproved[id];
emit Transfer(from, address(0), id);
}
function _setNameSymbol(
string memory _name,
string memory _symbol
) internal {
name = _name;
symbol = _symbol;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
* denominator == 0.
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
* Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator.
// Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
uint256 twos = denominator & (0 - denominator);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
// works in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
* towards zero.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","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":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60c060405234801562000010575f80fd5b506040516200458f3803806200458f8339818101604052810190620000369190620002e8565b6040518060400160405280600981526020017f4572726f722034303400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4552524f52000000000000000000000000000000000000000000000000000000815250601261271084805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200010f576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508460019081620001ba91906200057c565b508360029081620001cc91906200057c565b508260ff1660808160ff1681525050608051600a620001ec9190620007e9565b82620001f9919062000839565b60a08181525050505050505069021e19e0c9bab240000060045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506040518060800160405280604481526020016200454b60449139600c90816200027b91906200057c565b505062000883565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002b28262000287565b9050919050565b620002c481620002a6565b8114620002cf575f80fd5b50565b5f81519050620002e281620002b9565b92915050565b5f602082840312156200030057620002ff62000283565b5b5f6200030f84828501620002d2565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200039457607f821691505b602082108103620003aa57620003a96200034f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200040e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d1565b6200041a8683620003d1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004646200045e620004588462000432565b6200043b565b62000432565b9050919050565b5f819050919050565b6200047f8362000444565b620004976200048e826200046b565b848454620003dd565b825550505050565b5f90565b620004ad6200049f565b620004ba81848462000474565b505050565b5b81811015620004e157620004d55f82620004a3565b600181019050620004c0565b5050565b601f8211156200053057620004fa81620003b0565b6200050584620003c2565b8101602085101562000515578190505b6200052d6200052485620003c2565b830182620004bf565b50505b505050565b5f82821c905092915050565b5f620005525f198460080262000535565b1980831691505092915050565b5f6200056c838362000541565b9150826002028217905092915050565b620005878262000318565b67ffffffffffffffff811115620005a357620005a262000322565b5b620005af82546200037c565b620005bc828285620004e5565b5f60209050601f831160018114620005f2575f8415620005dd578287015190505b620005e985826200055f565b86555062000658565b601f1984166200060286620003b0565b5f5b828110156200062b5784890151825560018201915060208501945060208101905062000604565b868310156200064b578489015162000647601f89168262000541565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006ea57808604811115620006c257620006c162000660565b5b6001851615620006d25780820291505b8081029050620006e2856200068d565b9450620006a2565b94509492505050565b5f82620007045760019050620007d6565b8162000713575f9050620007d6565b81600181146200072c576002811462000737576200076d565b6001915050620007d6565b60ff8411156200074c576200074b62000660565b5b8360020a91508482111562000766576200076562000660565b5b50620007d6565b5060208310610133831016604e8410600b8410161715620007a75782820a905083811115620007a157620007a062000660565b5b620007d6565b620007b6848484600162000699565b92509050818404811115620007d057620007cf62000660565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007f58262000432565b91506200080283620007dd565b9250620008317fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006f3565b905092915050565b5f620008458262000432565b9150620008528362000432565b9250828202620008628162000432565b915082820484148315176200087c576200087b62000660565b5b5092915050565b60805160a051613c9f620008ac5f395f6108f601525f81816112c701526121200152613c9f5ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612c24565b60405180910390f35b6101e360048036038101906101de9190612c88565b6105dd565b6040516101f09190612cf2565b60405180910390f35b610213600480360381019061020e9190612d35565b61060d565b6040516102209190612d8d565b60405180910390f35b6102316108f4565b60405161023e9190612db5565b60405180910390f35b610261600480360381019061025c9190612efa565b610918565b005b61027d60048036038101906102789190612f41565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612fac565b60405180910390f35b6102c160048036038101906102bc9190612f41565b6112e9565b005b6102cb611418565b6040516102d89190612db5565b60405180910390f35b6102fb60048036038101906102f69190612fc5565b61141e565b005b61031760048036038101906103129190613065565b6114b0565b005b610333600480360381019061032e9190612c88565b61158c565b6040516103409190612cf2565b60405180910390f35b610363600480360381019061035e91906130a3565b61162a565b6040516103709190612db5565b60405180910390f35b61038161163f565b60405161038e9190612cf2565b60405180910390f35b61039f611662565b6040516103ac9190612c24565b60405180910390f35b6103cf60048036038101906103ca91906130a3565b6116ee565b6040516103dc9190612d8d565b60405180910390f35b6103ff60048036038101906103fa9190613065565b61170b565b005b61041b60048036038101906104169190612d35565b611803565b6040516104289190612d8d565b60405180910390f35b61044b6004803603810190610446919061312b565b611817565b005b61046760048036038101906104629190612c88565b61194c565b6040516104749190612c24565b60405180910390f35b610485611d9f565b6040516104929190612c24565b60405180910390f35b6104b560048036038101906104b091906131af565b611e2b565b6040516104c29190612db5565b60405180910390f35b6104e560048036038101906104e09190612efa565b611e4b565b005b61050160048036038101906104fc91906131af565b611ee2565b60405161050e9190612d8d565b60405180910390f35b61051f611f0c565b60405161052c9190612c24565b60405180910390f35b61054f600480360381019061054a91906130a3565b611f98565b005b6001805461055e9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061321a565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612db5565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612db5565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906133e7565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761211d565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906134e3565b92505081905550610c7161211d565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906134e3565b81548110610dd857610dd7613516565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613516565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613543565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906134e3565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61211d565b6040516110599190612db5565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906134e3565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484612150565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906135a3565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612494565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061321a565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612d8d565b60405180910390a35050565b5f61180f338484612150565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613697565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061321a565b9050111561199657600d61196f836124b8565b60405160200161198092919061379d565b6040516020818303038152906040529050611d9a565b5f826040516020016119a891906137e0565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600981526020017f677265656e2e706e67000000000000000000000000000000000000000000000081525091506040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509050611c46565b60a08360ff1611611ac6576040518060400160405280600881526020017f626c75652e706e6700000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509050611c45565b60d28360ff1611611b46576040518060400160405280600a81526020017f707572706c652e706e670000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f507572706c6500000000000000000000000000000000000000000000000000008152509050611c44565b60f08360ff1611611bc6576040518060400160405280600a81526020017f6f72616e67652e706e670000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509050611c43565b60ff8360ff1611611c42576040518060400160405280600781526020017f7265642e706e670000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5f611c50866124b8565b604051602001611c609190613820565b604051602081830303815290604052604051602001611c7f9190613973565b604051602081830303815290604052600c84604051602001611ca292919061379d565b604051602081830303815290604052604051602001611cc2929190613994565b60405160208183030381529060405290505f82604051602001611ce59190613a27565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611d42929190613994565b60405160208183030381529060405281604051602001611d63929190613994565b604051602081830303815290604052604051602001611d829190613a6e565b60405160208183030381529060405296505050505050505b919050565b600d8054611dac9061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd89061321a565b8015611e235780601f10611dfa57610100808354040283529160200191611e23565b820191905f5260205f20905b815481529060010190602001808311611e0657829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ecf576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611ede91906133e7565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f199061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f459061321a565b8015611f905780601f10611f6757610100808354040283529160200191611f90565b820191905f5260205f20905b815481529060010190602001808311611f7357829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612081576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a61214b9190613bc2565b905090565b5f8061215a61211d565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461222a91906134e3565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661234e575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123139190613c39565b848461231f9190613c39565b61232991906134e3565b90505f5b8181101561234b5761233e89612582565b808060010191505061232d565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612421575f83826123a99190613c39565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123f29190613c39565b6123fc91906134e3565b90505f5b8181101561241e57612411886127c7565b8080600101915050612400565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161247e9190612db5565b60405180910390a3600193505050509392505050565b81600190816124a391906133e7565b5080600290816124b391906133e7565b505050565b60605f60016124c684612a49565b0190505f8167ffffffffffffffff8111156124e4576124e3612dd6565b5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505f82602001820190505b600115612577578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256c5761256b613c0c565b5b0494505f8503612523575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125e7576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061267291906134e3565b8154811061268357612682613516565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806126db576126da613543565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361282c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d8576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506129d591906134e3565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aa5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a9b57612a9a613c0c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ae2576d04ee2d6d415b85acef81000000008381612ad857612ad7613c0c565b5b0492506020810190505b662386f26fc100008310612b1157662386f26fc100008381612b0757612b06613c0c565b5b0492506010810190505b6305f5e1008310612b3a576305f5e1008381612b3057612b2f613c0c565b5b0492506008810190505b6127108310612b5f576127108381612b5557612b54613c0c565b5b0492506004810190505b60648310612b825760648381612b7857612b77613c0c565b5b0492506002810190505b600a8310612b91576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd1578082015181840152602081019050612bb6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf682612b9a565b612c008185612ba4565b9350612c10818560208601612bb4565b612c1981612bdc565b840191505092915050565b5f6020820190508181035f830152612c3c8184612bec565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612c6781612c55565b8114612c71575f80fd5b50565b5f81359050612c8281612c5e565b92915050565b5f60208284031215612c9d57612c9c612c4d565b5b5f612caa84828501612c74565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cdc82612cb3565b9050919050565b612cec81612cd2565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b612d1481612cd2565b8114612d1e575f80fd5b50565b5f81359050612d2f81612d0b565b92915050565b5f8060408385031215612d4b57612d4a612c4d565b5b5f612d5885828601612d21565b9250506020612d6985828601612c74565b9150509250929050565b5f8115159050919050565b612d8781612d73565b82525050565b5f602082019050612da05f830184612d7e565b92915050565b612daf81612c55565b82525050565b5f602082019050612dc85f830184612da6565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0c82612bdc565b810181811067ffffffffffffffff82111715612e2b57612e2a612dd6565b5b80604052505050565b5f612e3d612c44565b9050612e498282612e03565b919050565b5f67ffffffffffffffff821115612e6857612e67612dd6565b5b612e7182612bdc565b9050602081019050919050565b828183375f83830152505050565b5f612e9e612e9984612e4e565b612e34565b905082815260208101848484011115612eba57612eb9612dd2565b5b612ec5848285612e7e565b509392505050565b5f82601f830112612ee157612ee0612dce565b5b8135612ef1848260208601612e8c565b91505092915050565b5f60208284031215612f0f57612f0e612c4d565b5b5f82013567ffffffffffffffff811115612f2c57612f2b612c51565b5b612f3884828501612ecd565b91505092915050565b5f805f60608486031215612f5857612f57612c4d565b5b5f612f6586828701612d21565b9350506020612f7686828701612d21565b9250506040612f8786828701612c74565b9150509250925092565b5f60ff82169050919050565b612fa681612f91565b82525050565b5f602082019050612fbf5f830184612f9d565b92915050565b5f8060408385031215612fdb57612fda612c4d565b5b5f83013567ffffffffffffffff811115612ff857612ff7612c51565b5b61300485828601612ecd565b925050602083013567ffffffffffffffff81111561302557613024612c51565b5b61303185828601612ecd565b9150509250929050565b61304481612d73565b811461304e575f80fd5b50565b5f8135905061305f8161303b565b92915050565b5f806040838503121561307b5761307a612c4d565b5b5f61308885828601612d21565b925050602061309985828601613051565b9150509250929050565b5f602082840312156130b8576130b7612c4d565b5b5f6130c584828501612d21565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126130eb576130ea612dce565b5b8235905067ffffffffffffffff811115613108576131076130ce565b5b602083019150836001820283011115613124576131236130d2565b5b9250929050565b5f805f805f6080868803121561314457613143612c4d565b5b5f61315188828901612d21565b955050602061316288828901612d21565b945050604061317388828901612c74565b935050606086013567ffffffffffffffff81111561319457613193612c51565b5b6131a0888289016130d6565b92509250509295509295909350565b5f80604083850312156131c5576131c4612c4d565b5b5f6131d285828601612d21565b92505060206131e385828601612d21565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061323157607f821691505b602082108103613244576132436131ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026132a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261326b565b6132b0868361326b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6132eb6132e66132e184612c55565b6132c8565b612c55565b9050919050565b5f819050919050565b613304836132d1565b613318613310826132f2565b848454613277565b825550505050565b5f90565b61332c613320565b6133378184846132fb565b505050565b5b8181101561335a5761334f5f82613324565b60018101905061333d565b5050565b601f82111561339f576133708161324a565b6133798461325c565b81016020851015613388578190505b61339c6133948561325c565b83018261333c565b50505b505050565b5f82821c905092915050565b5f6133bf5f19846008026133a4565b1980831691505092915050565b5f6133d783836133b0565b9150826002028217905092915050565b6133f082612b9a565b67ffffffffffffffff81111561340957613408612dd6565b5b613413825461321a565b61341e82828561335e565b5f60209050601f83116001811461344f575f841561343d578287015190505b61344785826133cc565b8655506134ae565b601f19841661345d8661324a565b5f5b828110156134845784890151825560018201915060208501945060208101905061345f565b868310156134a1578489015161349d601f8916826133b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134ed82612c55565b91506134f883612c55565b92508282039050818111156135105761350f6134b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61358e5f83613570565b915061359982613580565b5f82019050919050565b5f6080820190506135b65f830186612ce3565b6135c36020830185612ce3565b6135d06040830184612da6565b81810360608301526135e181613583565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61361f816135eb565b8114613629575f80fd5b50565b5f8151905061363a81613616565b92915050565b5f6020828403121561365557613654612c4d565b5b5f6136628482850161362c565b91505092915050565b5f6136768385613570565b9350613683838584612e7e565b61368c83612bdc565b840190509392505050565b5f6080820190506136aa5f830188612ce3565b6136b76020830187612ce3565b6136c46040830186612da6565b81810360608301526136d781848661366b565b90509695505050505050565b5f81905092915050565b5f81546136f98161321a565b61370381866136e3565b9450600182165f811461371d576001811461373257613764565b60ff1983168652811515820286019350613764565b61373b8561324a565b5f5b8381101561375c5781548189015260018201915060208101905061373d565b838801955050505b50505092915050565b5f61377782612b9a565b61378181856136e3565b9350613791818560208601612bb4565b80840191505092915050565b5f6137a882856136ed565b91506137b4828461376d565b91508190509392505050565b5f819050919050565b6137da6137d582612c55565b6137c0565b82525050565b5f6137eb82846137c9565b60208201915081905092915050565b7f7b226e616d65223a20224572726f722023000000000000000000000000000000815250565b5f61382a826137fa565b60118201915061383a828461376d565b915081905092915050565b7f222c226465736372697074696f6e223a225468652048545450203430342c20345f8201527f3034204e6f7420466f756e642c203430342c20343034204572726f722c20506160208201527f6765204e6f7420466f756e64206f722046696c65204e6f7420466f756e64206560408201527f72726f72206d657373616765206973206120487970657274657874205472616e60608201527f736665722050726f746f636f6c20284854545029207374616e6461726420726560808201527f73706f6e736520636f64652c20696e20636f6d7075746572206e6574776f726b60a08201527f20636f6d6d756e69636174696f6e732c222c22696d616765223a22000000000060c082015250565b5f61395d60db836136e3565b915061396882613845565b60db82019050919050565b5f61397e828461376d565b915061398982613951565b915081905092915050565b5f61399f828561376d565b91506139ab828461376d565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a22435f8201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000602082015250565b5f613a11602f836136e3565b9150613a1c826139b7565b602f82019050919050565b5f613a3182613a05565b9150613a3d828461376d565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a7882613a48565b601b82019150613a88828461376d565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613ae857808604811115613ac457613ac36134b6565b5b6001851615613ad35780820291505b8081029050613ae185613a93565b9450613aa8565b94509492505050565b5f82613b005760019050613bbb565b81613b0d575f9050613bbb565b8160018114613b235760028114613b2d57613b5c565b6001915050613bbb565b60ff841115613b3f57613b3e6134b6565b5b8360020a915084821115613b5657613b556134b6565b5b50613bbb565b5060208310610133831016604e8410600b8410161715613b915782820a905083811115613b8c57613b8b6134b6565b5b613bbb565b613b9e8484846001613a9f565b92509050818404811115613bb557613bb46134b6565b5b81810290505b9392505050565b5f613bcc82612c55565b9150613bd783612f91565b9250613c047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613af1565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c4382612c55565b9150613c4e83612c55565b925082613c5e57613c5d613c0c565b5b82820490509291505056fea2646970667358221220a5d0eb971afd142d29638e167b2843c674da256bf703733ab60fc369f869c1c664736f6c6343000818003368747470733a2f2f697066732e696f2f697066732f516d64464d625563525053637a52366e47444e346f75464363394834346a614e487931394b5a6e375733554256312f000000000000000000000000e27d36569de0ecc243484218fbcd82764ca225eb
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612c24565b60405180910390f35b6101e360048036038101906101de9190612c88565b6105dd565b6040516101f09190612cf2565b60405180910390f35b610213600480360381019061020e9190612d35565b61060d565b6040516102209190612d8d565b60405180910390f35b6102316108f4565b60405161023e9190612db5565b60405180910390f35b610261600480360381019061025c9190612efa565b610918565b005b61027d60048036038101906102789190612f41565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e9190612fac565b60405180910390f35b6102c160048036038101906102bc9190612f41565b6112e9565b005b6102cb611418565b6040516102d89190612db5565b60405180910390f35b6102fb60048036038101906102f69190612fc5565b61141e565b005b61031760048036038101906103129190613065565b6114b0565b005b610333600480360381019061032e9190612c88565b61158c565b6040516103409190612cf2565b60405180910390f35b610363600480360381019061035e91906130a3565b61162a565b6040516103709190612db5565b60405180910390f35b61038161163f565b60405161038e9190612cf2565b60405180910390f35b61039f611662565b6040516103ac9190612c24565b60405180910390f35b6103cf60048036038101906103ca91906130a3565b6116ee565b6040516103dc9190612d8d565b60405180910390f35b6103ff60048036038101906103fa9190613065565b61170b565b005b61041b60048036038101906104169190612d35565b611803565b6040516104289190612d8d565b60405180910390f35b61044b6004803603810190610446919061312b565b611817565b005b61046760048036038101906104629190612c88565b61194c565b6040516104749190612c24565b60405180910390f35b610485611d9f565b6040516104929190612c24565b60405180910390f35b6104b560048036038101906104b091906131af565b611e2b565b6040516104c29190612db5565b60405180910390f35b6104e560048036038101906104e09190612efa565b611e4b565b005b61050160048036038101906104fc91906131af565b611ee2565b60405161050e9190612d8d565b60405180910390f35b61051f611f0c565b60405161052c9190612c24565b60405180910390f35b61054f600480360381019061054a91906130a3565b611f98565b005b6001805461055e9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061321a565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612db5565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612db5565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab91906133e7565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761211d565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c6291906134e3565b92505081905550610c7161211d565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc791906134e3565b81548110610dd857610dd7613516565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613516565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c613543565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f8591906134e3565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61211d565b6040516110599190612db5565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461119357818161111691906134e3565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e848484612150565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a939291906135a3565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612494565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061321a565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061321a565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612d8d565b60405180910390a35050565b5f61180f338484612150565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613697565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec9190613640565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061321a565b9050111561199657600d61196f836124b8565b60405160200161198092919061379d565b6040516020818303038152906040529050611d9a565b5f826040516020016119a891906137e0565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600981526020017f677265656e2e706e67000000000000000000000000000000000000000000000081525091506040518060400160405280600581526020017f477265656e0000000000000000000000000000000000000000000000000000008152509050611c46565b60a08360ff1611611ac6576040518060400160405280600881526020017f626c75652e706e6700000000000000000000000000000000000000000000000081525091506040518060400160405280600481526020017f426c7565000000000000000000000000000000000000000000000000000000008152509050611c45565b60d28360ff1611611b46576040518060400160405280600a81526020017f707572706c652e706e670000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f507572706c6500000000000000000000000000000000000000000000000000008152509050611c44565b60f08360ff1611611bc6576040518060400160405280600a81526020017f6f72616e67652e706e670000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f4f72616e676500000000000000000000000000000000000000000000000000008152509050611c43565b60ff8360ff1611611c42576040518060400160405280600781526020017f7265642e706e670000000000000000000000000000000000000000000000000081525091506040518060400160405280600381526020017f526564000000000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5f611c50866124b8565b604051602001611c609190613820565b604051602081830303815290604052604051602001611c7f9190613973565b604051602081830303815290604052600c84604051602001611ca292919061379d565b604051602081830303815290604052604051602001611cc2929190613994565b60405160208183030381529060405290505f82604051602001611ce59190613a27565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611d42929190613994565b60405160208183030381529060405281604051602001611d63929190613994565b604051602081830303815290604052604051602001611d829190613a6e565b60405160208183030381529060405296505050505050505b919050565b600d8054611dac9061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611dd89061321a565b8015611e235780601f10611dfa57610100808354040283529160200191611e23565b820191905f5260205f20905b815481529060010190602001808311611e0657829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ecf576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611ede91906133e7565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f199061321a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f459061321a565b8015611f905780601f10611f6757610100808354040283529160200191611f90565b820191905f5260205f20905b815481529060010190602001808311611f7357829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461201c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612081576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a61214b9190613bc2565b905090565b5f8061215a61211d565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461222a91906134e3565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661234e575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123139190613c39565b848461231f9190613c39565b61232991906134e3565b90505f5b8181101561234b5761233e89612582565b808060010191505061232d565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16612421575f83826123a99190613c39565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123f29190613c39565b6123fc91906134e3565b90505f5b8181101561241e57612411886127c7565b8080600101915050612400565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878760405161247e9190612db5565b60405180910390a3600193505050509392505050565b81600190816124a391906133e7565b5080600290816124b391906133e7565b505050565b60605f60016124c684612a49565b0190505f8167ffffffffffffffff8111156124e4576124e3612dd6565b5b6040519080825280601f01601f1916602001820160405280156125165781602001600182028036833780820191505090505b5090505f82602001820190505b600115612577578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161256c5761256b613c0c565b5b0494505f8503612523575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125e7576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054905061267291906134e3565b8154811061268357612682613516565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208054806126db576126da613543565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361282c576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146128d8576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506129d591906134e3565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612aa5577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a9b57612a9a613c0c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612ae2576d04ee2d6d415b85acef81000000008381612ad857612ad7613c0c565b5b0492506020810190505b662386f26fc100008310612b1157662386f26fc100008381612b0757612b06613c0c565b5b0492506010810190505b6305f5e1008310612b3a576305f5e1008381612b3057612b2f613c0c565b5b0492506008810190505b6127108310612b5f576127108381612b5557612b54613c0c565b5b0492506004810190505b60648310612b825760648381612b7857612b77613c0c565b5b0492506002810190505b600a8310612b91576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612bd1578082015181840152602081019050612bb6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612bf682612b9a565b612c008185612ba4565b9350612c10818560208601612bb4565b612c1981612bdc565b840191505092915050565b5f6020820190508181035f830152612c3c8184612bec565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612c6781612c55565b8114612c71575f80fd5b50565b5f81359050612c8281612c5e565b92915050565b5f60208284031215612c9d57612c9c612c4d565b5b5f612caa84828501612c74565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612cdc82612cb3565b9050919050565b612cec81612cd2565b82525050565b5f602082019050612d055f830184612ce3565b92915050565b612d1481612cd2565b8114612d1e575f80fd5b50565b5f81359050612d2f81612d0b565b92915050565b5f8060408385031215612d4b57612d4a612c4d565b5b5f612d5885828601612d21565b9250506020612d6985828601612c74565b9150509250929050565b5f8115159050919050565b612d8781612d73565b82525050565b5f602082019050612da05f830184612d7e565b92915050565b612daf81612c55565b82525050565b5f602082019050612dc85f830184612da6565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e0c82612bdc565b810181811067ffffffffffffffff82111715612e2b57612e2a612dd6565b5b80604052505050565b5f612e3d612c44565b9050612e498282612e03565b919050565b5f67ffffffffffffffff821115612e6857612e67612dd6565b5b612e7182612bdc565b9050602081019050919050565b828183375f83830152505050565b5f612e9e612e9984612e4e565b612e34565b905082815260208101848484011115612eba57612eb9612dd2565b5b612ec5848285612e7e565b509392505050565b5f82601f830112612ee157612ee0612dce565b5b8135612ef1848260208601612e8c565b91505092915050565b5f60208284031215612f0f57612f0e612c4d565b5b5f82013567ffffffffffffffff811115612f2c57612f2b612c51565b5b612f3884828501612ecd565b91505092915050565b5f805f60608486031215612f5857612f57612c4d565b5b5f612f6586828701612d21565b9350506020612f7686828701612d21565b9250506040612f8786828701612c74565b9150509250925092565b5f60ff82169050919050565b612fa681612f91565b82525050565b5f602082019050612fbf5f830184612f9d565b92915050565b5f8060408385031215612fdb57612fda612c4d565b5b5f83013567ffffffffffffffff811115612ff857612ff7612c51565b5b61300485828601612ecd565b925050602083013567ffffffffffffffff81111561302557613024612c51565b5b61303185828601612ecd565b9150509250929050565b61304481612d73565b811461304e575f80fd5b50565b5f8135905061305f8161303b565b92915050565b5f806040838503121561307b5761307a612c4d565b5b5f61308885828601612d21565b925050602061309985828601613051565b9150509250929050565b5f602082840312156130b8576130b7612c4d565b5b5f6130c584828501612d21565b91505092915050565b5f80fd5b5f80fd5b5f8083601f8401126130eb576130ea612dce565b5b8235905067ffffffffffffffff811115613108576131076130ce565b5b602083019150836001820283011115613124576131236130d2565b5b9250929050565b5f805f805f6080868803121561314457613143612c4d565b5b5f61315188828901612d21565b955050602061316288828901612d21565b945050604061317388828901612c74565b935050606086013567ffffffffffffffff81111561319457613193612c51565b5b6131a0888289016130d6565b92509250509295509295909350565b5f80604083850312156131c5576131c4612c4d565b5b5f6131d285828601612d21565b92505060206131e385828601612d21565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061323157607f821691505b602082108103613244576132436131ed565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026132a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261326b565b6132b0868361326b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6132eb6132e66132e184612c55565b6132c8565b612c55565b9050919050565b5f819050919050565b613304836132d1565b613318613310826132f2565b848454613277565b825550505050565b5f90565b61332c613320565b6133378184846132fb565b505050565b5b8181101561335a5761334f5f82613324565b60018101905061333d565b5050565b601f82111561339f576133708161324a565b6133798461325c565b81016020851015613388578190505b61339c6133948561325c565b83018261333c565b50505b505050565b5f82821c905092915050565b5f6133bf5f19846008026133a4565b1980831691505092915050565b5f6133d783836133b0565b9150826002028217905092915050565b6133f082612b9a565b67ffffffffffffffff81111561340957613408612dd6565b5b613413825461321a565b61341e82828561335e565b5f60209050601f83116001811461344f575f841561343d578287015190505b61344785826133cc565b8655506134ae565b601f19841661345d8661324a565b5f5b828110156134845784890151825560018201915060208501945060208101905061345f565b868310156134a1578489015161349d601f8916826133b0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6134ed82612c55565b91506134f883612c55565b92508282039050818111156135105761350f6134b6565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61358e5f83613570565b915061359982613580565b5f82019050919050565b5f6080820190506135b65f830186612ce3565b6135c36020830185612ce3565b6135d06040830184612da6565b81810360608301526135e181613583565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61361f816135eb565b8114613629575f80fd5b50565b5f8151905061363a81613616565b92915050565b5f6020828403121561365557613654612c4d565b5b5f6136628482850161362c565b91505092915050565b5f6136768385613570565b9350613683838584612e7e565b61368c83612bdc565b840190509392505050565b5f6080820190506136aa5f830188612ce3565b6136b76020830187612ce3565b6136c46040830186612da6565b81810360608301526136d781848661366b565b90509695505050505050565b5f81905092915050565b5f81546136f98161321a565b61370381866136e3565b9450600182165f811461371d576001811461373257613764565b60ff1983168652811515820286019350613764565b61373b8561324a565b5f5b8381101561375c5781548189015260018201915060208101905061373d565b838801955050505b50505092915050565b5f61377782612b9a565b61378181856136e3565b9350613791818560208601612bb4565b80840191505092915050565b5f6137a882856136ed565b91506137b4828461376d565b91508190509392505050565b5f819050919050565b6137da6137d582612c55565b6137c0565b82525050565b5f6137eb82846137c9565b60208201915081905092915050565b7f7b226e616d65223a20224572726f722023000000000000000000000000000000815250565b5f61382a826137fa565b60118201915061383a828461376d565b915081905092915050565b7f222c226465736372697074696f6e223a225468652048545450203430342c20345f8201527f3034204e6f7420466f756e642c203430342c20343034204572726f722c20506160208201527f6765204e6f7420466f756e64206f722046696c65204e6f7420466f756e64206560408201527f72726f72206d657373616765206973206120487970657274657874205472616e60608201527f736665722050726f746f636f6c20284854545029207374616e6461726420726560808201527f73706f6e736520636f64652c20696e20636f6d7075746572206e6574776f726b60a08201527f20636f6d6d756e69636174696f6e732c222c22696d616765223a22000000000060c082015250565b5f61395d60db836136e3565b915061396882613845565b60db82019050919050565b5f61397e828461376d565b915061398982613951565b915081905092915050565b5f61399f828561376d565b91506139ab828461376d565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a22435f8201527f6f6c6f72222c2276616c7565223a220000000000000000000000000000000000602082015250565b5f613a11602f836136e3565b9150613a1c826139b7565b602f82019050919050565b5f613a3182613a05565b9150613a3d828461376d565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a7882613a48565b601b82019150613a88828461376d565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613ae857808604811115613ac457613ac36134b6565b5b6001851615613ad35780820291505b8081029050613ae185613a93565b9450613aa8565b94509492505050565b5f82613b005760019050613bbb565b81613b0d575f9050613bbb565b8160018114613b235760028114613b2d57613b5c565b6001915050613bbb565b60ff841115613b3f57613b3e6134b6565b5b8360020a915084821115613b5657613b556134b6565b5b50613bbb565b5060208310610133831016604e8410600b8410161715613b915782820a905083811115613b8c57613b8b6134b6565b5b613bbb565b613b9e8484846001613a9f565b92509050818404811115613bb557613bb46134b6565b5b81810290505b9392505050565b5f613bcc82612c55565b9150613bd783612f91565b9250613c047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613af1565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c4382612c55565b9150613c4e83612c55565b925082613c5e57613c5d613c0c565b5b82820490509291505056fea2646970667358221220a5d0eb971afd142d29638e167b2843c674da256bf703733ab60fc369f869c1c664736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e27d36569de0ecc243484218fbcd82764ca225eb
-----Decoded View---------------
Arg [0] : _owner (address): 0xE27D36569de0eCC243484218fbCD82764Ca225Eb
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e27d36569de0ecc243484218fbcd82764ca225eb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 36 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.