Token migration announcement. ParallelChain token contract has migrated to a new address.
ERC-20
Overview
Max Total Supply
400,000,000 XPLL
Holders
41 (0.00%)
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
XPLLToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-05-17
*/
// File: contracts/token/ERC20/IERC20.sol
pragma solidity ^0.5.16;
/**
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
* the optional functions; to access them see {ERC20Detailed}.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @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);
}
// File: contracts/math/SafeMath.sol
pragma solidity ^0.5.16;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when 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.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* - Subtraction cannot overflow.
*
* _Available since v2.4.0._
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
* - The divisor cannot be zero.
*
* _Available since v2.4.0._
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: contracts/GSN/Context.sol
pragma solidity ^0.5.16;
/*
* @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 GSN 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.
*/
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
return msg.sender;
}
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: contracts/ownership/Ownable.sol
pragma solidity ^0.5.16;
/**
* @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.
*
* 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.
*/
contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(isOwner(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Returns true if the caller is the current owner.
*/
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: contracts/token/ERC20/ERC20Detailed.sol
pragma solidity ^0.5.16;
/**
* @dev Optional functions from the ERC20 standard.
*/
contract ERC20Detailed is IERC20 {
string private _name;
string private _symbol;
uint8 private _decimals;
/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
* these values are immutable: they can only be set once during
* construction.
*/
constructor (string memory name, string memory symbol, uint8 decimals) public {
_name = name;
_symbol = symbol;
_decimals = decimals;
}
/**
* @dev Returns the name of the token.
*/
function name() public view returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view returns (uint8) {
return _decimals;
}
}
// File: contracts/cores/PrivateSaleKeeper.sol
pragma solidity ^0.5.16;
library PrivateSaleKeeper {
// 1: seed, 2: private sale 1, 3: private sale
struct PrivateData {
mapping (address => uint256[3]) privateAddresses;
}
struct InternalData {
mapping (address => uint256) internalFund;
mapping (address => uint) internalLockupDays;
}
function insert(PrivateData storage self, address key, uint256 _amount, uint _phase) internal returns (bool success) {
require(_phase >= 0 && _phase < 3, "Invalid private sale parameter");
require(_amount > 0, "PrivateSaleKeeper: Amount equals to 0");
uint256[3] memory record;
if(contains(self, key) == false) {
record[_phase] = _amount;
} else {
record = self.privateAddresses[key];
record[_phase] += _amount;
}
self.privateAddresses[key] = record;
success = true;
}
function get(PrivateData storage self, address key) internal view returns (uint256[3] memory) {
uint256[3] memory record;
if(contains(self, key)) {
record = self.privateAddresses[key];
}
return record;
}
function contains(PrivateData storage self, address key) internal view returns (bool){
uint256[3] memory record = self.privateAddresses[key];
for (uint i=1; i<record.length+1; i++) {
if(record[i-1] > 0)
{
return true;
}
}
return false;
}
function store(InternalData storage self, address key, uint256 _amount, uint _lockupdays) internal returns (bool success) {
require(_lockupdays > 0, "Store: Invalid number of days for lockup period");
self.internalLockupDays[key] = _lockupdays;
self.internalFund[key] = _amount;
success = true;
}
function getFund(InternalData storage self, address key) internal view returns (uint256) {
return self.internalFund[key];
}
function getLockup(InternalData storage self, address key) internal view returns (uint) {
return self.internalLockupDays[key];
}
}
// File: contracts/cores/DateTime.sol
pragma solidity ^0.5.16;
contract DateTime {
/* Date and Time utilities for ethereum contracts */
uint constant DAY_IN_SECONDS = 86400;
uint constant YEAR_IN_SECONDS = 31536000;
uint constant LEAP_YEAR_IN_SECONDS = 31622400;
uint constant HOUR_IN_SECONDS = 3600;
uint constant MINUTE_IN_SECONDS = 60;
uint16 constant ORIGIN_YEAR = 1970;
struct _DateTime {
uint16 year;
uint8 month;
uint8 day;
uint8 hour;
uint8 minute;
uint8 second;
uint8 weekday;
}
function isLeapYear(uint16 year) public pure returns (bool) {
if (year % 4 != 0) {
return false;
}
if (year % 100 != 0) {
return true;
}
if (year % 400 != 0) {
return false;
}
return true;
}
function leapYearsBefore(uint year) public pure returns (uint) {
year -= 1;
return year / 4 - year / 100 + year / 400;
}
function getDaysInMonth(uint8 month, uint16 year) public pure returns (uint8) {
if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) {
return 31;
}
else if (month == 4 || month == 6 || month == 9 || month == 11) {
return 30;
}
else if (isLeapYear(year)) {
return 29;
}
else {
return 28;
}
}
function parseTimestamp(uint timestamp) internal pure returns (_DateTime memory dt) {
uint secondsAccountedFor = 0;
uint buf;
uint8 i;
// Year
dt.year = getYear(timestamp);
buf = leapYearsBefore(dt.year) - leapYearsBefore(ORIGIN_YEAR);
secondsAccountedFor += LEAP_YEAR_IN_SECONDS * buf;
secondsAccountedFor += YEAR_IN_SECONDS * (dt.year - ORIGIN_YEAR - buf);
// Month
uint secondsInMonth;
for (i = 1; i <= 12; i++) {
secondsInMonth = DAY_IN_SECONDS * getDaysInMonth(i, dt.year);
if (secondsInMonth + secondsAccountedFor > timestamp) {
dt.month = i;
break;
}
secondsAccountedFor += secondsInMonth;
}
// Day
for (i = 1; i <= getDaysInMonth(dt.month, dt.year); i++) {
if (DAY_IN_SECONDS + secondsAccountedFor > timestamp) {
dt.day = i;
break;
}
secondsAccountedFor += DAY_IN_SECONDS;
}
// Hour
dt.hour = getHour(timestamp);
// Minute
dt.minute = getMinute(timestamp);
// Second
dt.second = getSecond(timestamp);
// Day of week.
dt.weekday = getWeekday(timestamp);
}
function getYear(uint timestamp) public pure returns (uint16) {
uint secondsAccountedFor = 0;
uint16 year;
uint numLeapYears;
// Year
year = uint16(ORIGIN_YEAR + timestamp / YEAR_IN_SECONDS);
numLeapYears = leapYearsBefore(year) - leapYearsBefore(ORIGIN_YEAR);
secondsAccountedFor += LEAP_YEAR_IN_SECONDS * numLeapYears;
secondsAccountedFor += YEAR_IN_SECONDS * (year - ORIGIN_YEAR - numLeapYears);
while (secondsAccountedFor > timestamp) {
if (isLeapYear(uint16(year - 1))) {
secondsAccountedFor -= LEAP_YEAR_IN_SECONDS;
}
else {
secondsAccountedFor -= YEAR_IN_SECONDS;
}
year -= 1;
}
return year;
}
function getMonth(uint timestamp) public pure returns (uint8) {
return parseTimestamp(timestamp).month;
}
function getDay(uint timestamp) public pure returns (uint8) {
return parseTimestamp(timestamp).day;
}
function getHour(uint timestamp) public pure returns (uint8) {
return uint8((timestamp / 60 / 60) % 24);
}
function getMinute(uint timestamp) public pure returns (uint8) {
return uint8((timestamp / 60) % 60);
}
function getSecond(uint timestamp) public pure returns (uint8) {
return uint8(timestamp % 60);
}
function getWeekday(uint timestamp) public pure returns (uint8) {
return uint8((timestamp / DAY_IN_SECONDS + 4) % 7);
}
function toTimestamp(uint16 year, uint8 month, uint8 day) public pure returns (uint timestamp) {
return toTimestamp(year, month, day, 0, 0, 0);
}
function toTimestamp(uint16 year, uint8 month, uint8 day, uint8 hour) public pure returns (uint timestamp) {
return toTimestamp(year, month, day, hour, 0, 0);
}
function toTimestamp(uint16 year, uint8 month, uint8 day, uint8 hour, uint8 minute) public pure returns (uint timestamp) {
return toTimestamp(year, month, day, hour, minute, 0);
}
function toTimestamp(uint16 year, uint8 month, uint8 day, uint8 hour, uint8 minute, uint8 second) public pure returns (uint timestamp) {
uint16 i;
// Year
for (i = ORIGIN_YEAR; i < year; i++) {
if (isLeapYear(i)) {
timestamp += LEAP_YEAR_IN_SECONDS;
}
else {
timestamp += YEAR_IN_SECONDS;
}
}
// Month
uint8[12] memory monthDayCounts;
monthDayCounts[0] = 31;
if (isLeapYear(year)) {
monthDayCounts[1] = 29;
}
else {
monthDayCounts[1] = 28;
}
monthDayCounts[2] = 31;
monthDayCounts[3] = 30;
monthDayCounts[4] = 31;
monthDayCounts[5] = 30;
monthDayCounts[6] = 31;
monthDayCounts[7] = 31;
monthDayCounts[8] = 30;
monthDayCounts[9] = 31;
monthDayCounts[10] = 30;
monthDayCounts[11] = 31;
for (i = 1; i < month; i++) {
timestamp += DAY_IN_SECONDS * monthDayCounts[i - 1];
}
// Day
timestamp += DAY_IN_SECONDS * (day - 1);
// Hour
timestamp += HOUR_IN_SECONDS * (hour);
// Minute
timestamp += MINUTE_IN_SECONDS * (minute);
// Second
timestamp += second;
return timestamp;
}
}
// File: contracts/token/ERC20/ERC20.sol
pragma solidity ^0.5.16;
/**
* @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 {ERC20Mintable}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of 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}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is IERC20, Ownable {
using SafeMath for uint256;
mapping (address => uint256) private _balances;
mapping (address => mapping (address => uint256)) private _allowances;
uint256 private _totalSupply;
PrivateSaleKeeper.PrivateData salesKeeper;
using PrivateSaleKeeper for PrivateSaleKeeper.PrivateData;
PrivateSaleKeeper.InternalData internalRecordKeeper;
using PrivateSaleKeeper for PrivateSaleKeeper.InternalData;
DateTime d = new DateTime();
uint private startDay = d.toTimestamp(2021, 7, 1);
function setLockupPeriod(uint _phase) internal pure returns (uint) {
require(_phase > 0 && _phase < 4, "Invalid phase number (1 - 3)");
if(_phase == 1) {
return 240 days;
} else if (_phase == 2) {
return 180 days;
} else if (_phase == 3) {
return 180 days;
} else {
return 0 days;
}
}
function getAmounts(address account) public view returns (uint256[3] memory) {
require(account == _msgSender() || isOwner(), "You dont have right to use this function");
return salesKeeper.get(account);
}
function getPrivateSaleAmount(address account, uint phase) public view returns (uint256) {
require(account == _msgSender(), "You dont have right to use this function");
require(phase > 0 && phase < 4, "Invalid phase number (1 - 3)");
return getAmounts(account)[phase-1];
}
function SavePrivateSaleRecord(address _to, uint256 _amount, uint _phase) internal {
require(_phase > 0 && _phase < 4, "Invalid phase number (1 - 3)");
salesKeeper.insert(_to, _amount, _phase-1);
}
function SaveInternalRecord(address _to, uint256 _amount, uint _lockupdays) internal {
require(_lockupdays > 0, "Invalid number of days for lockup period");
require(internalRecordKeeper.getFund(_to) == 0, "Address already has funds internally stored in it");
internalRecordKeeper.store(_to, _amount, _lockupdays);
}
function getStartDay() public view returns(uint16, uint8, uint8) {
return (d.getYear(startDay), d.getMonth(startDay), d.getDay(startDay));
}
function getReleaseTimeStamp(uint phase) internal view returns(uint) {
return startDay + setLockupPeriod(phase);
}
function getReleaseTimeStampForDays(uint numDays) internal view returns (uint) {
return startDay + (numDays * 1 days);
}
function getReleaseDate(uint phase) public view returns(uint16, uint8, uint8) {
return getDate(getReleaseTimeStamp(phase));
}
function getDate(uint day) internal view returns (uint16, uint8, uint8) {
return (d.getYear(day), d.getMonth(day), d.getDay(day));
}
function internalFundedAmount(address account) public view returns (uint) {
require(account == _msgSender() || isOwner(), "You dont have right to use this function");
return internalRecordKeeper.getFund(account);
}
function internalReleaseDate(address account) public view returns(uint16, uint8, uint8) {
require(account == _msgSender() || isOwner(), "You dont have right to use this function");
uint timeStamp = startDay + (internalRecordKeeper.getLockup(account) * 1 days);
return getDate(timeStamp);
}
function availableForTransfer(address account) public view returns (uint256) {
require(account == _msgSender() || _msgSender() == address(this), "You don't have right to use this function");
uint256 presaleAmountNotAvailable = 0;
uint256[3] memory records = getAmounts(account);
for (uint i=1; i<records.length+1; i++) {
if (now < getReleaseTimeStamp(i)) {
presaleAmountNotAvailable += getPrivateSaleAmount(account, i);
}
}
if( now < startDay + (internalRecordKeeper.getLockup(account) * 1 days)) {
presaleAmountNotAvailable += internalFundedAmount(account);
}
uint256 publicSaleToken = balanceOf(account) - presaleAmountNotAvailable;
return publicSaleToken;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public returns (bool) {
if(availableForTransfer(_msgSender()) >= amount) {
_transfer(_msgSender(), recipient, amount);
return true;
} else {
revert("Attempt to transfer more tokens than what is allowed at this time");
}
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20};
*
* Requirements:
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for `sender`'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "ERC20: Amount not greater than zero");
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements
*
* - `to` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal {
require(account != address(0), "ERC20: mint to the zero address");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal {
require(account != address(0), "ERC20: burn from the zero address");
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
*
* This is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
}
}
// File: contracts/access/Roles.sol
pragma solidity ^0.5.16;
/**
* @title Roles
* @dev Library for managing addresses assigned to a Role.
*/
library Roles {
struct Role {
mapping (address => bool) bearer;
}
/**
* @dev Give an account access to this role.
*/
function add(Role storage role, address account) internal {
require(!has(role, account), "Roles: account already has role");
role.bearer[account] = true;
}
/**
* @dev Remove an account's access to this role.
*/
function remove(Role storage role, address account) internal {
require(has(role, account), "Roles: account does not have role");
role.bearer[account] = false;
}
/**
* @dev Check if an account has this role.
* @return bool
*/
function has(Role storage role, address account) internal view returns (bool) {
require(account != address(0), "Roles: account is the zero address");
return role.bearer[account];
}
}
// File: contracts/access/roles/MinterRole.sol
pragma solidity ^0.5.16;
contract MinterRole is Context {
using Roles for Roles.Role;
event MinterAdded(address indexed account);
event MinterRemoved(address indexed account);
Roles.Role private _minters;
constructor () internal {
_addMinter(_msgSender());
}
modifier onlyMinter() {
require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
_;
}
function isMinter(address account) public view returns (bool) {
return _minters.has(account);
}
function addMinter(address account) public onlyMinter {
_addMinter(account);
}
function renounceMinter() public {
_removeMinter(_msgSender());
}
function _addMinter(address account) internal {
_minters.add(account);
emit MinterAdded(account);
}
function _removeMinter(address account) internal {
_minters.remove(account);
emit MinterRemoved(account);
}
}
// File: contracts/token/ERC20/ERC20Mintable.sol
pragma solidity ^0.5.16;
/**
* @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
* which have permission to mint (create) new tokens as they see fit.
*
* At construction, the deployer of the contract is the only minter.
*/
contract ERC20Mintable is ERC20, MinterRole {
/**
* @dev See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the {MinterRole}.
*/
function mint(address account, uint256 amount) public onlyMinter returns (bool) {
_mint(account, amount);
return true;
}
}
// File: contracts/access/roles/PauserRole.sol
pragma solidity ^0.5.16;
contract PauserRole is Context {
using Roles for Roles.Role;
event PauserAdded(address indexed account);
event PauserRemoved(address indexed account);
Roles.Role private _pausers;
constructor () internal {
_addPauser(_msgSender());
}
modifier onlyPauser() {
require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
_;
}
function isPauser(address account) public view returns (bool) {
return _pausers.has(account);
}
function addPauser(address account) public onlyPauser {
_addPauser(account);
}
function renouncePauser() public {
_removePauser(_msgSender());
}
function _addPauser(address account) internal {
_pausers.add(account);
emit PauserAdded(account);
}
function _removePauser(address account) internal {
_pausers.remove(account);
emit PauserRemoved(account);
}
}
// File: contracts/lifecycle/Pausable.sol
pragma solidity ^0.5.16;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
contract Pausable is Context, PauserRole {
/**
* @dev Emitted when the pause is triggered by a pauser (`account`).
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by a pauser (`account`).
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state. Assigns the Pauser role
* to the deployer.
*/
constructor () internal {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!_paused, "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(_paused, "Pausable: not paused");
_;
}
/**
* @dev Called by a pauser to pause, triggers stopped state.
*/
function pause() public onlyPauser whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Called by a pauser to unpause, returns to normal state.
*/
function unpause() public onlyPauser whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// File: contracts/token/ERC20/ERC20Pausable.sol
pragma solidity ^0.5.16;
/**
* @title Pausable token
* @dev ERC20 with pausable transfers and allowances.
*
* Useful if you want to stop trades until the end of a crowdsale, or have
* an emergency switch for freezing all token transfers in the event of a large
* bug.
*/
contract ERC20Pausable is ERC20, Pausable {
function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
return super.transfer(to, value);
}
function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
return super.transferFrom(from, to, value);
}
function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
return super.approve(spender, value);
}
function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
return super.increaseAllowance(spender, addedValue);
}
function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
return super.decreaseAllowance(spender, subtractedValue);
}
}
// File: contracts/cores/XPLLToken.sol
pragma solidity ^0.5.16;
/**
* @title XPLLToken
*/
contract XPLLToken is ERC20Mintable, ERC20Detailed, ERC20Pausable {
uint _privateSaleStatus; // open: 1 and 0: close
constructor (string memory tokenName, string memory tokenSymbol, uint8 decimal, uint initialSupply) public ERC20Detailed(tokenName, tokenSymbol, decimal) {
_privateSaleStatus = 1;
uint256 tokenAmount = initialSupply * (10 ** uint256(decimals()));
_mint(_msgSender(), tokenAmount);
}
function privateTransfer(address recipient, uint256 amount, uint phase) public onlyOwner {
require(_privateSaleStatus == 1, "Private sale is closed");
require(recipient != _msgSender(), "Private sale recipient is owner");
SavePrivateSaleRecord(recipient, amount, phase);
transfer(recipient, amount);
emit PrivateSale(recipient, amount, phase, now);
}
function internalTransfer(address recipient, uint256 amount, uint lockupdays) public onlyOwner {
require(recipient != _msgSender(), "Private sale recipient is owner");
SaveInternalRecord(recipient, amount, lockupdays);
transfer(recipient, amount);
emit InternalFund(recipient, amount, now);
}
function openPrivateSale() public onlyOwner {
require(_privateSaleStatus != 1, "Private sale is currently opened");
_privateSaleStatus = 1;
}
function closePrivateSale() public onlyOwner {
require(_privateSaleStatus == 1, "Private sale is currently not opened");
_privateSaleStatus = 0;
}
function isPrivateSale() view public returns (string memory) {
if(_privateSaleStatus == 1) {
return "opened";
} else {
return "closed";
}
}
event PrivateSale(address recipient, uint256 amount, uint phase, uint time);
event InternalFund(address recipient, uint256 amount, uint time);
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"uint8","name":"decimal","type":"uint8"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"payable":false,"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":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"InternalFund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"phase","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"PrivateSale","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"availableForTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closePrivateSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAmounts","outputs":[{"internalType":"uint256[3]","name":"","type":"uint256[3]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"getPrivateSaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"getReleaseDate","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStartDay","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"internalFundedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"internalReleaseDate","outputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"lockupdays","type":"uint256"}],"name":"internalTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isPrivateSale","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"openPrivateSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"phase","type":"uint256"}],"name":"privateTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526040516200001290620009b2565b604051809103906000f0801580156200002f573d6000803e3d6000fd5b50600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c8d98a06107e5600760016040518463ffffffff1660e01b8152600401808461ffff1681526020018360ff1681526020018260ff168152602001935050505060206040518083038186803b1580156200010257600080fd5b505afa15801562000117573d6000803e3d6000fd5b505050506040513d60208110156200012e57600080fd5b81019080805190602001909291905050506008553480156200014f57600080fd5b5060405162005cc538038062005cc5833981810160405260808110156200017557600080fd5b81019080805160405193929190846401000000008211156200019657600080fd5b83820191506020820185811115620001ad57600080fd5b8251866001820283011164010000000082111715620001cb57600080fd5b8083526020830192505050908051906020019080838360005b8381101562000201578082015181840152602081019050620001e4565b50505050905090810190601f1680156200022f5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200025357600080fd5b838201915060208201858111156200026a57600080fd5b82518660018202830111640100000000821117156200028857600080fd5b8083526020830192505050908051906020019080838360005b83811015620002be578082015181840152602081019050620002a1565b50505050905090810190601f168015620002ec5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291908051906020019092919050505083838360006200031f620004b860201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003dd620003d1620004b860201b60201c565b620004c060201b60201c565b82600a9080519060200190620003f5929190620009c0565b5081600b90805190602001906200040e929190620009c0565b5080600c60006101000a81548160ff021916908360ff1602179055505050506200044d62000441620004b860201b60201c565b6200052160201b60201c565b6000600e60006101000a81548160ff0219169083151502179055506001600f819055506000620004826200058260201b60201c565b60ff16600a0a82029050620004ad620004a0620004b860201b60201c565b826200059960201b60201c565b505050505062000a6f565b600033905090565b620004db8160096200076560201b62003d861790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6200053c81600d6200076560201b62003d861790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000600c60009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200063d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000659816003546200084960201b62003b4f1790919060201c565b600381905550620006b881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200084960201b62003b4f1790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620007778282620008d260201b60201c565b15620007eb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015620008c8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200095b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062005ca36022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610da58062004efe83390190565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000a0357805160ff191683800117855562000a34565b8280016001018555821562000a34579182015b8281111562000a3357825182559160200191906001019062000a16565b5b50905062000a43919062000a47565b5090565b62000a6c91905b8082111562000a6857600081600090555060010162000a4e565b5090565b90565b61447f8062000a7f6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a6116101305780639dd6d740116100b8578063b6c83b0c1161007c578063b6c83b0c14610b57578063d9df8b7514610baf578063dd62ed3e14610c07578063f2fde38b14610c7f578063ff4dfa5114610cc357610227565b80639dd6d740146109ab578063a457c2d714610a25578063a6ad4c0114610a8b578063a9059cbb14610a95578063aa271e1a14610afb57610227565b80638da5cb5b116100ff5780638da5cb5b1461086e5780638f32d59b146108b857806395d89b41146108da578063983b2d561461095d57806398650275146109a157610227565b8063715018a6146107b45780637cdde8f9146107be57806382dc1ec4146108205780638456cb591461086457610227565b806339509351116101b357806346fbf68e1161018257806346fbf68e1461067c5780635c975abb146106d85780636d6372df146106fa5780636ef8d66d1461075257806370a082311461075c57610227565b8063395093511461059c5780633f4ba83a1461060257806340c10f191461060c57806344782bff1461067257610227565b806318160ddd116101fa57806318160ddd1461041857806323b872dd1461043657806324d6239e146104bc578063313ce5671461051457806338a641ac1461053857610227565b806306fdde031461022c578063095ea7b3146102af5780630a5505211461031557806314be779314610395575b600080fd5b610234610d03565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fb600480360360408110156102c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da5565b604051808215151515815260200191505060405180910390f35b6103576004803603602081101561032b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e3c565b6040518082600360200280838360005b83811015610382578082015181840152602081019050610367565b5050505090500191505060405180910390f35b61039d610ef9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103dd5780820151818401526020810190506103c2565b50505050905090810190601f16801561040a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610420610f7f565b6040518082815260200191505060405180910390f35b6104a26004803603606081101561044c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f89565b604051808215151515815260200191505060405180910390f35b6104fe600480360360208110156104d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611022565b6040518082815260200191505060405180910390f35b61051c611190565b604051808260ff1660ff16815260200191505060405180910390f35b6105646004803603602081101561054e57600080fd5b81019080803590602001909291905050506111a7565b604051808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b6105e8600480360360408110156105b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ca565b604051808215151515815260200191505060405180910390f35b61060a611261565b005b6106586004803603604081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113cf565b604051808215151515815260200191505060405180910390f35b61067a61144a565b005b6106be6004803603602081101561069257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611529565b604051808215151515815260200191505060405180910390f35b6106e0611546565b604051808215151515815260200191505060405180910390f35b6107506004803603606081101561071057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061155d565b005b61075a61170e565b005b61079e6004803603602081101561077257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611720565b6040518082815260200191505060405180910390f35b6107bc611769565b005b61080a600480360360408110156107d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118a2565b6040518082815260200191505060405180910390f35b6108626004803603602081101561083657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119d5565b005b61086c611a46565b005b610876611bb5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c0611bde565b604051808215151515815260200191505060405180910390f35b6108e2611c3c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610922578082015181840152602081019050610907565b50505050905090810190601f16801561094f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cde565b005b6109a9611d4f565b005b6109ed600480360360208110156109c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d61565b604051808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b610a7160048036036040811015610a3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e38565b604051808215151515815260200191505060405180910390f35b610a93611ecf565b005b610ae160048036036040811015610aab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fcc565b604051808215151515815260200191505060405180910390f35b610b3d60048036036020811015610b1157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612063565b604051808215151515815260200191505060405180910390f35b610b9960048036036020811015610b6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612080565b6040518082815260200191505060405180910390f35b610c0560048036036060811015610bc557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612137565b005b610c6960048036036040811015610c1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612368565b6040518082815260200191505060405180910390f35b610cc160048036036020811015610c9557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123ef565b005b610ccb612475565b604051808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b6000600e60009054906101000a900460ff1615610e2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e348383612695565b905092915050565b610e44614071565b610e4c6126b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610e895750610e88611bde565b5b610ede576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b610ef28260046126bb90919063ffffffff16565b9050919050565b60606001600f541415610f43576040518060400160405280600681526020017f6f70656e656400000000000000000000000000000000000000000000000000008152509050610f7c565b6040518060400160405280600681526020017f636c6f736564000000000000000000000000000000000000000000000000000081525090505b90565b6000600354905090565b6000600e60009054906101000a900460ff161561100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611019848484612764565b90509392505050565b600061102c6126b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061109757503073ffffffffffffffffffffffffffffffffffffffff1661107f6126b3565b73ffffffffffffffffffffffffffffffffffffffff16145b6110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141716029913960400191505060405180910390fd5b60008090506110f9614071565b61110284610e3c565b90506000600190505b6001600301811015611143576111208161283d565b4210156111365761113185826118a2565b830192505b808060010191505061110b565b506201518061115c85600561285390919063ffffffff16565b02600854014210156111765761117184612080565b820191505b60008261118286611720565b039050809350505050919050565b6000600c60009054906101000a900460ff16905090565b60008060006111bd6111b88561283d565b61289f565b9250925092509193909250565b6000600e60009054906101000a900460ff161561124f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6112598383612abb565b905092915050565b61127161126c6126b3565b611529565b6112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061419a6030913960400191505060405180910390fd5b600e60009054906101000a900460ff16611348576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61138c6126b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006113e16113dc6126b3565b612063565b611436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806142d86030913960400191505060405180910390fd5b6114408383612b6e565b6001905092915050565b611452611bde565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f541461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061425b6024913960400191505060405180910390fd5b6000600f81905550565b600061153f82600d612d2b90919063ffffffff16565b9050919050565b6000600e60009054906101000a900460ff16905090565b611565611bde565b6115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115df6126b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f507269766174652073616c6520726563697069656e74206973206f776e65720081525060200191505060405180910390fd5b61168b838383612e09565b6116958383611fcc565b507f2e7f278771cf29c7a4b8606b3ec0e5efc0287d2395e4fedfa273126f3d7c27c3838342604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a1505050565b61171e6117196126b3565b612eec565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611771611bde565b6117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006118ac6126b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b60008211801561193f5750600482105b6119b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207068617365206e756d626572202831202d2033290000000081525060200191505060405180910390fd5b6119ba83610e3c565b60018303600381106119c857fe5b6020020151905092915050565b6119e56119e06126b3565b611529565b611a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061419a6030913960400191505060405180910390fd5b611a4381612f46565b50565b611a56611a516126b3565b611529565b611aab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061419a6030913960400191505060405180910390fd5b600e60009054906101000a900460ff1615611b2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b726126b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c206126b3565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cd45780601f10611ca957610100808354040283529160200191611cd4565b820191906000526020600020905b815481529060010190602001808311611cb757829003601f168201915b5050505050905090565b611cee611ce96126b3565b612063565b611d43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806142d86030913960400191505060405180910390fd5b611d4c81612fa0565b50565b611d5f611d5a6126b3565b612ffa565b565b6000806000611d6e6126b3565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dab5750611daa611bde565b5b611e00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b600062015180611e1a86600561285390919063ffffffff16565b02600854019050611e2a8161289f565b935093509350509193909250565b6000600e60009054906101000a900460ff1615611ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611ec78383613054565b905092915050565b611ed7611bde565b611f49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f541415611fc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507269766174652073616c652069732063757272656e746c79206f70656e656481525060200191505060405180910390fd5b6001600f81905550565b6000600e60009054906101000a900460ff1615612051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61205b8383613121565b905092915050565b6000612079826009612d2b90919063ffffffff16565b9050919050565b600061208a6126b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806120c757506120c6611bde565b5b61211c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b6121308260056131ab90919063ffffffff16565b9050919050565b61213f611bde565b6121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f5414612229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f507269766174652073616c6520697320636c6f7365640000000000000000000081525060200191505060405180910390fd5b6122316126b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f507269766174652073616c6520726563697069656e74206973206f776e65720081525060200191505060405180910390fd5b6122dd8383836131f7565b6122e78383611fcc565b507faa0127bc350f36632b46230985b87891dcdbf6e507794035414c161a1efdac5883838342604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a1505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123f7611bde565b612469576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124728161329a565b50565b6000806000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d663136008546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156124ef57600080fd5b505afa158015612503573d6000803e3d6000fd5b505050506040513d602081101561251957600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad246008546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561259f57600080fd5b505afa1580156125b3573d6000803e3d6000fd5b505050506040513d60208110156125c957600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c728406008546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561264f57600080fd5b505afa158015612663573d6000803e3d6000fd5b505050506040513d602081101561267957600080fd5b8101908080519060200190929190505050925092509250909192565b60006126a96126a26126b3565b84846133de565b6001905092915050565b600033905090565b6126c3614071565b6126cb614071565b6126d584846135d5565b1561275a578360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600380602002604051908101604052809291908260038015612752576020028201915b81548152602001906001019080831161273e575b505050505090505b8091505092915050565b60006127718484846136b2565b6128328461277d6126b3565b61282d8560405180606001604052806028815260200161432960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006127e36126b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c59092919063ffffffff16565b6133de565b600190509392505050565b600061284882613a85565b600854019050919050565b60008260010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d66313856040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561291757600080fd5b505afa15801561292b573d6000803e3d6000fd5b505050506040513d602081101561294157600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad24866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156129c557600080fd5b505afa1580156129d9573d6000803e3d6000fd5b505050506040513d60208110156129ef57600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c72840876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612a7357600080fd5b505afa158015612a87573d6000803e3d6000fd5b505050506040513d6020811015612a9d57600080fd5b81019080805190602001909291905050509250925092509193909250565b6000612b64612ac86126b3565b84612b5f8560026000612ad96126b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b4f90919063ffffffff16565b6133de565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612c2681600354613b4f90919063ffffffff16565b600381905550612c7e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b4f90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143516022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008111612e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806144226029913960400191505060405180910390fd5b6000612e788460056131ab90919063ffffffff16565b14612ece576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061427f6031913960400191505060405180910390fd5b612ee68383836005613bd7909392919063ffffffff16565b50505050565b612f0081600d613cc990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b612f5a81600d613d8690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b612fb4816009613d8690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b61300e816009613cc990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006131176130616126b3565b84613112856040518060600160405280602581526020016143fd602591396002600061308b6126b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c59092919063ffffffff16565b6133de565b6001905092915050565b60008161313461312f6126b3565b611022565b106131545761314b6131446126b3565b84846136b2565b600190506131a5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260418152602001806143bc6041913960600191505060405180910390fd5b92915050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000811180156132075750600481105b613279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207068617365206e756d626572202831202d2033290000000081525060200191505060405180910390fd5b6132948383600184036004613e61909392919063ffffffff16565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806141ca6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143986024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141f06022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006135df614071565b8360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600380602002604051908101604052809291908260038015613657576020028201915b815481526020019060010190808311613643575b505050505090506000600190505b60016003018110156136a557600082600183036003811061368257fe5b60200201511115613698576001925050506136ac565b8080600101915050613665565b5060009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143736025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061414e6023913960400191505060405180910390fd5b60008111613817576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142126023913960400191505060405180910390fd5b6138838160405180606001604052806026815260200161423560269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c59092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061391881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b4f90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613a72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a37578082015181840152602081019050613a1c565b50505050905090810190601f168015613a645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082118015613a965750600482105b613b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207068617365206e756d626572202831202d2033290000000081525060200191505060405180910390fd5b6001821415613b1d5763013c68009050613b4a565b6002821415613b315762ed4e009050613b4a565b6003821415613b455762ed4e009050613b4a565b600090505b919050565b600080828401905083811015613bcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808211613c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806140f96030913960400191505060405180910390fd5b818560010160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550828560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019050949350505050565b613cd38282612d2b565b613d28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143086021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613d908282612d2b565b15613e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000808210158015613e735750600382105b613ee5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f496e76616c696420707269766174652073616c6520706172616d65746572000081525060200191505060405180910390fd5b60008311613f3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806141296025913960400191505060405180910390fd5b613f46614071565b60001515613f5487876135d5565b15151415613f775783818460038110613f6957fe5b602002018181525050614013565b8560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600380602002604051908101604052809291908260038015613fef576020028201915b815481526020019060010190808311613fdb575b505050505090508381846003811061400357fe5b6020020181815101915081815250505b808660000160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020906003614063929190614093565b506001915050949350505050565b6040518060600160405280600390602082028038833980820191505090505090565b82600381019282156140c2579160200282015b828111156140c15782518255916020019190600101906140a6565b5b5090506140cf91906140d3565b5090565b6140f591905b808211156140f15760008160009055506001016140d9565b5090565b9056fe53746f72653a20496e76616c696420206e756d626572206f66206461797320666f72206c6f636b757020706572696f645072697661746553616c654b65657065723a20416d6f756e7420657175616c7320746f203045524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520646f6e2774206861766520726967687420746f2075736520746869732066756e6374696f6e506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20416d6f756e74206e6f742067726561746572207468616e207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365507269766174652073616c652069732063757272656e746c79206e6f74206f70656e65644164647265737320616c7265616479206861732066756e647320696e7465726e616c6c792073746f72656420696e206974596f7520646f6e74206861766520726967687420746f2075736520746869732066756e6374696f6e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373417474656d707420746f207472616e73666572206d6f726520746f6b656e73207468616e207768617420697320616c6c6f77656420617420746869732074696d6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f496e76616c696420206e756d626572206f66206461797320666f72206c6f636b757020706572696f64a265627a7a7231582097831e5f6ecb97f3dde3f3ade741b4a7ea0d0cdf17cd0c83f1a21c76bf4dc09864736f6c63430005100032608060405234801561001057600080fd5b50610d85806100206000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80639054bdec1161008c578063a6f0e57711610066578063a6f0e5771461046f578063b1999937146104b9578063b238ad0e146104fb578063fa93f88314610554576100ea565b80639054bdec1461035657806392d66313146103dd578063a324ad2414610427576100ea565b806365c72840116100c857806365c72840146101f95780637f791833146102415780638aa001fc146102ae5780638c8d98a0146102f6576100ea565b80633e239e1a146100ef5780634ac1ad781461013757806362ba96871461017f575b600080fd5b61011b6004803603602081101561010557600080fd5b810190808035906020019092919050505061059c565b604051808260ff1660ff16815260200191505060405180910390f35b6101636004803603602081101561014d57600080fd5b81019080803590602001909291905050506105c3565b604051808260ff1660ff16815260200191505060405180910390f35b6101e3600480360360a081101561019557600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff1690602001909291905050506105e6565b6040518082815260200191505060405180910390f35b6102256004803603602081101561020f57600080fd5b8101908080359060200190929190505050610602565b604051808260ff1660ff16815260200191505060405180910390f35b6102986004803603608081101561025757600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190505050610618565b6040518082815260200191505060405180910390f35b6102da600480360360208110156102c457600080fd5b8101908080359060200190929190505050610633565b604051808260ff1660ff16815260200191505060405180910390f35b6103406004803603606081101561030c57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190505050610647565b6040518082815260200191505060405180910390f35b6103c7600480360360c081101561036c57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190505050610662565b6040518082815260200191505060405180910390f35b610409600480360360208110156103f357600080fd5b81019080803590602001909291905050506108ed565b604051808261ffff1661ffff16815260200191505060405180910390f35b6104536004803603602081101561043d57600080fd5b8101908080359060200190929190505050610996565b604051808260ff1660ff16815260200191505060405180910390f35b61049f6004803603602081101561048557600080fd5b81019080803561ffff1690602001909291905050506109ac565b604051808215151515815260200191505060405180910390f35b6104e5600480360360208110156104cf57600080fd5b8101908080359060200190929190505050610a21565b6040518082815260200191505060405180910390f35b6105386004803603604081101561051157600080fd5b81019080803560ff169060200190929190803561ffff169060200190929190505050610a54565b604051808260ff1660ff16815260200191505060405180910390f35b6105806004803603602081101561056a57600080fd5b8101908080359060200190929190505050610b20565b604051808260ff1660ff16815260200191505060405180910390f35b60006018603c8084816105ab57fe5b04816105b357fe5b04816105bb57fe5b069050919050565b6000600760046201518084816105d557fe5b0401816105de57fe5b069050919050565b60006105f786868686866000610662565b905095945050505050565b600061060d82610b3d565b604001519050919050565b600061062985858585600080610662565b9050949350505050565b6000603c828161063f57fe5b069050919050565b60006106598484846000806000610662565b90509392505050565b6000806107b290505b8761ffff168161ffff1610156106ae57610684816109ac565b15610697576301e28500820191506106a1565b6301e13380820191505b808060010191505061066b565b6106b6610cda565b601f816000600c81106106c557fe5b602002019060ff16908160ff16815250506106df896109ac565b1561070957601d816001600c81106106f357fe5b602002019060ff16908160ff168152505061072a565b601c816001600c811061071857fe5b602002019060ff16908160ff16815250505b601f816002600c811061073957fe5b602002019060ff16908160ff1681525050601e816003600c811061075957fe5b602002019060ff16908160ff1681525050601f816004600c811061077957fe5b602002019060ff16908160ff1681525050601e816005600c811061079957fe5b602002019060ff16908160ff1681525050601f816006600c81106107b957fe5b602002019060ff16908160ff1681525050601f816007600c81106107d957fe5b602002019060ff16908160ff1681525050601e816008600c81106107f957fe5b602002019060ff16908160ff1681525050601f816009600c811061081957fe5b602002019060ff16908160ff1681525050601e81600a600c811061083957fe5b602002019060ff16908160ff1681525050601f81600b600c811061085957fe5b602002019060ff16908160ff1681525050600191505b8760ff168261ffff1610156108af57806001830361ffff16600c811061089157fe5b602002015160ff16620151800283019250818060010192505061086f565b6001870360ff166201518002830192508560ff16610e1002830192508460ff16603c02830192508360ff168301925082925050509695505050505050565b600080600090506000806301e13380858161090457fe5b046107b261ffff1601915061091e6107b261ffff16610a21565b61092b8361ffff16610a21565b039050806301e285000283019250806107b2830361ffff16036301e1338002830192505b8483111561098b57610963600183036109ac565b15610976576301e2850083039250610980565b6301e13380830392505b60018203915061094f565b819350505050919050565b60006109a182610b3d565b602001519050919050565b60008060048361ffff16816109bd57fe5b0661ffff16146109d05760009050610a1c565b600060648361ffff16816109e057fe5b0661ffff16146109f35760019050610a1c565b60006101908361ffff1681610a0457fe5b0661ffff1614610a175760009050610a1c565b600190505b919050565b60006001820391506101908281610a3457fe5b0460648381610a3f57fe5b0460048481610a4a57fe5b0403019050919050565b600060018360ff161480610a6b575060038360ff16145b80610a79575060058360ff16145b80610a87575060078360ff16145b80610a95575060088360ff16145b80610aa35750600a8360ff16145b80610ab15750600c8360ff16145b15610abf57601f9050610b1a565b60048360ff161480610ad4575060068360ff16145b80610ae2575060098360ff16145b80610af05750600b8360ff16145b15610afe57601e9050610b1a565b610b07826109ac565b15610b1557601d9050610b1a565b601c90505b92915050565b6000603c808381610b2d57fe5b0481610b3557fe5b069050919050565b610b45610cfd565b6000809050600080610b56856108ed565b846000019061ffff16908161ffff1681525050610b786107b261ffff16610a21565b610b89856000015161ffff16610a21565b039150816301e285000283019250816107b285600001510361ffff16036301e1338002830192506000600191505b600c8260ff1611610c0d57610bd0828660000151610a54565b60ff1662015180029050858482011115610bfb5781856020019060ff16908160ff1681525050610c0d565b80840193508180600101925050610bb7565b600191505b610c2485602001518660000151610a54565b60ff168260ff1611610c6957858462015180011115610c545781856040019060ff16908160ff1681525050610c69565b62015180840193508180600101925050610c12565b610c728661059c565b856060019060ff16908160ff1681525050610c8c86610b20565b856080019060ff16908160ff1681525050610ca686610633565b8560a0019060ff16908160ff1681525050610cc0866105c3565b8560c0019060ff16908160ff168152505050505050919050565b604051806101800160405280600c90602082028038833980820191505090505090565b6040518060e00160405280600061ffff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152509056fea265627a7a72315820dc623edd3ecf2ca4ac7af029486ad5e403eabd88f8f1bf03545feae89b655de464736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000061a800000000000000000000000000000000000000000000000000000000000000013506172616c6c656c436861696e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000458504c4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102275760003560e01c8063715018a6116101305780639dd6d740116100b8578063b6c83b0c1161007c578063b6c83b0c14610b57578063d9df8b7514610baf578063dd62ed3e14610c07578063f2fde38b14610c7f578063ff4dfa5114610cc357610227565b80639dd6d740146109ab578063a457c2d714610a25578063a6ad4c0114610a8b578063a9059cbb14610a95578063aa271e1a14610afb57610227565b80638da5cb5b116100ff5780638da5cb5b1461086e5780638f32d59b146108b857806395d89b41146108da578063983b2d561461095d57806398650275146109a157610227565b8063715018a6146107b45780637cdde8f9146107be57806382dc1ec4146108205780638456cb591461086457610227565b806339509351116101b357806346fbf68e1161018257806346fbf68e1461067c5780635c975abb146106d85780636d6372df146106fa5780636ef8d66d1461075257806370a082311461075c57610227565b8063395093511461059c5780633f4ba83a1461060257806340c10f191461060c57806344782bff1461067257610227565b806318160ddd116101fa57806318160ddd1461041857806323b872dd1461043657806324d6239e146104bc578063313ce5671461051457806338a641ac1461053857610227565b806306fdde031461022c578063095ea7b3146102af5780630a5505211461031557806314be779314610395575b600080fd5b610234610d03565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102fb600480360360408110156102c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610da5565b604051808215151515815260200191505060405180910390f35b6103576004803603602081101561032b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e3c565b6040518082600360200280838360005b83811015610382578082015181840152602081019050610367565b5050505090500191505060405180910390f35b61039d610ef9565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103dd5780820151818401526020810190506103c2565b50505050905090810190601f16801561040a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610420610f7f565b6040518082815260200191505060405180910390f35b6104a26004803603606081101561044c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f89565b604051808215151515815260200191505060405180910390f35b6104fe600480360360208110156104d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611022565b6040518082815260200191505060405180910390f35b61051c611190565b604051808260ff1660ff16815260200191505060405180910390f35b6105646004803603602081101561054e57600080fd5b81019080803590602001909291905050506111a7565b604051808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b6105e8600480360360408110156105b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111ca565b604051808215151515815260200191505060405180910390f35b61060a611261565b005b6106586004803603604081101561062257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113cf565b604051808215151515815260200191505060405180910390f35b61067a61144a565b005b6106be6004803603602081101561069257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611529565b604051808215151515815260200191505060405180910390f35b6106e0611546565b604051808215151515815260200191505060405180910390f35b6107506004803603606081101561071057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919050505061155d565b005b61075a61170e565b005b61079e6004803603602081101561077257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611720565b6040518082815260200191505060405180910390f35b6107bc611769565b005b61080a600480360360408110156107d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506118a2565b6040518082815260200191505060405180910390f35b6108626004803603602081101561083657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506119d5565b005b61086c611a46565b005b610876611bb5565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c0611bde565b604051808215151515815260200191505060405180910390f35b6108e2611c3c565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610922578082015181840152602081019050610907565b50505050905090810190601f16801561094f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61099f6004803603602081101561097357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cde565b005b6109a9611d4f565b005b6109ed600480360360208110156109c157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611d61565b604051808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b610a7160048036036040811015610a3b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e38565b604051808215151515815260200191505060405180910390f35b610a93611ecf565b005b610ae160048036036040811015610aab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611fcc565b604051808215151515815260200191505060405180910390f35b610b3d60048036036020811015610b1157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612063565b604051808215151515815260200191505060405180910390f35b610b9960048036036020811015610b6d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612080565b6040518082815260200191505060405180910390f35b610c0560048036036060811015610bc557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612137565b005b610c6960048036036040811015610c1d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612368565b6040518082815260200191505060405180910390f35b610cc160048036036020811015610c9557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123ef565b005b610ccb612475565b604051808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b6060600a8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610d9b5780601f10610d7057610100808354040283529160200191610d9b565b820191906000526020600020905b815481529060010190602001808311610d7e57829003601f168201915b5050505050905090565b6000600e60009054906101000a900460ff1615610e2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610e348383612695565b905092915050565b610e44614071565b610e4c6126b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610e895750610e88611bde565b5b610ede576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b610ef28260046126bb90919063ffffffff16565b9050919050565b60606001600f541415610f43576040518060400160405280600681526020017f6f70656e656400000000000000000000000000000000000000000000000000008152509050610f7c565b6040518060400160405280600681526020017f636c6f736564000000000000000000000000000000000000000000000000000081525090505b90565b6000600354905090565b6000600e60009054906101000a900460ff161561100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611019848484612764565b90509392505050565b600061102c6126b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061109757503073ffffffffffffffffffffffffffffffffffffffff1661107f6126b3565b73ffffffffffffffffffffffffffffffffffffffff16145b6110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141716029913960400191505060405180910390fd5b60008090506110f9614071565b61110284610e3c565b90506000600190505b6001600301811015611143576111208161283d565b4210156111365761113185826118a2565b830192505b808060010191505061110b565b506201518061115c85600561285390919063ffffffff16565b02600854014210156111765761117184612080565b820191505b60008261118286611720565b039050809350505050919050565b6000600c60009054906101000a900460ff16905090565b60008060006111bd6111b88561283d565b61289f565b9250925092509193909250565b6000600e60009054906101000a900460ff161561124f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6112598383612abb565b905092915050565b61127161126c6126b3565b611529565b6112c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061419a6030913960400191505060405180910390fd5b600e60009054906101000a900460ff16611348576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61138c6126b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006113e16113dc6126b3565b612063565b611436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806142d86030913960400191505060405180910390fd5b6114408383612b6e565b6001905092915050565b611452611bde565b6114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f541461151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061425b6024913960400191505060405180910390fd5b6000600f81905550565b600061153f82600d612d2b90919063ffffffff16565b9050919050565b6000600e60009054906101000a900460ff16905090565b611565611bde565b6115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6115df6126b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f507269766174652073616c6520726563697069656e74206973206f776e65720081525060200191505060405180910390fd5b61168b838383612e09565b6116958383611fcc565b507f2e7f278771cf29c7a4b8606b3ec0e5efc0287d2395e4fedfa273126f3d7c27c3838342604051808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001838152602001828152602001935050505060405180910390a1505050565b61171e6117196126b3565b612eec565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611771611bde565b6117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006118ac6126b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b60008211801561193f5750600482105b6119b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207068617365206e756d626572202831202d2033290000000081525060200191505060405180910390fd5b6119ba83610e3c565b60018303600381106119c857fe5b6020020151905092915050565b6119e56119e06126b3565b611529565b611a3a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061419a6030913960400191505060405180910390fd5b611a4381612f46565b50565b611a56611a516126b3565b611529565b611aab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603081526020018061419a6030913960400191505060405180910390fd5b600e60009054906101000a900460ff1615611b2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600e60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611b726126b3565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611c206126b3565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cd45780601f10611ca957610100808354040283529160200191611cd4565b820191906000526020600020905b815481529060010190602001808311611cb757829003601f168201915b5050505050905090565b611cee611ce96126b3565b612063565b611d43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806142d86030913960400191505060405180910390fd5b611d4c81612fa0565b50565b611d5f611d5a6126b3565b612ffa565b565b6000806000611d6e6126b3565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611dab5750611daa611bde565b5b611e00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b600062015180611e1a86600561285390919063ffffffff16565b02600854019050611e2a8161289f565b935093509350509193909250565b6000600e60009054906101000a900460ff1615611ebd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611ec78383613054565b905092915050565b611ed7611bde565b611f49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f541415611fc2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507269766174652073616c652069732063757272656e746c79206f70656e656481525060200191505060405180910390fd5b6001600f81905550565b6000600e60009054906101000a900460ff1615612051576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61205b8383613121565b905092915050565b6000612079826009612d2b90919063ffffffff16565b9050919050565b600061208a6126b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614806120c757506120c6611bde565b5b61211c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806142b06028913960400191505060405180910390fd5b6121308260056131ab90919063ffffffff16565b9050919050565b61213f611bde565b6121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600f5414612229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f507269766174652073616c6520697320636c6f7365640000000000000000000081525060200191505060405180910390fd5b6122316126b3565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f507269766174652073616c6520726563697069656e74206973206f776e65720081525060200191505060405180910390fd5b6122dd8383836131f7565b6122e78383611fcc565b507faa0127bc350f36632b46230985b87891dcdbf6e507794035414c161a1efdac5883838342604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a1505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6123f7611bde565b612469576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6124728161329a565b50565b6000806000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d663136008546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156124ef57600080fd5b505afa158015612503573d6000803e3d6000fd5b505050506040513d602081101561251957600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad246008546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561259f57600080fd5b505afa1580156125b3573d6000803e3d6000fd5b505050506040513d60208110156125c957600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c728406008546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561264f57600080fd5b505afa158015612663573d6000803e3d6000fd5b505050506040513d602081101561267957600080fd5b8101908080519060200190929190505050925092509250909192565b60006126a96126a26126b3565b84846133de565b6001905092915050565b600033905090565b6126c3614071565b6126cb614071565b6126d584846135d5565b1561275a578360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600380602002604051908101604052809291908260038015612752576020028201915b81548152602001906001019080831161273e575b505050505090505b8091505092915050565b60006127718484846136b2565b6128328461277d6126b3565b61282d8560405180606001604052806028815260200161432960289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006127e36126b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c59092919063ffffffff16565b6133de565b600190509392505050565b600061284882613a85565b600854019050919050565b60008260010160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000806000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d66313856040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561291757600080fd5b505afa15801561292b573d6000803e3d6000fd5b505050506040513d602081101561294157600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad24866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156129c557600080fd5b505afa1580156129d9573d6000803e3d6000fd5b505050506040513d60208110156129ef57600080fd5b8101908080519060200190929190505050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c72840876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612a7357600080fd5b505afa158015612a87573d6000803e3d6000fd5b505050506040513d6020811015612a9d57600080fd5b81019080805190602001909291905050509250925092509193909250565b6000612b64612ac86126b3565b84612b5f8560026000612ad96126b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b4f90919063ffffffff16565b6133de565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c11576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612c2681600354613b4f90919063ffffffff16565b600381905550612c7e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b4f90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143516022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60008111612e62576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806144226029913960400191505060405180910390fd5b6000612e788460056131ab90919063ffffffff16565b14612ece576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061427f6031913960400191505060405180910390fd5b612ee68383836005613bd7909392919063ffffffff16565b50505050565b612f0081600d613cc990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b612f5a81600d613d8690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b612fb4816009613d8690919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b61300e816009613cc990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006131176130616126b3565b84613112856040518060600160405280602581526020016143fd602591396002600061308b6126b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c59092919063ffffffff16565b6133de565b6001905092915050565b60008161313461312f6126b3565b611022565b106131545761314b6131446126b3565b84846136b2565b600190506131a5565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260418152602001806143bc6041913960600191505060405180910390fd5b92915050565b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000811180156132075750600481105b613279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207068617365206e756d626572202831202d2033290000000081525060200191505060405180910390fd5b6132948383600184036004613e61909392919063ffffffff16565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613320576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806141ca6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613464576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806143986024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141f06022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b60006135df614071565b8360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600380602002604051908101604052809291908260038015613657576020028201915b815481526020019060010190808311613643575b505050505090506000600190505b60016003018110156136a557600082600183036003811061368257fe5b60200201511115613698576001925050506136ac565b8080600101915050613665565b5060009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806143736025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061414e6023913960400191505060405180910390fd5b60008111613817576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806142126023913960400191505060405180910390fd5b6138838160405180606001604052806026815260200161423560269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139c59092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061391881600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613b4f90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290613a72576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a37578082015181840152602081019050613a1c565b50505050905090810190601f168015613a645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082118015613a965750600482105b613b08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f496e76616c6964207068617365206e756d626572202831202d2033290000000081525060200191505060405180910390fd5b6001821415613b1d5763013c68009050613b4a565b6002821415613b315762ed4e009050613b4a565b6003821415613b455762ed4e009050613b4a565b600090505b919050565b600080828401905083811015613bcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000808211613c31576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806140f96030913960400191505060405180910390fd5b818560010160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550828560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060019050949350505050565b613cd38282612d2b565b613d28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806143086021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613d908282612d2b565b15613e03576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000808210158015613e735750600382105b613ee5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f496e76616c696420707269766174652073616c6520706172616d65746572000081525060200191505060405180910390fd5b60008311613f3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806141296025913960400191505060405180910390fd5b613f46614071565b60001515613f5487876135d5565b15151415613f775783818460038110613f6957fe5b602002018181525050614013565b8560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600380602002604051908101604052809291908260038015613fef576020028201915b815481526020019060010190808311613fdb575b505050505090508381846003811061400357fe5b6020020181815101915081815250505b808660000160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020906003614063929190614093565b506001915050949350505050565b6040518060600160405280600390602082028038833980820191505090505090565b82600381019282156140c2579160200282015b828111156140c15782518255916020019190600101906140a6565b5b5090506140cf91906140d3565b5090565b6140f591905b808211156140f15760008160009055506001016140d9565b5090565b9056fe53746f72653a20496e76616c696420206e756d626572206f66206461797320666f72206c6f636b757020706572696f645072697661746553616c654b65657065723a20416d6f756e7420657175616c7320746f203045524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520646f6e2774206861766520726967687420746f2075736520746869732066756e6374696f6e506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20416d6f756e74206e6f742067726561746572207468616e207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365507269766174652073616c652069732063757272656e746c79206e6f74206f70656e65644164647265737320616c7265616479206861732066756e647320696e7465726e616c6c792073746f72656420696e206974596f7520646f6e74206861766520726967687420746f2075736520746869732066756e6374696f6e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373417474656d707420746f207472616e73666572206d6f726520746f6b656e73207468616e207768617420697320616c6c6f77656420617420746869732074696d6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f496e76616c696420206e756d626572206f66206461797320666f72206c6f636b757020706572696f64a265627a7a7231582097831e5f6ecb97f3dde3f3ade741b4a7ea0d0cdf17cd0c83f1a21c76bf4dc09864736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000061a800000000000000000000000000000000000000000000000000000000000000013506172616c6c656c436861696e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000458504c4c00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): ParallelChain Token
Arg [1] : tokenSymbol (string): XPLL
Arg [2] : decimal (uint8): 18
Arg [3] : initialSupply (uint256): 400000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000000061a80
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 506172616c6c656c436861696e20546f6b656e00000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 58504c4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
43668:1946:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43668:1946:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12746:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12746:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43048:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43048:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26073:227;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26073:227:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26073:227:0;;;;;;;;;;;;;;;;45259:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;45259:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29406:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42880:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42880:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28531:810;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28531:810:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13598:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27654:139;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27654:139:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43196:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43196:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42219:120;;;:::i;:::-;;39049:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39049:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45082:169;;;:::i;:::-;;39711:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39711:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41426:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44551:349;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44551:349:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39928:79;;;:::i;:::-;;29560:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29560:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11301:140;;;:::i;:::-;;26308:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26308:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39828:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39828:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;42006:118;;;:::i;:::-;;10490:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10856:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12948:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;12948:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38087:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38087:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;38187:79;;;:::i;:::-;;28200:323;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28200:323:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43374:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43374:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44910:164;;;:::i;:::-;;42740:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42740:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37970:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;37970:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27955:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27955:237:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44129:414;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44129:414:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30295:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30295:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11596:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11596:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;27204:154;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12746:83;12783:13;12816:5;12809:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12746:83;:::o;43048:140::-;43127:4;41663:7;;;;;;;;;;;41662:8;41654:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43151:29;43165:7;43174:5;43151:13;:29::i;:::-;43144:36;;43048:140;;;;:::o;26073:227::-;26131:17;;:::i;:::-;26180:12;:10;:12::i;:::-;26169:23;;:7;:23;;;:36;;;;26196:9;:7;:9::i;:::-;26169:36;26161:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26268:24;26284:7;26268:11;:15;;:24;;;;:::i;:::-;26261:31;;26073:227;;;:::o;45259:197::-;45305:13;45356:1;45334:18;;:23;45331:118;;;45374:15;;;;;;;;;;;;;;;;;;;;;45331:118;45422:15;;;;;;;;;;;;;;;;;;;45259:197;;:::o;29406:91::-;29450:7;29477:12;;29470:19;;29406:91;:::o;42880:160::-;42973:4;41663:7;;;;;;;;;;;41662:8;41654:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42997:35;43016:4;43022:2;43026:5;42997:18;:35::i;:::-;42990:42;;42880:160;;;;;:::o;28531:810::-;28599:7;28638:12;:10;:12::i;:::-;28627:23;;:7;:23;;;:56;;;;28678:4;28654:29;;:12;:10;:12::i;:::-;:29;;;28627:56;28619:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28742:33;28778:1;28742:37;;28790:25;;:::i;:::-;28818:19;28829:7;28818:10;:19::i;:::-;28790:47;;28853:6;28860:1;28853:8;;28848:196;28880:1;28865:14;:16;28863:1;:18;28848:196;;;28913:22;28933:1;28913:19;:22::i;:::-;28907:3;:28;28903:130;;;28985:32;29006:7;29015:1;28985:20;:32::i;:::-;28956:61;;;;28903:130;28883:3;;;;;;;28848:196;;;;29120:6;29078:39;29109:7;29078:20;:30;;:39;;;;:::i;:::-;:48;29066:8;;:61;29060:3;:67;29056:158;;;29173:29;29194:7;29173:20;:29::i;:::-;29144:58;;;;29056:158;29226:23;29273:25;29252:18;29262:7;29252:9;:18::i;:::-;:46;29226:72;;29318:15;29311:22;;;;;28531:810;;;:::o;13598:83::-;13639:5;13664:9;;;;;;;;;;;13657:16;;13598:83;:::o;27654:139::-;27710:6;27718:5;27725;27750:35;27758:26;27778:5;27758:19;:26::i;:::-;27750:7;:35::i;:::-;27743:42;;;;;;27654:139;;;;;:::o;43196:170::-;43290:4;41663:7;;;;;;;;;;;41662:8;41654:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43314:44;43338:7;43347:10;43314:23;:44::i;:::-;43307:51;;43196:170;;;;:::o;42219:120::-;39608:22;39617:12;:10;:12::i;:::-;39608:8;:22::i;:::-;39600:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41862:7;;;;;;;;;;;41854:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42288:5;42278:7;;:15;;;;;;;;;;;;;;;;;;42309:22;42318:12;:10;:12::i;:::-;42309:22;;;;;;;;;;;;;;;;;;;;;;42219:120::o;39049:143::-;39123:4;37867:22;37876:12;:10;:12::i;:::-;37867:8;:22::i;:::-;37859:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39140:22;39146:7;39155:6;39140:5;:22::i;:::-;39180:4;39173:11;;39049:143;;;;:::o;45082:169::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45168:1;45146:18;;:23;45138:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45242:1;45221:18;:22;;;;45082:169::o;39711:109::-;39767:4;39791:21;39804:7;39791:8;:12;;:21;;;;:::i;:::-;39784:28;;39711:109;;;:::o;41426:78::-;41465:4;41489:7;;;;;;;;;;;41482:14;;41426:78;:::o;44551:349::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44680:12;:10;:12::i;:::-;44667:25;;:9;:25;;;;44659:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44749:49;44768:9;44779:6;44787:10;44749:18;:49::i;:::-;44811:27;44820:9;44831:6;44811:8;:27::i;:::-;;44856:36;44869:9;44880:6;44888:3;44856:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44551:349;;;:::o;39928:79::-;39972:27;39986:12;:10;:12::i;:::-;39972:13;:27::i;:::-;39928:79::o;29560:110::-;29617:7;29644:9;:18;29654:7;29644:18;;;;;;;;;;;;;;;;29637:25;;29560:110;;;:::o;11301:140::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11400:1;11363:40;;11384:6;;;;;;;;;;;11363:40;;;;;;;;;;;;11431:1;11414:6;;:19;;;;;;;;;;;;;;;;;;11301:140::o;26308:304::-;26388:7;26427:12;:10;:12::i;:::-;26416:23;;:7;:23;;;26408:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26511:1;26503:5;:9;:22;;;;;26524:1;26516:5;:9;26503:22;26495:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26576:19;26587:7;26576:10;:19::i;:::-;26602:1;26596:5;:7;26576:28;;;;;;;;;;;26569:35;;26308:304;;;;:::o;39828:92::-;39608:22;39617:12;:10;:12::i;:::-;39608:8;:22::i;:::-;39600:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39893:19;39904:7;39893:10;:19::i;:::-;39828:92;:::o;42006:118::-;39608:22;39617:12;:10;:12::i;:::-;39608:8;:22::i;:::-;39600:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41663:7;;;;;;;;;;;41662:8;41654:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42076:4;42066:7;;:14;;;;;;;;;;;;;;;;;;42096:20;42103:12;:10;:12::i;:::-;42096:20;;;;;;;;;;;;;;;;;;;;;;42006:118::o;10490:79::-;10528:7;10555:6;;;;;;;;;;;10548:13;;10490:79;:::o;10856:94::-;10896:4;10936:6;;;;;;;;;;;10920:22;;:12;:10;:12::i;:::-;:22;;;10913:29;;10856:94;:::o;12948:87::-;12987:13;13020:7;13013:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12948:87;:::o;38087:92::-;37867:22;37876:12;:10;:12::i;:::-;37867:8;:22::i;:::-;37859:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38152:19;38163:7;38152:10;:19::i;:::-;38087:92;:::o;38187:79::-;38231:27;38245:12;:10;:12::i;:::-;38231:13;:27::i;:::-;38187:79::o;28200:323::-;28266:6;28274:5;28281;28318:12;:10;:12::i;:::-;28307:23;;:7;:23;;;:36;;;;28334:9;:7;:9::i;:::-;28307:36;28299:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28401:14;28472:6;28430:39;28461:7;28430:20;:30;;:39;;;;:::i;:::-;:48;28418:8;;:61;28401:78;;28497:18;28505:9;28497:7;:18::i;:::-;28490:25;;;;;;;28200:323;;;;;:::o;43374:180::-;43473:4;41663:7;;;;;;;;;;;41662:8;41654:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43497:49;43521:7;43530:15;43497:23;:49::i;:::-;43490:56;;43374:180;;;;:::o;44910:164::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44995:1;44973:18;;:23;;44965:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45065:1;45044:18;:22;;;;44910:164::o;42740:132::-;42815:4;41663:7;;;;;;;;;;;41662:8;41654:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42839:25;42854:2;42858:5;42839:14;:25::i;:::-;42832:32;;42740:132;;;;:::o;37970:109::-;38026:4;38050:21;38063:7;38050:8;:12;;:21;;;;:::i;:::-;38043:28;;37970:109;;;:::o;27955:237::-;28023:4;28059:12;:10;:12::i;:::-;28048:23;;:7;:23;;;:36;;;;28075:9;:7;:9::i;:::-;28048:36;28040:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28147:37;28176:7;28147:20;:28;;:37;;;;:::i;:::-;28140:44;;27955:237;;;:::o;44129:414::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44259:1;44237:18;;:23;44229:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44319:12;:10;:12::i;:::-;44306:25;;:9;:25;;;;44298:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44388:47;44410:9;44421:6;44429:5;44388:21;:47::i;:::-;44448:27;44457:9;44468:6;44448:8;:27::i;:::-;;44493:42;44505:9;44516:6;44524:5;44531:3;44493:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44129:414;;;:::o;30295:134::-;30367:7;30394:11;:18;30406:5;30394:18;;;;;;;;;;;;;;;:27;30413:7;30394:27;;;;;;;;;;;;;;;;30387:34;;30295:134;;;;:::o;11596:109::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11669:28;11688:8;11669:18;:28::i;:::-;11596:109;:::o;27204:154::-;27247:6;27255:5;27262;27288:1;;;;;;;;;;;:9;;;27298:8;;27288:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27288:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27288:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27288:19:0;;;;;;;;;;;;;;;;27309:1;;;;;;;;;;;:10;;;27320:8;;27309:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27309:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27309:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27309:20:0;;;;;;;;;;;;;;;;27331:1;;;;;;;;;;;:8;;;27340;;27331:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27331:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27331:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27331:18:0;;;;;;;;;;;;;;;;27280:70;;;;;;27204:154;;;:::o;30576:152::-;30642:4;30659:39;30668:12;:10;:12::i;:::-;30682:7;30691:6;30659:8;:39::i;:::-;30716:4;30709:11;;30576:152;;;;:::o;9209:98::-;9254:15;9289:10;9282:17;;9209:98;:::o;14703:260::-;14778:17;;:::i;:::-;14808:24;;:::i;:::-;14846:19;14855:4;14861:3;14846:8;:19::i;:::-;14843:87;;;14892:4;:21;;:26;14914:3;14892:26;;;;;;;;;;;;;;;14882:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14843:87;14949:6;14942:13;;;14703:260;;;;:::o;31200:313::-;31289:4;31309:36;31319:6;31327:9;31338:6;31309:9;:36::i;:::-;31356:121;31365:6;31373:12;:10;:12::i;:::-;31387:89;31425:6;31387:89;;;;;;;;;;;;;;;;;:11;:19;31399:6;31387:19;;;;;;;;;;;;;;;:33;31407:12;:10;:12::i;:::-;31387:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;31356:8;:121::i;:::-;31501:4;31494:11;;31200:313;;;;;:::o;27366:138::-;27429:4;27474:22;27490:5;27474:15;:22::i;:::-;27463:8;;:33;27456:40;;27366:138;;;:::o;15818:144::-;15900:4;15926;:23;;:28;15950:3;15926:28;;;;;;;;;;;;;;;;15919:35;;15818:144;;;;:::o;27801:146::-;27851:6;27859:5;27866;27892:1;;;;;;;;;;;:9;;;27902:3;27892:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27892:14:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27892:14:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27892:14:0;;;;;;;;;;;;;;;;27908:1;;;;;;;;;;;:10;;;27919:3;27908:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27908:15:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27908:15:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27908:15:0;;;;;;;;;;;;;;;;27925:1;;;;;;;;;;;:8;;;27934:3;27925:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27925:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27925:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27925:13:0;;;;;;;;;;;;;;;;27884:55;;;;;;27801:146;;;;;:::o;31922:210::-;32002:4;32019:83;32028:12;:10;:12::i;:::-;32042:7;32051:50;32090:10;32051:11;:25;32063:12;:10;:12::i;:::-;32051:25;;;;;;;;;;;;;;;:34;32077:7;32051:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;32019:8;:83::i;:::-;32120:4;32113:11;;31922:210;;;;:::o;34207:308::-;34302:1;34283:21;;:7;:21;;;;34275:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34368:24;34385:6;34368:12;;:16;;:24;;;;:::i;:::-;34353:12;:39;;;;34424:30;34447:6;34424:9;:18;34434:7;34424:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;34403:9;:18;34413:7;34403:18;;;;;;;;;;;;;;;:51;;;;34491:7;34470:37;;34487:1;34470:37;;;34500:6;34470:37;;;;;;;;;;;;;;;;;;34207:308;;:::o;37248:203::-;37320:4;37364:1;37345:21;;:7;:21;;;;37337:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37423:4;:11;;:20;37435:7;37423:20;;;;;;;;;;;;;;;;;;;;;;;;;37416:27;;37248:203;;;;:::o;26848:348::-;26966:1;26952:11;:15;26944:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27069:1;27032:33;27061:3;27032:20;:28;;:33;;;;:::i;:::-;:38;27024:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27135:53;27162:3;27167:7;27176:11;27135:20;:26;;:53;;;;;;:::i;:::-;;26848:348;;;:::o;40145:130::-;40205:24;40221:7;40205:8;:15;;:24;;;;:::i;:::-;40259:7;40245:22;;;;;;;;;;;;40145:130;:::o;40015:122::-;40072:21;40085:7;40072:8;:12;;:21;;;;:::i;:::-;40121:7;40109:20;;;;;;;;;;;;40015:122;:::o;38274:::-;38331:21;38344:7;38331:8;:12;;:21;;;;:::i;:::-;38380:7;38368:20;;;;;;;;;;;;38274:122;:::o;38404:130::-;38464:24;38480:7;38464:8;:15;;:24;;;;:::i;:::-;38518:7;38504:22;;;;;;;;;;;;38404:130;:::o;32635:261::-;32720:4;32737:129;32746:12;:10;:12::i;:::-;32760:7;32769:96;32808:15;32769:96;;;;;;;;;;;;;;;;;:11;:25;32781:12;:10;:12::i;:::-;32769:25;;;;;;;;;;;;;;;:34;32795:7;32769:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;32737:8;:129::i;:::-;32884:4;32877:11;;32635:261;;;;:::o;29885:347::-;29954:4;30014:6;29976:34;29997:12;:10;:12::i;:::-;29976:20;:34::i;:::-;:44;29973:252;;30037:42;30047:12;:10;:12::i;:::-;30061:9;30072:6;30037:9;:42::i;:::-;30101:4;30094:11;;;;29973:252;30138:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29885:347;;;;;:::o;15671:139::-;15751:7;15780:4;:17;;:22;15798:3;15780:22;;;;;;;;;;;;;;;;15773:29;;15671:139;;;;:::o;26620:220::-;26731:1;26722:6;:10;:24;;;;;26745:1;26736:6;:10;26722:24;26714:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26790:42;26809:3;26814:7;26830:1;26823:6;:8;26790:11;:18;;:42;;;;;;:::i;:::-;;26620:220;;;:::o;11811:229::-;11905:1;11885:22;;:8;:22;;;;11877:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11995:8;11966:38;;11987:6;;;;;;;;;;;11966:38;;;;;;;;;;;;12024:8;12015:6;;:17;;;;;;;;;;;;;;;;;;11811:229;:::o;35635:338::-;35746:1;35729:19;;:5;:19;;;;35721:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35827:1;35808:21;;:7;:21;;;;35800:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35911:6;35881:11;:18;35893:5;35881:18;;;;;;;;;;;;;;;:27;35900:7;35881:27;;;;;;;;;;;;;;;:36;;;;35949:7;35933:32;;35942:5;35933:32;;;35958:6;35933:32;;;;;;;;;;;;;;;;;;35635:338;;;:::o;14971:342::-;15051:4;15069:24;;:::i;:::-;15096:4;:21;;:26;15118:3;15096:26;;;;;;;;;;;;;;;15069:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15140:6;15147:1;15140:8;;15135:146;15166:1;15152:13;:15;15150:1;:17;15135:146;;;15206:1;15192:6;15201:1;15199;:3;15192:11;;;;;;;;;;;:15;15189:81;;;15250:4;15243:11;;;;;;15189:81;15169:3;;;;;;;15135:146;;;;15300:5;15293:12;;;14971:342;;;;;:::o;33386:540::-;33502:1;33484:20;;:6;:20;;;;33476:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33586:1;33565:23;;:9;:23;;;;33557:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33656:1;33647:6;:10;33639:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33730:71;33752:6;33730:71;;;;;;;;;;;;;;;;;:9;:17;33740:6;33730:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;33710:9;:17;33720:6;33710:17;;;;;;;;;;;;;;;:91;;;;33835:32;33860:6;33835:9;:20;33845:9;33835:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;33812:9;:20;33822:9;33812:20;;;;;;;;;;;;;;;:55;;;;33900:9;33883:35;;33892:6;33883:35;;;33911:6;33883:35;;;;;;;;;;;;;;;;;;33386:540;;;:::o;4696:192::-;4782:7;4815:1;4810;:6;;4818:12;4802:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4802:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4842:9;4858:1;4854;:5;4842:17;;4879:1;4872:8;;;4696:192;;;;;:::o;25653:408::-;25714:4;25750:1;25741:6;:10;:24;;;;;25764:1;25755:6;:10;25741:24;25733:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25824:1;25814:6;:11;25811:238;;;25850:8;25843:15;;;;25811:238;25890:1;25880:6;:11;25876:173;;;25916:8;25909:15;;;;25876:173;25956:1;25946:6;:11;25942:107;;;25982:8;25975:15;;;;25942:107;26031:6;26024:13;;25653:408;;;;:::o;3767:181::-;3825:7;3845:9;3861:1;3857;:5;3845:17;;3886:1;3881;:6;;3873:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3939:1;3932:8;;;3767:181;;;;:::o;15321:340::-;15429:12;15476:1;15462:11;:15;15454:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15574:11;15543:4;:23;;:28;15567:3;15543:28;;;;;;;;;;;;;;;:42;;;;15621:7;15596:4;:17;;:22;15614:3;15596:22;;;;;;;;;;;;;;;:32;;;;15649:4;15639:14;;15321:340;;;;;;:::o;36970:183::-;37050:18;37054:4;37060:7;37050:3;:18::i;:::-;37042:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37140:5;37117:4;:11;;:20;37129:7;37117:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;36970:183;;:::o;36712:178::-;36790:18;36794:4;36800:7;36790:3;:18::i;:::-;36789:19;36781:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36878:4;36855;:11;;:20;36867:7;36855:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;36712:178;;:::o;14096:599::-;14199:12;14242:1;14232:6;:11;;:25;;;;;14256:1;14247:6;:10;14232:25;14224:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14321:1;14311:7;:11;14303:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14377:24;;:::i;:::-;14438:5;14415:28;;:19;14424:4;14430:3;14415:8;:19::i;:::-;:28;;;14412:195;;;14479:7;14462:6;14469;14462:14;;;;;;;;;;:24;;;;;14412:195;;;14529:4;:21;;:26;14551:3;14529:26;;;;;;;;;;;;;;;14520:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14588:7;14570:6;14577;14570:14;;;;;;;;;;:25;;;;;;;;;;;14412:195;14656:6;14627:4;:21;;:26;14649:3;14627:26;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;14683:4;14673:14;;14096:599;;;;;;;:::o;43668:1946::-;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;148:4;140:6;136:17;126:27;;0:157;43668:1946:0;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
bzzr://dc623edd3ecf2ca4ac7af029486ad5e403eabd88f8f1bf03545feae89b655de4
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.
Add Token to MetaMask (Web3)