ETH Price: $2,665.12 (-1.43%)

Token

Pack_Dividend_Tracker (Pack_Dividend_Tracker)
 

Overview

Max Total Supply

662,931,992.961077752480551782 Pack_Dividend_Tracker

Holders

196

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
723,172.195499257134349879 Pack_Dividend_Tracker

Value
$0.00
0xDDB2185a56C10403E462AA2B882cB4B59D7d5C70
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
PackDividendTracker

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion
File 1 of 20 : PackDividendTracker.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/math/SignedSafeMath.sol";
import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "./IDividendPayingToken.sol";
import "./IterableMapping.sol";
/// @notice The Pack dividend tracker contract
contract PackDividendTracker is ERC20, ERC20Burnable, AccessControl, IDividendPayingToken {
using SafeMath for uint256;
using SignedSafeMath for int256;
using IterableMapping for IterableMapping.Map;
// With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
// For more discussion about choosing the value of `magnitude`,
// see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
uint256 constant internal MAGNITUDE = 2 ** 128;
/// @notice Dividend tracker administration role
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 20 : AccessControl.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 20 : IAccessControl.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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

File 5 of 20 : ERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 20 : ERC20Burnable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 20 : IERC20Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 20 : IERC20.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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

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

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

File 12 of 20 : Math.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 20 : SafeCast.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
* checks.
*
* Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
* easily result in undesired exploitation or bugs, since developers usually
* assume that overflows raise errors. `SafeCast` restores this intuition by
* reverting the transaction when such an operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*
* Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
* all math on `uint256` and `int256` and then downcasting.
*/
library SafeCast {
/**
* @dev Returns the downcasted uint248 from uint256, reverting on
* overflow (when the input is greater than largest uint248).
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 20 : SafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 20 : SignedSafeMath.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SignedSafeMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SignedSafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SignedSafeMath {
/**
* @dev Returns the multiplication of two signed integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(int256 a, int256 b) internal pure returns (int256) {
return a * b;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 20 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @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))
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 17 of 20 : IUniswapV2Router01.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 18 of 20 : IUniswapV2Router02.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma solidity >=0.6.2;
import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 19 of 20 : IDividendPayingToken.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface IDividendPayingToken {
/// @notice View the amount of dividend in wei that an address can withdraw.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` can withdraw.
function dividendOf(address _owner) external view returns(uint256);
/// @dev This event MUST emit when ether is distributed to token holders.
/// @param from The address which sends ether to this contract.
/// @param weiAmount The amount of distributed ether in wei.
event DividendsDistributed(
address indexed from,
uint256 weiAmount
);
/// @dev This event MUST emit when an address withdraws their dividend.
/// @param to The address which withdraws ether from this contract.
/// @param weiAmount The amount of withdrawn ether in wei.
event DividendWithdrawn(
address indexed to,
uint256 weiAmount
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 20 of 20 : IterableMapping.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;
/// @notice Library to allow iteration of an ordered mapping of address -> uint
library IterableMapping {
struct Map {
address[] keys;
mapping(address => uint) values;
mapping(address => uint) indexOf;
mapping(address => bool) inserted;
}
/// @notice Gets the index in the mapping of the specified key
/// @param map The map to find the key in
/// @param key The key to get the index for
/// @return index The index of the key that was passed in
function getIndexOfKey(Map storage map, address key) public view returns (int index) {
if (!map.inserted[key]) {
return - 1;
}
return int(map.indexOf[key]);
}
/// @notice Get the key and a specific index
/// @param map The map to get the key from
/// @param index The index to retrieve the key from
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"optimizer": {
"enabled": true,
"runs": 20000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {
"contracts/IterableMapping.sol": {
"IterableMapping": "0x72dccaabd1979538a6c36feee2a2f9ea704b15a4"
}
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"ExcludeFromDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"accumulated","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeDividends","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"dividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAccount","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"int256","name":"index","type":"int256"},{"internalType":"int256","name":"iterationsUntilProcessed","type":"int256"},{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"getAccountAtIndex","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"int256","name":"index","type":"int256"},{"internalType":"int256","name":"iterationsUntilProcessed","type":"int256"},{"internalType":"uint256","name":"withdrawableDividends","type":"uint256"},{"internalType":"uint256","name":"totalDividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfTokenHolders","outputs":[{"internalType":"uint256","name":"holders","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"process","outputs":[{"internalType":"uint256","name":"numProcessed","type":"uint256"},{"internalType":"uint256","name":"numClaims","type":"uint256"},{"internalType":"uint256","name":"lastIndex","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"rescueToken","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"}],"name":"setRewardTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"setTokenAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setTokenBalanceForDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV2Router02","name":"router","type":"address"}],"name":"setUniswapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"withdrawable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"dividends","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6002608081815260e06040529060a05b60608152602001906001900390816200000f57505080516200003a9160109160209091019062000950565b503480156200004857600080fd5b5060408051808201825260158082527f5061636b5f4469766964656e645f547261636b6572000000000000000000000060208084018290528451808601909552918452908301529060036200009e838262000b12565b506004620000ad828262000b12565b5050670de0b6b3a7640000600f5550620000dd6000733ed182236f5d4754769a1cc182c5a07d17d4722b620001a4565b6200010c600080516020620043eb833981519152733ed182236f5d4754769a1cc182c5a07d17d4722b620001a4565b62000119600033620001a4565b62000134600080516020620043eb83398151915233620001a4565b6040805160208101909152739813037ee2218799597d83d4a5b6f3b6778218d9815262000166906013906001620009b0565b50620001743060016200022f565b6200018361dead60016200022f565b62000191600060016200022f565b6200019e3360016200022f565b62000d93565b620001b0828262000328565b6200022b5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001ea3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080516020620043eb8339815191526200024a8162000355565b6001600160a01b0383166000908152600c60205260408120805460ff19168415151790556200027b90849062000364565b60405163131836e760e21b8152600660048201526001600160a01b03841660248201527372dccaabd1979538a6c36feee2a2f9ea704b15a490634c60db9c9060440160006040518083038186803b158015620002d657600080fd5b505af4158015620002eb573d6000803e3d6000fd5b50506040516001600160a01b03861692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a2505050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b620003618133620003d2565b50565b6001600160a01b03821660009081526020819052604090205480821115620003a85760006200039483836200043f565b9050620003a2848262000454565b50505050565b80821015620003cd576000620003bf82846200043f565b9050620003a28482620004bf565b505050565b620003de828262000328565b6200022b57620003ee8162000504565b620003fb83602062000517565b6040516020016200040e92919062000c04565b60408051601f198184030181529082905262461bcd60e51b8252620004369160040162000c7d565b60405180910390fd5b60006200044d828462000cc8565b9392505050565b620004608282620006d0565b600e546200049f906200047f9062000479908462000782565b62000790565b6001600160a01b0384166000908152600a60205260409020549062000800565b6001600160a01b039092166000908152600a602052604090209190915550565b620004cb82826200080e565b600e546200049f90620004e49062000479908462000782565b6001600160a01b0384166000908152600a60205260409020549062000942565b60606200034f6001600160a01b03831660145b606060006200052883600262000cde565b6200053590600262000cf8565b6001600160401b038111156200054f576200054f62000a6e565b6040519080825280601f01601f1916602001820160405280156200057a576020820181803683370190505b509050600360fc1b8160008151811062000598576200059862000d0e565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110620005ca57620005ca62000d0e565b60200101906001600160f81b031916908160001a9053506000620005f084600262000cde565b620005fd90600162000cf8565b90505b60018111156200067f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811062000635576200063562000d0e565b1a60f81b8282815181106200064e576200064e62000d0e565b60200101906001600160f81b031916908160001a90535060049490941c93620006778162000d24565b905062000600565b5083156200044d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640162000436565b6001600160a01b038216620007285760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000436565b80600260008282546200073c919062000cf8565b90915550506001600160a01b03821660008181526020818152604080832080548601905551848152600080516020620043cb833981519152910160405180910390a35050565b60006200044d828462000cde565b60006001600160ff1b03821115620007fc5760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b606482015260840162000436565b5090565b60006200044d828462000d3e565b6001600160a01b038216620008705760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840162000436565b6001600160a01b03821660009081526020819052604090205481811015620008e65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840162000436565b6001600160a01b038316600081815260208181526040808320868603905560028054879003905551858152919291600080516020620043cb833981519152910160405180910390a3620003cd836000846001600160e01b038416565b60006200044d828462000d68565b828054828255906000526020600020908101928215620009a2579160200282015b82811115620009a2578251805162000991918491602090910190620009b0565b509160200191906001019062000971565b50620007fc92915062000a16565b82805482825590600052602060002090810192821562000a08579160200282015b8281111562000a0857825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620009d1565b50620007fc92915062000a37565b80821115620007fc57600062000a2d828262000a4e565b5060010162000a16565b5b80821115620007fc576000815560010162000a38565b508054600082559060005260206000209081019062000361919062000a37565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000a9957607f821691505b60208210810362000aba57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003cd57600081815260208120601f850160051c8101602086101562000ae95750805b601f850160051c820191505b8181101562000b0a5782815560010162000af5565b505050505050565b81516001600160401b0381111562000b2e5762000b2e62000a6e565b62000b468162000b3f845462000a84565b8462000ac0565b602080601f83116001811462000b7e576000841562000b655750858301515b600019600386901b1c1916600185901b17855562000b0a565b600085815260208120601f198616915b8281101562000baf5788860151825594840194600190910190840162000b8e565b508582101562000bce5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60005b8381101562000bfb57818101518382015260200162000be1565b50506000910152565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835162000c3e81601785016020880162000bde565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835162000c7181602884016020880162000bde565b01602801949350505050565b602081526000825180602084015262000c9e81604085016020870162000bde565b601f01601f19169190910160400192915050565b634e487b7160e01b600052601160045260246000fd5b818103818111156200034f576200034f62000cb2565b80820281158282048414176200034f576200034f62000cb2565b808201808211156200034f576200034f62000cb2565b634e487b7160e01b600052603260045260246000fd5b60008162000d365762000d3662000cb2565b506000190190565b818103600083128015838313168383128216171562000d615762000d6162000cb2565b5092915050565b808201828112600083128015821682158216171562000d8b5762000d8b62000cb2565b505092915050565b6136288062000da36000396000f3fe6080604052600436106102d55760003560e01c806370a0823111610179578063a9059cbb116100d6578063d75a9def1161008a578063e7841ec011610064578063e7841ec0146108bb578063fbcbc0f1146108d0578063ffb2c479146108f057600080fd5b8063d75a9def14610814578063dd62ed3e14610848578063e30443bc1461089b57600080fd5b8063b88a802f116100bb578063b88a802f146107bf578063bea9849e146107d4578063d547741f146107f457600080fd5b8063a9059cbb1461075c578063aafd847a1461077c57600080fd5b806391d148541161012d578063a217fddf11610112578063a217fddf14610707578063a457c2d71461071c578063a8b9d2401461073c57600080fd5b806391d148541461069f57806395d89b41146106f257600080fd5b80637bb7bed11161015e5780637bb7bed11461062457806385a6b3ae1461066957806391b89fba1461067f57600080fd5b806370a08231146105c157806379cc67901461060457600080fd5b8063248a9ca31161023257806336568abe116101e65780634460d3cf116101c05780634460d3cf1461052257806346493cd2146105425780635183d6fd1461056257600080fd5b806336568abe146104c257806339509351146104e257806342966c681461050257600080fd5b80632f2ff15d116102175780632f2ff15d146104705780633009a60914610490578063313ce567146104a657600080fd5b8063248a9ca31461042057806327ce01471461045057600080fd5b806309bbedde1161028957806318160ddd1161026e57806318160ddd146103cb578063201e81a8146103e057806323b872dd1461040057600080fd5b806309bbedde14610388578063163c7cef146103ab57600080fd5b80630483f7a0116102ba5780630483f7a01461032657806306fdde0314610346578063095ea7b31461036857600080fd5b806301ffc9a7146102e957806303c833021461031e57600080fd5b366102e4576102e261092b565b005b600080fd5b3480156102f557600080fd5b50610309610304366004612f83565b610a58565b60405190151581526020015b60405180910390f35b6102e261092b565b34801561033257600080fd5b506102e2610341366004613005565b610af1565b34801561035257600080fd5b5061035b610c53565b6040516103159190613062565b34801561037457600080fd5b506103096103833660046130b3565b610ce5565b34801561039457600080fd5b5061039d610cfd565b604051908152602001610315565b3480156103b757600080fd5b506102e26103c63660046130df565b610d92565b3480156103d757600080fd5b5060025461039d565b3480156103ec57600080fd5b506102e26103fb366004613127565b610dc2565b34801561040c57600080fd5b5061030961041b36600461320a565b611080565b34801561042c57600080fd5b5061039d61043b3660046130df565b60009081526005602052604090206001015490565b34801561045c57600080fd5b5061039d61046b36600461324b565b6110a6565b34801561047c57600080fd5b506102e261048b366004613268565b61111c565b34801561049c57600080fd5b5061039d60125481565b3480156104b257600080fd5b5060405160128152602001610315565b3480156104ce57600080fd5b506102e26104dd366004613268565b611141565b3480156104ee57600080fd5b506103096104fd3660046130b3565b6111f4565b34801561050e57600080fd5b506102e261051d3660046130df565b611240565b34801561052e57600080fd5b5061030961053d36600461324b565b61124a565b34801561054e57600080fd5b506102e261055d36600461324b565b6113ab565b34801561056e57600080fd5b5061058261057d3660046130df565b6113ff565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a001610315565b3480156105cd57600080fd5b5061039d6105dc36600461324b565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561061057600080fd5b506102e261061f3660046130b3565b61155d565b34801561063057600080fd5b5061064461063f3660046130df565b611572565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610315565b34801561067557600080fd5b5061039d60115481565b34801561068b57600080fd5b5061039d61069a36600461324b565b6115a9565b3480156106ab57600080fd5b506103096106ba366004613268565b600091825260056020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156106fe57600080fd5b5061035b6115b4565b34801561071357600080fd5b5061039d600081565b34801561072857600080fd5b506103096107373660046130b3565b6115c3565b34801561074857600080fd5b5061039d61075736600461324b565b61169f565b34801561076857600080fd5b506103096107773660046130b3565b6116d8565b34801561078857600080fd5b5061039d61079736600461324b565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205490565b3480156107cb57600080fd5b506103096116e6565b3480156107e057600080fd5b506102e26107ef36600461324b565b611734565b34801561080057600080fd5b506102e261080f366004613268565b6117ac565b34801561082057600080fd5b5061039d7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd681565b34801561085457600080fd5b5061039d61086336600461328d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3480156108a757600080fd5b506102e26108b63660046130b3565b6117d1565b3480156108c757600080fd5b5060125461039d565b3480156108dc57600080fd5b506105826108eb36600461324b565b611994565b3480156108fc57600080fd5b5061091061090b3660046130df565b611bf1565b60408051938452602084019290925290820152606001610315565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd661095581611e9c565b600061096060025490565b116109cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f20737570706c79000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b3415610a5557610a0c6109de60025490565b6109f934700100000000000000000000000000000000611ea6565b610a0391906132ea565b600e5490611eb2565b600e5560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2601154610a519034611eb2565b6011555b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610aeb57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6610b1b81611e9c565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016841515179055610b75908490611ebe565b6040517f4c60db9c0000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff841660248201527372dccaabd1979538a6c36feee2a2f9ea704b15a490634c60db9c9060440160006040518083038186803b158015610bf557600080fd5b505af4158015610c09573d6000803e3d6000fd5b505060405173ffffffffffffffffffffffffffffffffffffffff861692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a2505050565b606060038054610c6290613325565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e90613325565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b5050505050905090565b600033610cf3818585611f24565b5060019392505050565b6040517fdeb3d896000000000000000000000000000000000000000000000000000000008152600660048201526000907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015610d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8d9190613372565b905090565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6610dbc81611e9c565b50600f55565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6610dec81611e9c565b600382511115610e58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6d6178203320726577617264730000000000000000000000000000000000000060448201526064016109c3565b610e6460106000612e8f565b60005b825181101561106757600073ffffffffffffffffffffffffffffffffffffffff16838281518110610e9a57610e9a61338b565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614611055576040805160028082526060820183526000926020830190803683375050600d54604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905193945073ffffffffffffffffffffffffffffffffffffffff9091169263ad5c4648925060048083019260209291908290030181865afa158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7191906133ba565b81600081518110610f8457610f8461338b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050838281518110610fd057610fd061338b565b602002602001015181600181518110610feb57610feb61338b565b73ffffffffffffffffffffffffffffffffffffffff909216602092830291909101820152601080546001810182556000919091528251611052927f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67290920191840190612ead565b50505b8061105f816133d7565b915050610e67565b50815161107b906013906020850190612ead565b505050565b60003361108e8582856120d7565b6110998585856121a8565b60019150505b9392505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602090815260408083205491839052822054600e54700100000000000000000000000000000000926111129261110d92611107916111029190611ea6565b61220a565b906122c0565b6122cc565b610aeb91906132ea565b60008281526005602052604090206001015461113781611e9c565b61107b8383612338565b73ffffffffffffffffffffffffffffffffffffffff811633146111e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016109c3565b6111f0828261242c565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610cf3908290869061123b90879061340f565b611f24565b610a5533826124e7565b60007f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd661127681611e9c565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156112ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130e9190613372565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af115801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a29190613422565b91505b50919050565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd66113d581611e9c565b6111f07f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd683612338565b6040517fdeb3d8960000000000000000000000000000000000000000000000000000000081526006600482015260009081908190819081907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611473573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114979190613372565b86106114b157506000935083925082915081905080611554565b6040517fd1aa9e7e0000000000000000000000000000000000000000000000000000000081526006600482015260248101879052611549907372dccaabd1979538a6c36feee2a2f9ea704b15a49063d1aa9e7e90604401602060405180830381865af4158015611525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108eb91906133ba565b945094509450945094505b91939590929450565b6115688233836120d7565b6111f082826124e7565b6013818154811061158257600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6000610aeb8261169f565b606060048054610c6290613325565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109c3565b6116948286868403611f24565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600b6020526040812054610aeb906116d2846110a6565b90612565565b600033610cf38185856121a8565b6000806116f233612571565b60405181815290915060009033907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0929060200160405180910390a31515919050565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd661175e81611e9c565b600d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556111f0906001610af1565b6000828152600560205260409020600101546117c781611e9c565b61107b838361242c565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd66117fb81611e9c565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff1661107b57600f5482106118df5761183b8383611ebe565b6040517fbc2b405c0000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff84166024820152604481018390527372dccaabd1979538a6c36feee2a2f9ea704b15a49063bc2b405c9060640160006040518083038186803b1580156118c257600080fd5b505af41580156118d6573d6000803e3d6000fd5b50505050611983565b6118ea836000611ebe565b6040517f4c60db9c0000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff841660248201527372dccaabd1979538a6c36feee2a2f9ea704b15a490634c60db9c9060440160006040518083038186803b15801561196a57600080fd5b505af415801561197e573d6000803e3d6000fd5b505050505b61198e8360016126ef565b50505050565b6040517f17e142d10000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff8216602482015281906000908190819081907372dccaabd1979538a6c36feee2a2f9ea704b15a4906317e142d190604401602060405180830381865af4158015611a24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a489190613372565b93506000925060008412611bd257601254611a62856122cc565b1115611a8457611a7d611a7660125461220a565b8590612759565b9250611bd2565b6012546040517fdeb3d89600000000000000000000000000000000000000000000000000000000815260066004820152600091907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b189190613372565b11611b24576000611bb9565b6012546040517fdeb3d89600000000000000000000000000000000000000000000000000000000815260066004820152611bb991907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611b95573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d29190613372565b9050611bce611bc78261220a565b86906122c0565b9350505b611bdb8561169f565b9150611be6856110a6565b905091939590929450565b60008060007f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6611c2081611e9c565b6040517fdeb3d896000000000000000000000000000000000000000000000000000000008152600660048201526000907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611c8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb09190613372565b905080600003611ccc5760008060125494509450945050611e94565b6012546000805a90506000805b8a84108015611ce757508582105b15611e835784611cf6816133d7565b6040517fdeb3d896000000000000000000000000000000000000000000000000000000008152600660048201529096507372dccaabd1979538a6c36feee2a2f9ea704b15a4915063deb3d89690602401602060405180830381865af4158015611d63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d879190613372565b8510611d9257600094505b6040517fd1aa9e7e00000000000000000000000000000000000000000000000000000000815260066004820152602481018690526000907372dccaabd1979538a6c36feee2a2f9ea704b15a49063d1aa9e7e90604401602060405180830381865af4158015611e05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2991906133ba565b9050611e368160016126ef565b15611e495781611e45816133d7565b9250505b82611e53816133d7565b93505060005a905080851115611e7a57611e77611e708683612565565b8790611eb2565b95505b9350611cd99050565b601285905590985096509194505050505b509193909250565b610a558133612765565b600061109f828461343f565b600061109f828461340f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205480821115611f04576000611ef88383612565565b905061198e848261281f565b8082101561107b576000611f188284612565565b905061198e84826124e7565b73ffffffffffffffffffffffffffffffffffffffff8316611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff8216612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461198e578181101561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109c3565b61198e8484848403611f24565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4e6f207472616e7366657273000000000000000000000000000000000000000060448201526064016109c3565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8211156122bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e206160448201527f6e20696e7432353600000000000000000000000000000000000000000000000060648201526084016109c3565b5090565b600061109f8284613456565b6000808212156122bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f73697469766560448201526064016109c3565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166111f057600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556123ce3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16156111f057600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6124f18282612870565b61253861250c61110283600e54611ea690919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a6020526040902054906122c0565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600a602052604090209190915550565b600061109f828461347e565b60008061257d8361169f565b601054909150600090612591908390612a34565b90506000805b6010548110156126e65782156126d45773ffffffffffffffffffffffffffffffffffffffff86166000908152600b60205260409020546125d79084611eb2565b73ffffffffffffffffffffffffffffffffffffffff87166000818152600b6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906126339086815260200190565b60405180910390a26126d26126cb87601084815481106126555761265561338b565b906000526020600020018054806020026020016040519081016040528092919081815260200182805480156126c057602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311612695575b505050505086612a40565b8390611eb2565b505b806126de816133d7565b915050612597565b50949350505050565b6000806126fb84612571565b90508215158473ffffffffffffffffffffffffffffffffffffffff167fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0928360405161274891815260200190565b60405180910390a315159392505050565b600061109f8284613491565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166111f0576127a581612b3a565b6127b0836020612b59565b6040516020016127c19291906134b8565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526109c391600401613062565b6128298282612d9c565b61253861284461110283600e54611ea690919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205490612759565b73ffffffffffffffffffffffffffffffffffffffff8216612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054818110156129c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600061109f82846132ea565b600d546040517fb6f9de9500000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063b6f9de95908490612a9f90859088908a904290600401613539565b6000604051808303818588803b158015612ab857600080fd5b505af193505050508015612aca575060015b612b295773ffffffffffffffffffffffffffffffffffffffff84166000908152600b6020526040902054612afe9083612565565b73ffffffffffffffffffffffffffffffffffffffff85166000908152600b6020526040902055612b30565b508061109f565b5060009392505050565b6060610aeb73ffffffffffffffffffffffffffffffffffffffff831660145b60606000612b6883600261343f565b612b7390600261340f565b67ffffffffffffffff811115612b8b57612b8b6130f8565b6040519080825280601f01601f191660200182016040528015612bb5576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612bec57612bec61338b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c4f57612c4f61338b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612c8b84600261343f565b612c9690600161340f565b90505b6001811115612d33577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612cd757612cd761338b565b1a60f81b828281518110612ced57612ced61338b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612d2c816135bd565b9050612c99565b50831561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109c3565b73ffffffffffffffffffffffffffffffffffffffff8216612e19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109c3565b8060026000828254612e2b919061340f565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5080546000825590600052602060002090810190610a559190612f33565b828054828255906000526020600020908101928215612f27579160200282015b82811115612f2757825182547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909116178255602090920191600190910190612ecd565b506122bc929150612f50565b808211156122bc576000612f478282612f65565b50600101612f33565b5b808211156122bc5760008155600101612f51565b5080546000825590600052602060002090810190610a559190612f50565b600060208284031215612f9557600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461109f57600080fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610a5557600080fd5b8035612ff281612fc5565b919050565b8015158114610a5557600080fd5b6000806040838503121561301857600080fd5b823561302381612fc5565b9150602083013561303381612ff7565b809150509250929050565b60005b83811015613059578181015183820152602001613041565b50506000910152565b602081526000825180602084015261308181604085016020870161303e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b600080604083850312156130c657600080fd5b82356130d181612fc5565b946020939093013593505050565b6000602082840312156130f157600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561313a57600080fd5b823567ffffffffffffffff8082111561315257600080fd5b818501915085601f83011261316657600080fd5b813581811115613178576131786130f8565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156131bb576131bb6130f8565b6040529182528482019250838101850191888311156131d957600080fd5b938501935b828510156131fe576131ef85612fe7565b845293850193928501926131de565b98975050505050505050565b60008060006060848603121561321f57600080fd5b833561322a81612fc5565b9250602084013561323a81612fc5565b929592945050506040919091013590565b60006020828403121561325d57600080fd5b813561109f81612fc5565b6000806040838503121561327b57600080fd5b82359150602083013561303381612fc5565b600080604083850312156132a057600080fd5b82356132ab81612fc5565b9150602083013561303381612fc5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082613320577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600181811c9082168061333957607f821691505b6020821081036113a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006020828403121561338457600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156133cc57600080fd5b815161109f81612fc5565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613408576134086132bb565b5060010190565b80820180821115610aeb57610aeb6132bb565b60006020828403121561343457600080fd5b815161109f81612ff7565b8082028115828204841417610aeb57610aeb6132bb565b8082018281126000831280158216821582161715613476576134766132bb565b505092915050565b81810381811115610aeb57610aeb6132bb565b81810360008312801583831316838312821617156134b1576134b16132bb565b5092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516134f081601785016020880161303e565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161352d81602884016020880161303e565b01602801949350505050565b600060808201868352602060808185015281875180845260a086019150828901935060005b8181101561359057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161355e565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b6000816135cc576135cc6132bb565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fea26469706673582212209b90b8e7d7127cd7d701e30d2d7fbe2af5c088d6e7ceded813c2da79942c505464736f6c63430008130033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6

Deployed Bytecode

0x6080604052600436106102d55760003560e01c806370a0823111610179578063a9059cbb116100d6578063d75a9def1161008a578063e7841ec011610064578063e7841ec0146108bb578063fbcbc0f1146108d0578063ffb2c479146108f057600080fd5b8063d75a9def14610814578063dd62ed3e14610848578063e30443bc1461089b57600080fd5b8063b88a802f116100bb578063b88a802f146107bf578063bea9849e146107d4578063d547741f146107f457600080fd5b8063a9059cbb1461075c578063aafd847a1461077c57600080fd5b806391d148541161012d578063a217fddf11610112578063a217fddf14610707578063a457c2d71461071c578063a8b9d2401461073c57600080fd5b806391d148541461069f57806395d89b41146106f257600080fd5b80637bb7bed11161015e5780637bb7bed11461062457806385a6b3ae1461066957806391b89fba1461067f57600080fd5b806370a08231146105c157806379cc67901461060457600080fd5b8063248a9ca31161023257806336568abe116101e65780634460d3cf116101c05780634460d3cf1461052257806346493cd2146105425780635183d6fd1461056257600080fd5b806336568abe146104c257806339509351146104e257806342966c681461050257600080fd5b80632f2ff15d116102175780632f2ff15d146104705780633009a60914610490578063313ce567146104a657600080fd5b8063248a9ca31461042057806327ce01471461045057600080fd5b806309bbedde1161028957806318160ddd1161026e57806318160ddd146103cb578063201e81a8146103e057806323b872dd1461040057600080fd5b806309bbedde14610388578063163c7cef146103ab57600080fd5b80630483f7a0116102ba5780630483f7a01461032657806306fdde0314610346578063095ea7b31461036857600080fd5b806301ffc9a7146102e957806303c833021461031e57600080fd5b366102e4576102e261092b565b005b600080fd5b3480156102f557600080fd5b50610309610304366004612f83565b610a58565b60405190151581526020015b60405180910390f35b6102e261092b565b34801561033257600080fd5b506102e2610341366004613005565b610af1565b34801561035257600080fd5b5061035b610c53565b6040516103159190613062565b34801561037457600080fd5b506103096103833660046130b3565b610ce5565b34801561039457600080fd5b5061039d610cfd565b604051908152602001610315565b3480156103b757600080fd5b506102e26103c63660046130df565b610d92565b3480156103d757600080fd5b5060025461039d565b3480156103ec57600080fd5b506102e26103fb366004613127565b610dc2565b34801561040c57600080fd5b5061030961041b36600461320a565b611080565b34801561042c57600080fd5b5061039d61043b3660046130df565b60009081526005602052604090206001015490565b34801561045c57600080fd5b5061039d61046b36600461324b565b6110a6565b34801561047c57600080fd5b506102e261048b366004613268565b61111c565b34801561049c57600080fd5b5061039d60125481565b3480156104b257600080fd5b5060405160128152602001610315565b3480156104ce57600080fd5b506102e26104dd366004613268565b611141565b3480156104ee57600080fd5b506103096104fd3660046130b3565b6111f4565b34801561050e57600080fd5b506102e261051d3660046130df565b611240565b34801561052e57600080fd5b5061030961053d36600461324b565b61124a565b34801561054e57600080fd5b506102e261055d36600461324b565b6113ab565b34801561056e57600080fd5b5061058261057d3660046130df565b6113ff565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a001610315565b3480156105cd57600080fd5b5061039d6105dc36600461324b565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561061057600080fd5b506102e261061f3660046130b3565b61155d565b34801561063057600080fd5b5061064461063f3660046130df565b611572565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610315565b34801561067557600080fd5b5061039d60115481565b34801561068b57600080fd5b5061039d61069a36600461324b565b6115a9565b3480156106ab57600080fd5b506103096106ba366004613268565b600091825260056020908152604080842073ffffffffffffffffffffffffffffffffffffffff93909316845291905290205460ff1690565b3480156106fe57600080fd5b5061035b6115b4565b34801561071357600080fd5b5061039d600081565b34801561072857600080fd5b506103096107373660046130b3565b6115c3565b34801561074857600080fd5b5061039d61075736600461324b565b61169f565b34801561076857600080fd5b506103096107773660046130b3565b6116d8565b34801561078857600080fd5b5061039d61079736600461324b565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205490565b3480156107cb57600080fd5b506103096116e6565b3480156107e057600080fd5b506102e26107ef36600461324b565b611734565b34801561080057600080fd5b506102e261080f366004613268565b6117ac565b34801561082057600080fd5b5061039d7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd681565b34801561085457600080fd5b5061039d61086336600461328d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3480156108a757600080fd5b506102e26108b63660046130b3565b6117d1565b3480156108c757600080fd5b5060125461039d565b3480156108dc57600080fd5b506105826108eb36600461324b565b611994565b3480156108fc57600080fd5b5061091061090b3660046130df565b611bf1565b60408051938452602084019290925290820152606001610315565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd661095581611e9c565b600061096060025490565b116109cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f4e6f20737570706c79000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b3415610a5557610a0c6109de60025490565b6109f934700100000000000000000000000000000000611ea6565b610a0391906132ea565b600e5490611eb2565b600e5560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a2601154610a519034611eb2565b6011555b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610aeb57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6610b1b81611e9c565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016841515179055610b75908490611ebe565b6040517f4c60db9c0000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff841660248201527372dccaabd1979538a6c36feee2a2f9ea704b15a490634c60db9c9060440160006040518083038186803b158015610bf557600080fd5b505af4158015610c09573d6000803e3d6000fd5b505060405173ffffffffffffffffffffffffffffffffffffffff861692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a2505050565b606060038054610c6290613325565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8e90613325565b8015610cdb5780601f10610cb057610100808354040283529160200191610cdb565b820191906000526020600020905b815481529060010190602001808311610cbe57829003601f168201915b5050505050905090565b600033610cf3818585611f24565b5060019392505050565b6040517fdeb3d896000000000000000000000000000000000000000000000000000000008152600660048201526000907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015610d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8d9190613372565b905090565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6610dbc81611e9c565b50600f55565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6610dec81611e9c565b600382511115610e58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f6d6178203320726577617264730000000000000000000000000000000000000060448201526064016109c3565b610e6460106000612e8f565b60005b825181101561106757600073ffffffffffffffffffffffffffffffffffffffff16838281518110610e9a57610e9a61338b565b602002602001015173ffffffffffffffffffffffffffffffffffffffff1614611055576040805160028082526060820183526000926020830190803683375050600d54604080517fad5c4648000000000000000000000000000000000000000000000000000000008152905193945073ffffffffffffffffffffffffffffffffffffffff9091169263ad5c4648925060048083019260209291908290030181865afa158015610f4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7191906133ba565b81600081518110610f8457610f8461338b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050838281518110610fd057610fd061338b565b602002602001015181600181518110610feb57610feb61338b565b73ffffffffffffffffffffffffffffffffffffffff909216602092830291909101820152601080546001810182556000919091528251611052927f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67290920191840190612ead565b50505b8061105f816133d7565b915050610e67565b50815161107b906013906020850190612ead565b505050565b60003361108e8582856120d7565b6110998585856121a8565b60019150505b9392505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600a602090815260408083205491839052822054600e54700100000000000000000000000000000000926111129261110d92611107916111029190611ea6565b61220a565b906122c0565b6122cc565b610aeb91906132ea565b60008281526005602052604090206001015461113781611e9c565b61107b8383612338565b73ffffffffffffffffffffffffffffffffffffffff811633146111e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016109c3565b6111f0828261242c565b5050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610cf3908290869061123b90879061340f565b611f24565b610a5533826124e7565b60007f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd661127681611e9c565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff84169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156112ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061130e9190613372565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af115801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a29190613422565b91505b50919050565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd66113d581611e9c565b6111f07f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd683612338565b6040517fdeb3d8960000000000000000000000000000000000000000000000000000000081526006600482015260009081908190819081907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611473573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114979190613372565b86106114b157506000935083925082915081905080611554565b6040517fd1aa9e7e0000000000000000000000000000000000000000000000000000000081526006600482015260248101879052611549907372dccaabd1979538a6c36feee2a2f9ea704b15a49063d1aa9e7e90604401602060405180830381865af4158015611525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108eb91906133ba565b945094509450945094505b91939590929450565b6115688233836120d7565b6111f082826124e7565b6013818154811061158257600080fd5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6000610aeb8261169f565b606060048054610c6290613325565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016109c3565b6116948286868403611f24565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600b6020526040812054610aeb906116d2846110a6565b90612565565b600033610cf38185856121a8565b6000806116f233612571565b60405181815290915060009033907fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0929060200160405180910390a31515919050565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd661175e81611e9c565b600d80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556111f0906001610af1565b6000828152600560205260409020600101546117c781611e9c565b61107b838361242c565b7f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd66117fb81611e9c565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff1661107b57600f5482106118df5761183b8383611ebe565b6040517fbc2b405c0000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff84166024820152604481018390527372dccaabd1979538a6c36feee2a2f9ea704b15a49063bc2b405c9060640160006040518083038186803b1580156118c257600080fd5b505af41580156118d6573d6000803e3d6000fd5b50505050611983565b6118ea836000611ebe565b6040517f4c60db9c0000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff841660248201527372dccaabd1979538a6c36feee2a2f9ea704b15a490634c60db9c9060440160006040518083038186803b15801561196a57600080fd5b505af415801561197e573d6000803e3d6000fd5b505050505b61198e8360016126ef565b50505050565b6040517f17e142d10000000000000000000000000000000000000000000000000000000081526006600482015273ffffffffffffffffffffffffffffffffffffffff8216602482015281906000908190819081907372dccaabd1979538a6c36feee2a2f9ea704b15a4906317e142d190604401602060405180830381865af4158015611a24573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a489190613372565b93506000925060008412611bd257601254611a62856122cc565b1115611a8457611a7d611a7660125461220a565b8590612759565b9250611bd2565b6012546040517fdeb3d89600000000000000000000000000000000000000000000000000000000815260066004820152600091907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b189190613372565b11611b24576000611bb9565b6012546040517fdeb3d89600000000000000000000000000000000000000000000000000000000815260066004820152611bb991907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611b95573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d29190613372565b9050611bce611bc78261220a565b86906122c0565b9350505b611bdb8561169f565b9150611be6856110a6565b905091939590929450565b60008060007f9e262e26e9d5bf97da5c389e15529a31bb2b13d89967a4f6eab01792567d5fd6611c2081611e9c565b6040517fdeb3d896000000000000000000000000000000000000000000000000000000008152600660048201526000907372dccaabd1979538a6c36feee2a2f9ea704b15a49063deb3d89690602401602060405180830381865af4158015611c8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb09190613372565b905080600003611ccc5760008060125494509450945050611e94565b6012546000805a90506000805b8a84108015611ce757508582105b15611e835784611cf6816133d7565b6040517fdeb3d896000000000000000000000000000000000000000000000000000000008152600660048201529096507372dccaabd1979538a6c36feee2a2f9ea704b15a4915063deb3d89690602401602060405180830381865af4158015611d63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d879190613372565b8510611d9257600094505b6040517fd1aa9e7e00000000000000000000000000000000000000000000000000000000815260066004820152602481018690526000907372dccaabd1979538a6c36feee2a2f9ea704b15a49063d1aa9e7e90604401602060405180830381865af4158015611e05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e2991906133ba565b9050611e368160016126ef565b15611e495781611e45816133d7565b9250505b82611e53816133d7565b93505060005a905080851115611e7a57611e77611e708683612565565b8790611eb2565b95505b9350611cd99050565b601285905590985096509194505050505b509193909250565b610a558133612765565b600061109f828461343f565b600061109f828461340f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205480821115611f04576000611ef88383612565565b905061198e848261281f565b8082101561107b576000611f188284612565565b905061198e84826124e7565b73ffffffffffffffffffffffffffffffffffffffff8316611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff8216612069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461198e578181101561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016109c3565b61198e8484848403611f24565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f4e6f207472616e7366657273000000000000000000000000000000000000000060448201526064016109c3565b60007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8211156122bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e206160448201527f6e20696e7432353600000000000000000000000000000000000000000000000060648201526084016109c3565b5090565b600061109f8284613456565b6000808212156122bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f73697469766560448201526064016109c3565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166111f057600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff85168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790556123ce3390565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff16156111f057600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6124f18282612870565b61253861250c61110283600e54611ea690919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a6020526040902054906122c0565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600a602052604090209190915550565b600061109f828461347e565b60008061257d8361169f565b601054909150600090612591908390612a34565b90506000805b6010548110156126e65782156126d45773ffffffffffffffffffffffffffffffffffffffff86166000908152600b60205260409020546125d79084611eb2565b73ffffffffffffffffffffffffffffffffffffffff87166000818152600b6020526040908190209290925590517fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d906126339086815260200190565b60405180910390a26126d26126cb87601084815481106126555761265561338b565b906000526020600020018054806020026020016040519081016040528092919081815260200182805480156126c057602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff168152600190910190602001808311612695575b505050505086612a40565b8390611eb2565b505b806126de816133d7565b915050612597565b50949350505050565b6000806126fb84612571565b90508215158473ffffffffffffffffffffffffffffffffffffffff167fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf0928360405161274891815260200190565b60405180910390a315159392505050565b600061109f8284613491565b600082815260056020908152604080832073ffffffffffffffffffffffffffffffffffffffff8516845290915290205460ff166111f0576127a581612b3a565b6127b0836020612b59565b6040516020016127c19291906134b8565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290527f08c379a00000000000000000000000000000000000000000000000000000000082526109c391600401613062565b6128298282612d9c565b61253861284461110283600e54611ea690919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600a602052604090205490612759565b73ffffffffffffffffffffffffffffffffffffffff8216612913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208190526040902054818110156129c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016109c3565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600061109f82846132ea565b600d546040517fb6f9de9500000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063b6f9de95908490612a9f90859088908a904290600401613539565b6000604051808303818588803b158015612ab857600080fd5b505af193505050508015612aca575060015b612b295773ffffffffffffffffffffffffffffffffffffffff84166000908152600b6020526040902054612afe9083612565565b73ffffffffffffffffffffffffffffffffffffffff85166000908152600b6020526040902055612b30565b508061109f565b5060009392505050565b6060610aeb73ffffffffffffffffffffffffffffffffffffffff831660145b60606000612b6883600261343f565b612b7390600261340f565b67ffffffffffffffff811115612b8b57612b8b6130f8565b6040519080825280601f01601f191660200182016040528015612bb5576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612bec57612bec61338b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c4f57612c4f61338b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612c8b84600261343f565b612c9690600161340f565b90505b6001811115612d33577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612cd757612cd761338b565b1a60f81b828281518110612ced57612ced61338b565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612d2c816135bd565b9050612c99565b50831561109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016109c3565b73ffffffffffffffffffffffffffffffffffffffff8216612e19576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016109c3565b8060026000828254612e2b919061340f565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5080546000825590600052602060002090810190610a559190612f33565b828054828255906000526020600020908101928215612f27579160200282015b82811115612f2757825182547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909116178255602090920191600190910190612ecd565b506122bc929150612f50565b808211156122bc576000612f478282612f65565b50600101612f33565b5b808211156122bc5760008155600101612f51565b5080546000825590600052602060002090810190610a559190612f50565b600060208284031215612f9557600080fd5b81357fffffffff000000000000000000000000000000000000000000000000000000008116811461109f57600080fd5b73ffffffffffffffffffffffffffffffffffffffff81168114610a5557600080fd5b8035612ff281612fc5565b919050565b8015158114610a5557600080fd5b6000806040838503121561301857600080fd5b823561302381612fc5565b9150602083013561303381612ff7565b809150509250929050565b60005b83811015613059578181015183820152602001613041565b50506000910152565b602081526000825180602084015261308181604085016020870161303e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b600080604083850312156130c657600080fd5b82356130d181612fc5565b946020939093013593505050565b6000602082840312156130f157600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561313a57600080fd5b823567ffffffffffffffff8082111561315257600080fd5b818501915085601f83011261316657600080fd5b813581811115613178576131786130f8565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156131bb576131bb6130f8565b6040529182528482019250838101850191888311156131d957600080fd5b938501935b828510156131fe576131ef85612fe7565b845293850193928501926131de565b98975050505050505050565b60008060006060848603121561321f57600080fd5b833561322a81612fc5565b9250602084013561323a81612fc5565b929592945050506040919091013590565b60006020828403121561325d57600080fd5b813561109f81612fc5565b6000806040838503121561327b57600080fd5b82359150602083013561303381612fc5565b600080604083850312156132a057600080fd5b82356132ab81612fc5565b9150602083013561303381612fc5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082613320577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600181811c9082168061333957607f821691505b6020821081036113a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006020828403121561338457600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156133cc57600080fd5b815161109f81612fc5565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613408576134086132bb565b5060010190565b80820180821115610aeb57610aeb6132bb565b60006020828403121561343457600080fd5b815161109f81612ff7565b8082028115828204841417610aeb57610aeb6132bb565b8082018281126000831280158216821582161715613476576134766132bb565b505092915050565b81810381811115610aeb57610aeb6132bb565b81810360008312801583831316838312821617156134b1576134b16132bb565b5092915050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516134f081601785016020880161303e565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000601791840191820152835161352d81602884016020880161303e565b01602801949350505050565b600060808201868352602060808185015281875180845260a086019150828901935060005b8181101561359057845173ffffffffffffffffffffffffffffffffffffffff168352938301939183019160010161355e565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b6000816135cc576135cc6132bb565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fea26469706673582212209b90b8e7d7127cd7d701e30d2d7fbe2af5c088d6e7ceded813c2da79942c505464736f6c63430008130033

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

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