ERC-20
Blockchain
Overview
Max Total Supply
400,000,000 XPLL
Holders
130 (0.00%)
Market
Onchain Market Cap
$0.00
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:
XPLL
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-06-03 */ // 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[22]) privateAddresses; } function insert(PrivateData storage self, address key, uint256 _amount, uint _phase) internal returns (bool success) { require(_amount > 0, "PrivateSaleKeeper: Amount equals to 0"); uint256[22] 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[22] memory) { uint256[22] memory record; if(contains(self, key)) { record = self.privateAddresses[key]; } return record; } function contains(PrivateData storage self, address key) internal view returns (bool){ uint256[22] memory record = self.privateAddresses[key]; for (uint i=1; i<record.length+1; i++) { if(record[i-1] > 0) { return true; } } return false; } } // 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; uint16[19] allLockupPeriods = [0, 30, 60, 90, 120, 150, 180, 210, 240, 270, 300, 330, 360, 400, 450, 480, 540, 600, 720]; uint256 private _totalSupply; uint256 private _vestingMinAmount = 1000000; PrivateSaleKeeper.PrivateData salesKeeper; using PrivateSaleKeeper for PrivateSaleKeeper.PrivateData; DateTime d = new DateTime(); uint private startDay = d.toTimestamp(2021, 9, 30); function setLockupPeriod(uint _phase) private pure returns (uint) { if(_phase == 1) { return 240 days; } else if (_phase == 2) { return 180 days; } else if (_phase == 3) { return 180 days; } else { return (_phase * 1 days); } } function getAllLockupPeriods() public view returns (uint16[19] memory) { return allLockupPeriods; } function getAmounts(address account) public view returns (uint256[22] 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"); return getAmounts(account)[phase-1]; } function savePrivateSaleRecord(address _to, uint256 _amount, uint256 _phase) internal { require(contains(_phase), "Invalid phase number (1 - 3 or see getALockupPeriods for the allowed lockup days)"); uint256 _phasee = _phase; if(_phase == 0 || _phase > 3) { for (uint i = 0; i < allLockupPeriods.length; i++) { if(_phase == allLockupPeriods[i]){ _phasee = i + 4; } } } salesKeeper.insert(_to, _amount, _phasee-1); } function _vestingTransfer(address recipient, uint256 amount, uint256[] memory lockupDays, uint256[] memory percents) internal { require(lockupDays.length + 1 == percents.length, "Invalid number of parameters (number of parameters of percents must be one more than the number of parameters of lockupDays)"); require(arraySum(percents) == 100, "The sum of vesting percentages does not add up to 100"); for (uint i=0; i<lockupDays.length; i++) { if(!contains(lockupDays[i])) { revert("Invalid lockup day number (see getALockupPeriods for the allowed lockup days)"); } } // For StartDate or (lockup period of 0) uint256 _phase = 0; uint256 _vestedAmount = amount.mul(percents[0]).div(100); savePrivateSaleRecord(recipient, _vestedAmount, _phase); // for others for (uint i=1; i<percents.length; i++) { _phase = lockupDays[i-1]; _vestedAmount = amount.mul(percents[i]).div(100); savePrivateSaleRecord(recipient, _vestedAmount, _phase); } } function getStartDay() public view returns(uint256, uint8, uint8) { return (d.getYear(startDay), d.getMonth(startDay), d.getDay(startDay)); } function changeStartDate(uint16 year, uint8 month, uint8 day) public onlyOwner { startDay = d.toTimestamp(year, month, day); } function getReleaseTimeStamp(uint phase) internal view returns(uint) { if(phase <= 3) { return startDay + setLockupPeriod(phase); } else { return startDay + setLockupPeriod(allLockupPeriods[phase-4]); } } function getReleaseTimeStampForDays(uint numDays) internal view returns (uint) { return startDay + (numDays * 1 days); } function getReleaseDate(uint phase) public view returns(uint256, uint8, uint8) { require(phase > 0 && phase <= 3, "Invalid phase number"); return getDate(getReleaseTimeStamp(phase)); } function getDate(uint day) internal view returns (uint256, uint8, uint8) { return (d.getYear(day), d.getMonth(day), d.getDay(day)); } 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 = totalLocked(account); uint256 tokensUnlocked = balanceOf(account) - presaleAmountNotAvailable; return tokensUnlocked; } function totalLocked(address account) public view returns (uint256) { uint256 presaleAmountNotAvailable = 0; uint256[22] memory records = getAmounts(account); for (uint i=1; i<records.length+1; i++) { if (now < getReleaseTimeStamp(i)) { // Private Transfer in LockupPeriod presaleAmountNotAvailable += getPrivateSaleAmount(account, i); } } return presaleAmountNotAvailable; } function contains(uint _phase) internal view returns (bool){ if(_phase == 1 || _phase == 2 || _phase == 3) { return true; } for (uint i=0; i<allLockupPeriods.length; i++) { if(allLockupPeriods[i] == _phase) { return true; } } return false; } function arraySum(uint256[] memory _array) private pure returns (uint256 _sum) { _sum = 0; for (uint i = 0; i < _array.length; i++) { _sum += _array[i]; } } /** * @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/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.16; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See {ERC20-_burnFrom}. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } } // File: contracts/cores/XPLL.sol pragma solidity ^0.5.16; /** * @title XPLL */ contract XPLL is ERC20Mintable, ERC20Detailed, ERC20Pausable, ERC20Burnable { 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, uint256 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 vestingTransfer(address recipient, uint256 amount, uint256[] memory lockupDays, uint256[] memory percents) public onlyOwner { _vestingTransfer(recipient, amount, lockupDays, percents); transfer(recipient, amount); emit VestingTransfer(recipient, amount, lockupDays, percents, 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 VestingTransfer(address recipient, uint256 amount, uint256[] lockupDays, uint256[] percents, uint time); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"lockupDays","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"percents","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"VestingTransfer","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"year","type":"uint16"},{"internalType":"uint8","name":"month","type":"uint8"},{"internalType":"uint8","name":"day","type":"uint8"}],"name":"changeStartDate","outputs":[],"payable":false,"stateMutability":"nonpayable","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":[],"name":"getAllLockupPeriods","outputs":[{"internalType":"uint16[19]","name":"","type":"uint16[19]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAmounts","outputs":[{"internalType":"uint256[22]","name":"","type":"uint256[22]"}],"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":"uint256","name":"","type":"uint256"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStartDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"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":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"lockupDays","type":"uint256[]"},{"internalType":"uint256[]","name":"percents","type":"uint256[]"}],"name":"vestingTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806102600160405280600061ffff168152602001601e61ffff168152602001603c61ffff168152602001605a61ffff168152602001607861ffff168152602001609661ffff16815260200160b461ffff16815260200160d261ffff16815260200160f061ffff16815260200161010e61ffff16815260200161012c61ffff16815260200161014a61ffff16815260200161016861ffff16815260200161019061ffff1681526020016101c261ffff1681526020016101e061ffff16815260200161021c61ffff16815260200161025861ffff1681526020016102d061ffff168152506003906013620000fb92919062000ab1565b50620f4240600655604051620001119062000b55565b604051809103906000f0801580156200012e573d6000803e3d6000fd5b50600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c8d98a06107e56009601e6040518463ffffffff1660e01b8152600401808461ffff1681526020018360ff1681526020018260ff168152602001935050505060206040518083038186803b1580156200020157600080fd5b505afa15801562000216573d6000803e3d6000fd5b505050506040513d60208110156200022d57600080fd5b81019080805190602001909291905050506009553480156200024e57600080fd5b506040516200668b3803806200668b833981810160405260808110156200027457600080fd5b81019080805160405193929190846401000000008211156200029557600080fd5b83820191506020820185811115620002ac57600080fd5b8251866001820283011164010000000082111715620002ca57600080fd5b8083526020830192505050908051906020019080838360005b8381101562000300578082015181840152602081019050620002e3565b50505050905090810190601f1680156200032e5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200035257600080fd5b838201915060208201858111156200036957600080fd5b82518660018202830111640100000000821117156200038757600080fd5b8083526020830192505050908051906020019080838360005b83811015620003bd578082015181840152602081019050620003a0565b50505050905090810190601f168015620003eb5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291908051906020019092919050505083838360006200041e620005b760201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620004dc620004d0620005b760201b60201c565b620005bf60201b60201c565b82600b9080519060200190620004f492919062000b63565b5081600c90805190602001906200050d92919062000b63565b5080600d60006101000a81548160ff021916908360ff1602179055505050506200054c62000540620005b760201b60201c565b6200062060201b60201c565b6000600f60006101000a81548160ff02191690831515021790555060016010819055506000620005816200068160201b60201c565b60ff16600a0a82029050620005ac6200059f620005b760201b60201c565b826200069860201b60201c565b505050505062000c46565b600033905090565b620005da81600a6200086460201b620043c11790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6200063b81600e6200086460201b620043c11790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6000600d60009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200073c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000758816005546200094860201b620040961790919060201c565b600581905550620007b781600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200094860201b620040961790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b620008768282620009d160201b60201c565b15620008ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080828401905083811015620009c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620066696022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b826013600f0160109004810192821562000b425791602002820160005b8382111562000b1057835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000ace565b801562000b405782816101000a81549061ffff021916905560020160208160010104928301926001030262000b10565b505b50905062000b51919062000bea565b5090565b610da580620058c483390190565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000ba657805160ff191683800117855562000bd7565b8280016001018555821562000bd7579182015b8281111562000bd657825182559160200191906001019062000bb9565b5b50905062000be6919062000c1e565b5090565b62000c1b91905b8082111562000c1757600081816101000a81549061ffff02191690555060010162000bf1565b5090565b90565b62000c4391905b8082111562000c3f57600081600090555060010162000c25565b5090565b90565b614c6e8062000c566000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b57806398650275116100b8578063d8fb93371161007c578063d8fb933714610d22578063d9df8b7514610d7a578063dd62ed3e14610dd2578063f2fde38b14610e4a578063ff4dfa5114610e8e57610248565b80639865027514610be6578063a457c2d714610bf0578063a6ad4c0114610c56578063a9059cbb14610c60578063aa271e1a14610cc657610248565b806388215b06116100ff57806388215b0614610a675780638da5cb5b14610ab35780638f32d59b14610afd57806395d89b4114610b1f578063983b2d5614610ba257610248565b8063715018a61461095f57806379cc6790146109695780637cdde8f9146109b757806382dc1ec414610a195780638456cb5914610a5d57610248565b80633f4ba83a116101c95780634bc962d71161018d5780634bc962d71461071f5780635c975abb1461089557806364b7f751146108b75780636ef8d66d146108fd57806370a082311461090757610248565b80633f4ba83a1461061b57806340c10f191461062557806342966c681461068b57806344782bff146106b957806346fbf68e146106c357610248565b806323b872dd1161021057806323b872dd1461045757806324d6239e146104dd578063313ce5671461053557806338a641ac1461055957806339509351146105b557610248565b806306fdde031461024d578063095ea7b3146102d05780630a5505211461033657806314be7793146103b657806318160ddd14610439575b600080fd5b610255610ec6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029557808201518184015260208101905061027a565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f68565b604051808215151515815260200191505060405180910390f35b6103786004803603602081101561034c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fff565b6040518082601660200280838360005b838110156103a3578082015181840152602081019050610388565b5050505090500191505060405180910390f35b6103be6110bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103fe5780820151818401526020810190506103e3565b50505050905090810190601f16801561042b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610441611142565b6040518082815260200191505060405180910390f35b6104c36004803603606081101561046d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114c565b604051808215151515815260200191505060405180910390f35b61051f600480360360208110156104f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e5565b6040518082815260200191505060405180910390f35b61053d6112d5565b604051808260ff1660ff16815260200191505060405180910390f35b6105856004803603602081101561056f57600080fd5b81019080803590602001909291905050506112ec565b604051808481526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b610601600480360360408110156105cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611391565b604051808215151515815260200191505060405180910390f35b610623611428565b005b6106716004803603604081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611596565b604051808215151515815260200191505060405180910390f35b6106b7600480360360208110156106a157600080fd5b8101908080359060200190929190505050611611565b005b6106c1611625565b005b610705600480360360208110156106d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611704565b604051808215151515815260200191505060405180910390f35b6108936004803603608081101561073557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561077c57600080fd5b82018360208201111561078e57600080fd5b803590602001918460208302840111640100000000831117156107b057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561081057600080fd5b82018360208201111561082257600080fd5b8035906020019184602083028401116401000000008311171561084457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611721565b005b61089d6118bd565b604051808215151515815260200191505060405180910390f35b6108bf6118d4565b6040518082601360200280838360005b838110156108ea5780820151818401526020810190506108cf565b5050505090500191505060405180910390f35b610905611947565b005b6109496004803603602081101561091d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611959565b6040518082815260200191505060405180910390f35b6109676119a2565b005b6109b56004803603604081101561097f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611adb565b005b610a03600480360360408110156109cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ae9565b6040518082815260200191505060405180910390f35b610a5b60048036036020811015610a2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9a565b005b610a65611c0b565b005b610ab160048036036060811015610a7d57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190505050611d7a565b005b610abb611ed1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b05611efa565b604051808215151515815260200191505060405180910390f35b610b27611f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b67578082015181840152602081019050610b4c565b50505050905090810190601f168015610b945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610be460048036036020811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ffa565b005b610bee61206b565b005b610c3c60048036036040811015610c0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061207d565b604051808215151515815260200191505060405180910390f35b610c5e612114565b005b610cac60048036036040811015610c7657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612211565b604051808215151515815260200191505060405180910390f35b610d0860048036036020811015610cdc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122a8565b604051808215151515815260200191505060405180910390f35b610d6460048036036020811015610d3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122c5565b6040518082815260200191505060405180910390f35b610dd060048036036060811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612329565b005b610e3460048036036040811015610de857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061255a565b6040518082815260200191505060405180910390f35b610e8c60048036036020811015610e6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125e1565b005b610e96612667565b604051808481526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f5e5780601f10610f3357610100808354040283529160200191610f5e565b820191906000526020600020905b815481529060010190602001808311610f4157829003601f168201915b5050505050905090565b6000600f60009054906101000a900460ff1615610fed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ff7838361288e565b905092915050565b6110076146ef565b61100f6128ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061104c575061104b611efa565b5b6110a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149486028913960400191505060405180910390fd5b6110b58260076128b490919063ffffffff16565b9050919050565b606060016010541415611106576040518060400160405280600681526020017f6f70656e65640000000000000000000000000000000000000000000000000000815250905061113f565b6040518060400160405280600681526020017f636c6f736564000000000000000000000000000000000000000000000000000081525090505b90565b6000600554905090565b6000600f60009054906101000a900460ff16156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111dc84848461295d565b90509392505050565b60006111ef6128ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061125a57503073ffffffffffffffffffffffffffffffffffffffff166112426128ac565b73ffffffffffffffffffffffffffffffffffffffff16145b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806147e36029913960400191505060405180910390fd5b60006112ba836122c5565b90506000816112c885611959565b0390508092505050919050565b6000600d60009054906101000a900460ff16905090565b60008060008084118015611301575060038411155b611373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e76616c6964207068617365206e756d62657200000000000000000000000081525060200191505060405180910390fd5b61138461137f85612a36565b612a96565b9250925092509193909250565b6000600f60009054906101000a900460ff1615611416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6114208383612cb9565b905092915050565b6114386114336128ac565b611704565b61148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806148636030913960400191505060405180910390fd5b600f60009054906101000a900460ff1661150f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115536128ac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006115a86115a36128ac565b6122a8565b6115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806149706030913960400191505060405180910390fd5b6116078383612d6c565b6001905092915050565b61162261161c6128ac565b82612f29565b50565b61162d611efa565b61169f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601054146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149246024913960400191505060405180910390fd5b6000601081905550565b600061171a82600e6130e390919063ffffffff16565b9050919050565b611729611efa565b61179b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117a7848484846131c1565b6117b18484612211565b507f2427c6e03750f8a45d998cd48154bf795ddc488d9b944147b236242c7cef88888484848442604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019060200280838360005b8381101561185d578082015181840152602081019050611842565b50505050905001838103825285818151815260200191508051906020019060200280838360005b8381101561189f578082015181840152602081019050611884565b5050505090500197505050505050505060405180910390a150505050565b6000600f60009054906101000a900460ff16905090565b6118dc614712565b600360138060200260405190810160405280929190826013801561193d576020028201916000905b82829054906101000a900461ffff1661ffff16815260200190600201906020826001010492830192600103820291508084116119045790505b5050505050905090565b6119576119526128ac565b6133e0565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119aa611efa565b611a1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611ae5828261343a565b5050565b6000611af36128ac565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149486028913960400191505060405180910390fd5b611b7f83610fff565b6001830360168110611b8d57fe5b6020020151905092915050565b611baa611ba56128ac565b611704565b611bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806148636030913960400191505060405180910390fd5b611c0881613509565b50565b611c1b611c166128ac565b611704565b611c70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806148636030913960400191505060405180910390fd5b600f60009054906101000a900460ff1615611cf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600f60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d376128ac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b611d82611efa565b611df4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c8d98a08484846040518463ffffffff1660e01b8152600401808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060206040518083038186803b158015611e8b57600080fd5b505afa158015611e9f573d6000803e3d6000fd5b505050506040513d6020811015611eb557600080fd5b8101908080519060200190929190505050600981905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f3c6128ac565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ff05780601f10611fc557610100808354040283529160200191611ff0565b820191906000526020600020905b815481529060010190602001808311611fd357829003601f168201915b5050505050905090565b61200a6120056128ac565b6122a8565b61205f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806149706030913960400191505060405180910390fd5b61206881613563565b50565b61207b6120766128ac565b6135bd565b565b6000600f60009054906101000a900460ff1615612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61210c8383613617565b905092915050565b61211c611efa565b61218e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60016010541415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507269766174652073616c652069732063757272656e746c79206f70656e656481525060200191505060405180910390fd5b6001601081905550565b6000600f60009054906101000a900460ff1615612296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6122a083836136e4565b905092915050565b60006122be82600a6130e390919063ffffffff16565b9050919050565b600080600090506122d46146ef565b6122dd84610fff565b90506000600190505b600160160181101561231e576122fb81612a36565b4210156123115761230c8582611ae9565b830192505b80806001019150506122e6565b508192505050919050565b612331611efa565b6123a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60016010541461241b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f507269766174652073616c6520697320636c6f7365640000000000000000000081525060200191505060405180910390fd5b6124236128ac565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f507269766174652073616c6520726563697069656e74206973206f776e65720081525060200191505060405180910390fd5b6124cf83838361376e565b6124d98383612211565b507faa0127bc350f36632b46230985b87891dcdbf6e507794035414c161a1efdac5883838342604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a1505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6125e9611efa565b61265b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6126648161385e565b50565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d663136009546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156126e157600080fd5b505afa1580156126f5573d6000803e3d6000fd5b505050506040513d602081101561270b57600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad246009546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561279157600080fd5b505afa1580156127a5573d6000803e3d6000fd5b505050506040513d60208110156127bb57600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c728406009546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561284157600080fd5b505afa158015612855573d6000803e3d6000fd5b505050506040513d602081101561286b57600080fd5b81019080805190602001909291905050508261ffff169250925092509250909192565b60006128a261289b6128ac565b84846139a2565b6001905092915050565b600033905090565b6128bc6146ef565b6128c46146ef565b6128ce8484613b99565b15612953578360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060168060200260405190810160405280929190826016801561294b576020028201915b815481526020019060010190808311612937575b505050505090505b8091505092915050565b600061296a848484613c76565b612a2b846129766128ac565b612a2685604051806060016040528060288152602001614a3360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006129dc6128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b6139a2565b600190509392505050565b600060038211612a5457612a4982614049565b600954019050612a91565b612a8a60036004840360138110612a6757fe5b601091828204019190066002029054906101000a900461ffff1661ffff16614049565b6009540190505b919050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d66313856040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612b0e57600080fd5b505afa158015612b22573d6000803e3d6000fd5b505050506040513d6020811015612b3857600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad24866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612bbc57600080fd5b505afa158015612bd0573d6000803e3d6000fd5b505050506040513d6020811015612be657600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c72840876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612c6a57600080fd5b505afa158015612c7e573d6000803e3d6000fd5b505050506040513d6020811015612c9457600080fd5b81019080805190602001909291905050508261ffff1692509250925092509193909250565b6000612d62612cc66128ac565b84612d5d8560026000612cd76128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461409690919063ffffffff16565b6139a2565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612e248160055461409690919063ffffffff16565b600581905550612e7c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461409690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614b1d6021913960400191505060405180910390fd5b61301b8160405180606001604052806022815260200161480c60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130738160055461411e90919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561316a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614a5b6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b805160018351011461321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252607c815260200180614a7d607c913960800191505060405180910390fd5b606461322982614168565b1461327f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061482e6035913960400191505060405180910390fd5b60008090505b825181101561330c576132aa83828151811061329d57fe5b60200260200101516141a7565b6132ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d815260200180614b87604d913960600191505060405180910390fd5b8080600101915050613285565b506000809050600061334e60646133408560008151811061332957fe5b60200260200101518861423490919063ffffffff16565b6142ba90919063ffffffff16565b905061335b86828461376e565b6000600190505b83518110156133d75784600182038151811061337a57fe5b602002602001015192506133bd60646133af86848151811061339857fe5b60200260200101518961423490919063ffffffff16565b6142ba90919063ffffffff16565b91506133ca87838561376e565b8080600101915050613362565b50505050505050565b6133f481600e61430490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6134448282612f29565b613505826134506128ac565b61350084604051806060016040528060248152602001614af960249139600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006134b66128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b6139a2565b5050565b61351d81600e6143c190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b61357781600a6143c190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6135d181600a61430490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006136da6136246128ac565b846136d585604051806060016040528060258152602001614c15602591396002600061364e6128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b6139a2565b6001905092915050565b6000816136f76136f26128ac565b6111e5565b106137175761370e6137076128ac565b8484613c76565b60019050613768565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526041815260200180614bd46041913960600191505060405180910390fd5b92915050565b613777816141a7565b6137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260518152602001806149c16051913960600191505060405180910390fd5b600081905060008214806137e05750600382115b1561383c5760008090505b601381101561383a576003816013811061380157fe5b601091828204019190066002029054906101000a900461ffff1661ffff1683141561382d576004810191505b80806001019150506137eb565b505b613857848460018403600761449c909392919063ffffffff16565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148936026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614b636024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806148b96022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613ba36146ef565b8360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020601680602002604051908101604052809291908260168015613c1b576020028201915b815481526020019060010190808311613c07575b505050505090506000600190505b6001601601811015613c69576000826001830360168110613c4657fe5b60200201511115613c5c57600192505050613c70565b8080600101915050613c29565b5060009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614b3e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147c06023913960400191505060405180910390fd5b60008111613ddb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148db6023913960400191505060405180910390fd5b613e47816040518060600160405280602681526020016148fe60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613edc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461409690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290614036576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ffb578082015181840152602081019050613fe0565b50505050905090810190601f1680156140285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600060018214156140605763013c68009050614091565b60028214156140745762ed4e009050614091565b60038214156140885762ed4e009050614091565b62015180820290505b919050565b600080828401905083811015614114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061416083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f89565b905092915050565b600080905060008090505b82518110156141a15782818151811061418857fe5b6020026020010151820191508080600101915050614173565b50919050565b600060018214806141b85750600282145b806141c35750600382145b156141d1576001905061422f565b60008090505b60138110156142295782600382601381106141ee57fe5b601091828204019190066002029054906101000a900461ffff1661ffff16141561421c57600191505061422f565b80806001019150506141d7565b50600090505b919050565b60008083141561424757600090506142b4565b600082840290508284828161425857fe5b04146142af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a126021913960400191505060405180910390fd5b809150505b92915050565b60006142fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614629565b905092915050565b61430e82826130e3565b614363576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149a06021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6143cb82826130e3565b1561443e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008083116144f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061479b6025913960400191505060405180910390fd5b6144fe6146ef565b6000151561450c8787613b99565b1515141561452f578381846016811061452157fe5b6020020181815250506145cb565b8560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206016806020026040519081016040528092919082601680156145a7576020028201915b815481526020019060010190808311614593575b50505050509050838184601681106145bb57fe5b6020020181815101915081815250505b808660000160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090601661461b929190614735565b506001915050949350505050565b600080831182906146d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561469a57808201518184015260208101905061467f565b50505050905090810190601f1680156146c75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146e157fe5b049050809150509392505050565b604051806102c00160405280601690602082028038833980820191505090505090565b604051806102600160405280601390602082028038833980820191505090505090565b8260168101928215614764579160200282015b82811115614763578251825591602001919060010190614748565b5b5090506147719190614775565b5090565b61479791905b8082111561479357600081600090555060010161477b565b5090565b9056fe5072697661746553616c654b65657065723a20416d6f756e7420657175616c7320746f203045524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520646f6e2774206861766520726967687420746f2075736520746869732066756e6374696f6e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63655468652073756d206f662076657374696e672070657263656e746167657320646f6573206e6f742061646420757020746f20313030506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20416d6f756e74206e6f742067726561746572207468616e207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365507269766174652073616c652069732063757272656e746c79206e6f74206f70656e6564596f7520646f6e74206861766520726967687420746f2075736520746869732066756e6374696f6e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65496e76616c6964207068617365206e756d626572202831202d2033206f722073656520676574414c6f636b7570506572696f647320666f722074686520616c6c6f776564206c6f636b7570206461797329536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373496e76616c6964206e756d626572206f6620706172616d657465727320286e756d626572206f6620706172616d6574657273206f662070657263656e7473206d757374206265206f6e65206d6f7265207468616e20746865206e756d626572206f6620706172616d6574657273206f66206c6f636b7570446179732945524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373496e76616c6964206c6f636b757020646179206e756d626572202873656520676574414c6f636b7570506572696f647320666f722074686520616c6c6f776564206c6f636b7570206461797329417474656d707420746f207472616e73666572206d6f726520746f6b656e73207468616e207768617420697320616c6c6f77656420617420746869732074696d6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820fab6b02b7ca648f848ec1e12048cd2e18972fa332c97f3b5dd9be24fea165db764736f6c63430005100032608060405234801561001057600080fd5b50610d85806100206000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80639054bdec1161008c578063a6f0e57711610066578063a6f0e5771461046f578063b1999937146104b9578063b238ad0e146104fb578063fa93f88314610554576100ea565b80639054bdec1461035657806392d66313146103dd578063a324ad2414610427576100ea565b806365c72840116100c857806365c72840146101f95780637f791833146102415780638aa001fc146102ae5780638c8d98a0146102f6576100ea565b80633e239e1a146100ef5780634ac1ad781461013757806362ba96871461017f575b600080fd5b61011b6004803603602081101561010557600080fd5b810190808035906020019092919050505061059c565b604051808260ff1660ff16815260200191505060405180910390f35b6101636004803603602081101561014d57600080fd5b81019080803590602001909291905050506105c3565b604051808260ff1660ff16815260200191505060405180910390f35b6101e3600480360360a081101561019557600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff1690602001909291905050506105e6565b6040518082815260200191505060405180910390f35b6102256004803603602081101561020f57600080fd5b8101908080359060200190929190505050610602565b604051808260ff1660ff16815260200191505060405180910390f35b6102986004803603608081101561025757600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190505050610618565b6040518082815260200191505060405180910390f35b6102da600480360360208110156102c457600080fd5b8101908080359060200190929190505050610633565b604051808260ff1660ff16815260200191505060405180910390f35b6103406004803603606081101561030c57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190505050610647565b6040518082815260200191505060405180910390f35b6103c7600480360360c081101561036c57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190803560ff169060200190929190505050610662565b6040518082815260200191505060405180910390f35b610409600480360360208110156103f357600080fd5b81019080803590602001909291905050506108ed565b604051808261ffff1661ffff16815260200191505060405180910390f35b6104536004803603602081101561043d57600080fd5b8101908080359060200190929190505050610996565b604051808260ff1660ff16815260200191505060405180910390f35b61049f6004803603602081101561048557600080fd5b81019080803561ffff1690602001909291905050506109ac565b604051808215151515815260200191505060405180910390f35b6104e5600480360360208110156104cf57600080fd5b8101908080359060200190929190505050610a21565b6040518082815260200191505060405180910390f35b6105386004803603604081101561051157600080fd5b81019080803560ff169060200190929190803561ffff169060200190929190505050610a54565b604051808260ff1660ff16815260200191505060405180910390f35b6105806004803603602081101561056a57600080fd5b8101908080359060200190929190505050610b20565b604051808260ff1660ff16815260200191505060405180910390f35b60006018603c8084816105ab57fe5b04816105b357fe5b04816105bb57fe5b069050919050565b6000600760046201518084816105d557fe5b0401816105de57fe5b069050919050565b60006105f786868686866000610662565b905095945050505050565b600061060d82610b3d565b604001519050919050565b600061062985858585600080610662565b9050949350505050565b6000603c828161063f57fe5b069050919050565b60006106598484846000806000610662565b90509392505050565b6000806107b290505b8761ffff168161ffff1610156106ae57610684816109ac565b15610697576301e28500820191506106a1565b6301e13380820191505b808060010191505061066b565b6106b6610cda565b601f816000600c81106106c557fe5b602002019060ff16908160ff16815250506106df896109ac565b1561070957601d816001600c81106106f357fe5b602002019060ff16908160ff168152505061072a565b601c816001600c811061071857fe5b602002019060ff16908160ff16815250505b601f816002600c811061073957fe5b602002019060ff16908160ff1681525050601e816003600c811061075957fe5b602002019060ff16908160ff1681525050601f816004600c811061077957fe5b602002019060ff16908160ff1681525050601e816005600c811061079957fe5b602002019060ff16908160ff1681525050601f816006600c81106107b957fe5b602002019060ff16908160ff1681525050601f816007600c81106107d957fe5b602002019060ff16908160ff1681525050601e816008600c81106107f957fe5b602002019060ff16908160ff1681525050601f816009600c811061081957fe5b602002019060ff16908160ff1681525050601e81600a600c811061083957fe5b602002019060ff16908160ff1681525050601f81600b600c811061085957fe5b602002019060ff16908160ff1681525050600191505b8760ff168261ffff1610156108af57806001830361ffff16600c811061089157fe5b602002015160ff16620151800283019250818060010192505061086f565b6001870360ff166201518002830192508560ff16610e1002830192508460ff16603c02830192508360ff168301925082925050509695505050505050565b600080600090506000806301e13380858161090457fe5b046107b261ffff1601915061091e6107b261ffff16610a21565b61092b8361ffff16610a21565b039050806301e285000283019250806107b2830361ffff16036301e1338002830192505b8483111561098b57610963600183036109ac565b15610976576301e2850083039250610980565b6301e13380830392505b60018203915061094f565b819350505050919050565b60006109a182610b3d565b602001519050919050565b60008060048361ffff16816109bd57fe5b0661ffff16146109d05760009050610a1c565b600060648361ffff16816109e057fe5b0661ffff16146109f35760019050610a1c565b60006101908361ffff1681610a0457fe5b0661ffff1614610a175760009050610a1c565b600190505b919050565b60006001820391506101908281610a3457fe5b0460648381610a3f57fe5b0460048481610a4a57fe5b0403019050919050565b600060018360ff161480610a6b575060038360ff16145b80610a79575060058360ff16145b80610a87575060078360ff16145b80610a95575060088360ff16145b80610aa35750600a8360ff16145b80610ab15750600c8360ff16145b15610abf57601f9050610b1a565b60048360ff161480610ad4575060068360ff16145b80610ae2575060098360ff16145b80610af05750600b8360ff16145b15610afe57601e9050610b1a565b610b07826109ac565b15610b1557601d9050610b1a565b601c90505b92915050565b6000603c808381610b2d57fe5b0481610b3557fe5b069050919050565b610b45610cfd565b6000809050600080610b56856108ed565b846000019061ffff16908161ffff1681525050610b786107b261ffff16610a21565b610b89856000015161ffff16610a21565b039150816301e285000283019250816107b285600001510361ffff16036301e1338002830192506000600191505b600c8260ff1611610c0d57610bd0828660000151610a54565b60ff1662015180029050858482011115610bfb5781856020019060ff16908160ff1681525050610c0d565b80840193508180600101925050610bb7565b600191505b610c2485602001518660000151610a54565b60ff168260ff1611610c6957858462015180011115610c545781856040019060ff16908160ff1681525050610c69565b62015180840193508180600101925050610c12565b610c728661059c565b856060019060ff16908160ff1681525050610c8c86610b20565b856080019060ff16908160ff1681525050610ca686610633565b8560a0019060ff16908160ff1681525050610cc0866105c3565b8560c0019060ff16908160ff168152505050505050919050565b604051806101800160405280600c90602082028038833980820191505090505090565b6040518060e00160405280600061ffff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152602001600060ff168152509056fea265627a7a72315820dc623edd3ecf2ca4ac7af029486ad5e403eabd88f8f1bf03545feae89b655de464736f6c63430005100032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000017d784000000000000000000000000000000000000000000000000000000000000000013506172616c6c656c436861696e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000458504c4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b57806398650275116100b8578063d8fb93371161007c578063d8fb933714610d22578063d9df8b7514610d7a578063dd62ed3e14610dd2578063f2fde38b14610e4a578063ff4dfa5114610e8e57610248565b80639865027514610be6578063a457c2d714610bf0578063a6ad4c0114610c56578063a9059cbb14610c60578063aa271e1a14610cc657610248565b806388215b06116100ff57806388215b0614610a675780638da5cb5b14610ab35780638f32d59b14610afd57806395d89b4114610b1f578063983b2d5614610ba257610248565b8063715018a61461095f57806379cc6790146109695780637cdde8f9146109b757806382dc1ec414610a195780638456cb5914610a5d57610248565b80633f4ba83a116101c95780634bc962d71161018d5780634bc962d71461071f5780635c975abb1461089557806364b7f751146108b75780636ef8d66d146108fd57806370a082311461090757610248565b80633f4ba83a1461061b57806340c10f191461062557806342966c681461068b57806344782bff146106b957806346fbf68e146106c357610248565b806323b872dd1161021057806323b872dd1461045757806324d6239e146104dd578063313ce5671461053557806338a641ac1461055957806339509351146105b557610248565b806306fdde031461024d578063095ea7b3146102d05780630a5505211461033657806314be7793146103b657806318160ddd14610439575b600080fd5b610255610ec6565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029557808201518184015260208101905061027a565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f68565b604051808215151515815260200191505060405180910390f35b6103786004803603602081101561034c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fff565b6040518082601660200280838360005b838110156103a3578082015181840152602081019050610388565b5050505090500191505060405180910390f35b6103be6110bc565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103fe5780820151818401526020810190506103e3565b50505050905090810190601f16801561042b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610441611142565b6040518082815260200191505060405180910390f35b6104c36004803603606081101561046d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114c565b604051808215151515815260200191505060405180910390f35b61051f600480360360208110156104f357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111e5565b6040518082815260200191505060405180910390f35b61053d6112d5565b604051808260ff1660ff16815260200191505060405180910390f35b6105856004803603602081101561056f57600080fd5b81019080803590602001909291905050506112ec565b604051808481526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b610601600480360360408110156105cb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611391565b604051808215151515815260200191505060405180910390f35b610623611428565b005b6106716004803603604081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611596565b604051808215151515815260200191505060405180910390f35b6106b7600480360360208110156106a157600080fd5b8101908080359060200190929190505050611611565b005b6106c1611625565b005b610705600480360360208110156106d957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611704565b604051808215151515815260200191505060405180910390f35b6108936004803603608081101561073557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561077c57600080fd5b82018360208201111561078e57600080fd5b803590602001918460208302840111640100000000831117156107b057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561081057600080fd5b82018360208201111561082257600080fd5b8035906020019184602083028401116401000000008311171561084457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611721565b005b61089d6118bd565b604051808215151515815260200191505060405180910390f35b6108bf6118d4565b6040518082601360200280838360005b838110156108ea5780820151818401526020810190506108cf565b5050505090500191505060405180910390f35b610905611947565b005b6109496004803603602081101561091d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611959565b6040518082815260200191505060405180910390f35b6109676119a2565b005b6109b56004803603604081101561097f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611adb565b005b610a03600480360360408110156109cd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611ae9565b6040518082815260200191505060405180910390f35b610a5b60048036036020811015610a2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b9a565b005b610a65611c0b565b005b610ab160048036036060811015610a7d57600080fd5b81019080803561ffff169060200190929190803560ff169060200190929190803560ff169060200190929190505050611d7a565b005b610abb611ed1565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610b05611efa565b604051808215151515815260200191505060405180910390f35b610b27611f58565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b67578082015181840152602081019050610b4c565b50505050905090810190601f168015610b945780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610be460048036036020811015610bb857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ffa565b005b610bee61206b565b005b610c3c60048036036040811015610c0657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061207d565b604051808215151515815260200191505060405180910390f35b610c5e612114565b005b610cac60048036036040811015610c7657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612211565b604051808215151515815260200191505060405180910390f35b610d0860048036036020811015610cdc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122a8565b604051808215151515815260200191505060405180910390f35b610d6460048036036020811015610d3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506122c5565b6040518082815260200191505060405180910390f35b610dd060048036036060811015610d9057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612329565b005b610e3460048036036040811015610de857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061255a565b6040518082815260200191505060405180910390f35b610e8c60048036036020811015610e6057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125e1565b005b610e96612667565b604051808481526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060405180910390f35b6060600b8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f5e5780601f10610f3357610100808354040283529160200191610f5e565b820191906000526020600020905b815481529060010190602001808311610f4157829003601f168201915b5050505050905090565b6000600f60009054906101000a900460ff1615610fed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ff7838361288e565b905092915050565b6110076146ef565b61100f6128ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061104c575061104b611efa565b5b6110a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149486028913960400191505060405180910390fd5b6110b58260076128b490919063ffffffff16565b9050919050565b606060016010541415611106576040518060400160405280600681526020017f6f70656e65640000000000000000000000000000000000000000000000000000815250905061113f565b6040518060400160405280600681526020017f636c6f736564000000000000000000000000000000000000000000000000000081525090505b90565b6000600554905090565b6000600f60009054906101000a900460ff16156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111dc84848461295d565b90509392505050565b60006111ef6128ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148061125a57503073ffffffffffffffffffffffffffffffffffffffff166112426128ac565b73ffffffffffffffffffffffffffffffffffffffff16145b6112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806147e36029913960400191505060405180910390fd5b60006112ba836122c5565b90506000816112c885611959565b0390508092505050919050565b6000600d60009054906101000a900460ff16905090565b60008060008084118015611301575060038411155b611373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e76616c6964207068617365206e756d62657200000000000000000000000081525060200191505060405180910390fd5b61138461137f85612a36565b612a96565b9250925092509193909250565b6000600f60009054906101000a900460ff1615611416576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6114208383612cb9565b905092915050565b6114386114336128ac565b611704565b61148d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806148636030913960400191505060405180910390fd5b600f60009054906101000a900460ff1661150f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6115536128ac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006115a86115a36128ac565b6122a8565b6115fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806149706030913960400191505060405180910390fd5b6116078383612d6c565b6001905092915050565b61162261161c6128ac565b82612f29565b50565b61162d611efa565b61169f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601054146116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806149246024913960400191505060405180910390fd5b6000601081905550565b600061171a82600e6130e390919063ffffffff16565b9050919050565b611729611efa565b61179b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117a7848484846131c1565b6117b18484612211565b507f2427c6e03750f8a45d998cd48154bf795ddc488d9b944147b236242c7cef88888484848442604051808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018060200180602001848152602001838103835286818151815260200191508051906020019060200280838360005b8381101561185d578082015181840152602081019050611842565b50505050905001838103825285818151815260200191508051906020019060200280838360005b8381101561189f578082015181840152602081019050611884565b5050505090500197505050505050505060405180910390a150505050565b6000600f60009054906101000a900460ff16905090565b6118dc614712565b600360138060200260405190810160405280929190826013801561193d576020028201916000905b82829054906101000a900461ffff1661ffff16815260200190600201906020826001010492830192600103820291508084116119045790505b5050505050905090565b6119576119526128ac565b6133e0565b565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119aa611efa565b611a1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611ae5828261343a565b5050565b6000611af36128ac565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b76576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806149486028913960400191505060405180910390fd5b611b7f83610fff565b6001830360168110611b8d57fe5b6020020151905092915050565b611baa611ba56128ac565b611704565b611bff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806148636030913960400191505060405180910390fd5b611c0881613509565b50565b611c1b611c166128ac565b611704565b611c70576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806148636030913960400191505060405180910390fd5b600f60009054906101000a900460ff1615611cf3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600f60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d376128ac565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b611d82611efa565b611df4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638c8d98a08484846040518463ffffffff1660e01b8152600401808461ffff1661ffff1681526020018360ff1660ff1681526020018260ff1660ff168152602001935050505060206040518083038186803b158015611e8b57600080fd5b505afa158015611e9f573d6000803e3d6000fd5b505050506040513d6020811015611eb557600080fd5b8101908080519060200190929190505050600981905550505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611f3c6128ac565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600c8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ff05780601f10611fc557610100808354040283529160200191611ff0565b820191906000526020600020905b815481529060010190602001808311611fd357829003601f168201915b5050505050905090565b61200a6120056128ac565b6122a8565b61205f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806149706030913960400191505060405180910390fd5b61206881613563565b50565b61207b6120766128ac565b6135bd565b565b6000600f60009054906101000a900460ff1615612102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61210c8383613617565b905092915050565b61211c611efa565b61218e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60016010541415612207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507269766174652073616c652069732063757272656e746c79206f70656e656481525060200191505060405180910390fd5b6001601081905550565b6000600f60009054906101000a900460ff1615612296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6122a083836136e4565b905092915050565b60006122be82600a6130e390919063ffffffff16565b9050919050565b600080600090506122d46146ef565b6122dd84610fff565b90506000600190505b600160160181101561231e576122fb81612a36565b4210156123115761230c8582611ae9565b830192505b80806001019150506122e6565b508192505050919050565b612331611efa565b6123a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60016010541461241b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f507269766174652073616c6520697320636c6f7365640000000000000000000081525060200191505060405180910390fd5b6124236128ac565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f507269766174652073616c6520726563697069656e74206973206f776e65720081525060200191505060405180910390fd5b6124cf83838361376e565b6124d98383612211565b507faa0127bc350f36632b46230985b87891dcdbf6e507794035414c161a1efdac5883838342604051808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a1505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6125e9611efa565b61265b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6126648161385e565b50565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d663136009546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156126e157600080fd5b505afa1580156126f5573d6000803e3d6000fd5b505050506040513d602081101561270b57600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad246009546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561279157600080fd5b505afa1580156127a5573d6000803e3d6000fd5b505050506040513d60208110156127bb57600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c728406009546040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561284157600080fd5b505afa158015612855573d6000803e3d6000fd5b505050506040513d602081101561286b57600080fd5b81019080805190602001909291905050508261ffff169250925092509250909192565b60006128a261289b6128ac565b84846139a2565b6001905092915050565b600033905090565b6128bc6146ef565b6128c46146ef565b6128ce8484613b99565b15612953578360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060168060200260405190810160405280929190826016801561294b576020028201915b815481526020019060010190808311612937575b505050505090505b8091505092915050565b600061296a848484613c76565b612a2b846129766128ac565b612a2685604051806060016040528060288152602001614a3360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006129dc6128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b6139a2565b600190509392505050565b600060038211612a5457612a4982614049565b600954019050612a91565b612a8a60036004840360138110612a6757fe5b601091828204019190066002029054906101000a900461ffff1661ffff16614049565b6009540190505b919050565b6000806000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392d66313856040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612b0e57600080fd5b505afa158015612b22573d6000803e3d6000fd5b505050506040513d6020811015612b3857600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a324ad24866040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612bbc57600080fd5b505afa158015612bd0573d6000803e3d6000fd5b505050506040513d6020811015612be657600080fd5b8101908080519060200190929190505050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365c72840876040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612c6a57600080fd5b505afa158015612c7e573d6000803e3d6000fd5b505050506040513d6020811015612c9457600080fd5b81019080805190602001909291905050508261ffff1692509250925092509193909250565b6000612d62612cc66128ac565b84612d5d8560026000612cd76128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461409690919063ffffffff16565b6139a2565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612e248160055461409690919063ffffffff16565b600581905550612e7c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461409690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614b1d6021913960400191505060405180910390fd5b61301b8160405180606001604052806022815260200161480c60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506130738160055461411e90919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561316a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614a5b6022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b805160018351011461321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252607c815260200180614a7d607c913960800191505060405180910390fd5b606461322982614168565b1461327f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061482e6035913960400191505060405180910390fd5b60008090505b825181101561330c576132aa83828151811061329d57fe5b60200260200101516141a7565b6132ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604d815260200180614b87604d913960600191505060405180910390fd5b8080600101915050613285565b506000809050600061334e60646133408560008151811061332957fe5b60200260200101518861423490919063ffffffff16565b6142ba90919063ffffffff16565b905061335b86828461376e565b6000600190505b83518110156133d75784600182038151811061337a57fe5b602002602001015192506133bd60646133af86848151811061339857fe5b60200260200101518961423490919063ffffffff16565b6142ba90919063ffffffff16565b91506133ca87838561376e565b8080600101915050613362565b50505050505050565b6133f481600e61430490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6134448282612f29565b613505826134506128ac565b61350084604051806060016040528060248152602001614af960249139600260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006134b66128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b6139a2565b5050565b61351d81600e6143c190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b61357781600a6143c190919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6135d181600a61430490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006136da6136246128ac565b846136d585604051806060016040528060258152602001614c15602591396002600061364e6128ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b6139a2565b6001905092915050565b6000816136f76136f26128ac565b6111e5565b106137175761370e6137076128ac565b8484613c76565b60019050613768565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526041815260200180614bd46041913960600191505060405180910390fd5b92915050565b613777816141a7565b6137cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260518152602001806149c16051913960600191505060405180910390fd5b600081905060008214806137e05750600382115b1561383c5760008090505b601381101561383a576003816013811061380157fe5b601091828204019190066002029054906101000a900461ffff1661ffff1683141561382d576004810191505b80806001019150506137eb565b505b613857848460018403600761449c909392919063ffffffff16565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156138e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806148936026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614b636024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613aae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806148b96022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613ba36146ef565b8360000160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020601680602002604051908101604052809291908260168015613c1b576020028201915b815481526020019060010190808311613c07575b505050505090506000600190505b6001601601811015613c69576000826001830360168110613c4657fe5b60200201511115613c5c57600192505050613c70565b8080600101915050613c29565b5060009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614b3e6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d82576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806147c06023913960400191505060405180910390fd5b60008111613ddb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806148db6023913960400191505060405180910390fd5b613e47816040518060600160405280602681526020016148fe60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613f899092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613edc81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461409690919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290614036576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ffb578082015181840152602081019050613fe0565b50505050905090810190601f1680156140285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600060018214156140605763013c68009050614091565b60028214156140745762ed4e009050614091565b60038214156140885762ed4e009050614091565b62015180820290505b919050565b600080828401905083811015614114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061416083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613f89565b905092915050565b600080905060008090505b82518110156141a15782818151811061418857fe5b6020026020010151820191508080600101915050614173565b50919050565b600060018214806141b85750600282145b806141c35750600382145b156141d1576001905061422f565b60008090505b60138110156142295782600382601381106141ee57fe5b601091828204019190066002029054906101000a900461ffff1661ffff16141561421c57600191505061422f565b80806001019150506141d7565b50600090505b919050565b60008083141561424757600090506142b4565b600082840290508284828161425857fe5b04146142af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614a126021913960400191505060405180910390fd5b809150505b92915050565b60006142fc83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614629565b905092915050565b61430e82826130e3565b614363576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806149a06021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6143cb82826130e3565b1561443e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008083116144f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061479b6025913960400191505060405180910390fd5b6144fe6146ef565b6000151561450c8787613b99565b1515141561452f578381846016811061452157fe5b6020020181815250506145cb565b8560000160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206016806020026040519081016040528092919082601680156145a7576020028201915b815481526020019060010190808311614593575b50505050509050838184601681106145bb57fe5b6020020181815101915081815250505b808660000160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090601661461b929190614735565b506001915050949350505050565b600080831182906146d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561469a57808201518184015260208101905061467f565b50505050905090810190601f1680156146c75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816146e157fe5b049050809150509392505050565b604051806102c00160405280601690602082028038833980820191505090505090565b604051806102600160405280601390602082028038833980820191505090505090565b8260168101928215614764579160200282015b82811115614763578251825591602001919060010190614748565b5b5090506147719190614775565b5090565b61479791905b8082111561479357600081600090555060010161477b565b5090565b9056fe5072697661746553616c654b65657065723a20416d6f756e7420657175616c7320746f203045524332303a207472616e7366657220746f20746865207a65726f2061646472657373596f7520646f6e2774206861766520726967687420746f2075736520746869732066756e6374696f6e45524332303a206275726e20616d6f756e7420657863656564732062616c616e63655468652073756d206f662076657374696e672070657263656e746167657320646f6573206e6f742061646420757020746f20313030506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a20416d6f756e74206e6f742067726561746572207468616e207a65726f45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365507269766174652073616c652069732063757272656e746c79206e6f74206f70656e6564596f7520646f6e74206861766520726967687420746f2075736520746869732066756e6374696f6e4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65496e76616c6964207068617365206e756d626572202831202d2033206f722073656520676574414c6f636b7570506572696f647320666f722074686520616c6c6f776564206c6f636b7570206461797329536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373496e76616c6964206e756d626572206f6620706172616d657465727320286e756d626572206f6620706172616d6574657273206f662070657263656e7473206d757374206265206f6e65206d6f7265207468616e20746865206e756d626572206f6620706172616d6574657273206f66206c6f636b7570446179732945524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373496e76616c6964206c6f636b757020646179206e756d626572202873656520676574414c6f636b7570506572696f647320666f722074686520616c6c6f776564206c6f636b7570206461797329417474656d707420746f207472616e73666572206d6f726520746f6b656e73207468616e207768617420697320616c6c6f77656420617420746869732074696d6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820fab6b02b7ca648f848ec1e12048cd2e18972fa332c97f3b5dd9be24fea165db764736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000017d784000000000000000000000000000000000000000000000000000000000000000013506172616c6c656c436861696e20546f6b656e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000458504c4c00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): ParallelChain Token
Arg [1] : tokenSymbol (string): XPLL
Arg [2] : decimal (uint8): 18
Arg [3] : initialSupply (uint256): 400000000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000000000000000000017d78400
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 506172616c6c656c436861696e20546f6b656e00000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 58504c4c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45084:1977:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45084:1977: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43763:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43763:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25311:228;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25311:228: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;25311:228:0;;;;;;;;;;;;;;;;46661: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;46661:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30121:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43595:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43595:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28591:393;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28591:393:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13598:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28221:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28221:207:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43911:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43911:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42934:120;;;:::i;:::-;;39764:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39764:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44730:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44730:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;46484:169;;;:::i;:::-;;40426:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40426:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45980:324;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;45980:324:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45980:324:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45980:324:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45980:324:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45980:324:0;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45980:324:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45980:324:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45980:324:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;45980:324:0;;;;;;;;;;;;;;;:::i;:::-;;42141:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25186:113;;;:::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;25186:113:0;;;;;;;;;;;;;;;;40643:79;;;:::i;:::-;;30275:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30275:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11301:140;;;:::i;:::-;;44875:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44875:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25547:230;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25547:230:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40543:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40543:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;42721:118;;;:::i;:::-;;27659:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27659:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38802:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38802:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;38902:79;;;:::i;:::-;;44089:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44089:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46312:164;;;:::i;:::-;;43455:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43455:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38685:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38685:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28992:473;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28992:473:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45555:417;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45555:417:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31010:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31010: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;:::-;;27494:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12746:83;12783:13;12816:5;12809:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12746:83;:::o;43763:140::-;43842:4;42378:7;;;;;;;;;;;42377:8;42369:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43866:29;43880:7;43889:5;43866:13;:29::i;:::-;43859:36;;43763:140;;;;:::o;25311:228::-;25369:18;;:::i;:::-;25419:12;:10;:12::i;:::-;25408:23;;:7;:23;;;:36;;;;25435:9;:7;:9::i;:::-;25408:36;25400:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25507:24;25523:7;25507:11;:15;;:24;;;;:::i;:::-;25500:31;;25311:228;;;:::o;46661:197::-;46707:13;46758:1;46736:18;;:23;46733:118;;;46776:15;;;;;;;;;;;;;;;;;;;;;46733:118;46824:15;;;;;;;;;;;;;;;;;;;46661:197;;:::o;30121:91::-;30165:7;30192:12;;30185:19;;30121:91;:::o;43595:160::-;43688:4;42378:7;;;;;;;;;;;42377:8;42369:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43712:35;43731:4;43737:2;43741:5;43712:18;:35::i;:::-;43705:42;;43595:160;;;;;:::o;28591:393::-;28659:7;28698:12;:10;:12::i;:::-;28687:23;;:7;:23;;;:56;;;;28738:4;28714:29;;:12;:10;:12::i;:::-;:29;;;28687:56;28679:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28802:33;28838:20;28850:7;28838:11;:20::i;:::-;28802:56;;28871:22;28917:25;28896:18;28906:7;28896:9;:18::i;:::-;:46;28871:71;;28962:14;28955:21;;;;28591:393;;;:::o;13598:83::-;13639:5;13664:9;;;;;;;;;;;13657:16;;13598:83;:::o;28221:207::-;28277:7;28286:5;28293;28327:1;28319:5;:9;:23;;;;;28341:1;28332:5;:10;;28319:23;28311:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28385:35;28393:26;28413:5;28393:19;:26::i;:::-;28385:7;:35::i;:::-;28378:42;;;;;;28221:207;;;;;:::o;43911:170::-;44005:4;42378:7;;;;;;;;;;;42377:8;42369:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44029:44;44053:7;44062:10;44029:23;:44::i;:::-;44022:51;;43911:170;;;;:::o;42934:120::-;40323:22;40332:12;:10;:12::i;:::-;40323:8;:22::i;:::-;40315:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42577:7;;;;;;;;;;;42569:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43003:5;42993:7;;:15;;;;;;;;;;;;;;;;;;43024:22;43033:12;:10;:12::i;:::-;43024:22;;;;;;;;;;;;;;;;;;;;;;42934:120::o;39764:143::-;39838:4;38582:22;38591:12;:10;:12::i;:::-;38582:8;:22::i;:::-;38574:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39855:22;39861:7;39870:6;39855:5;:22::i;:::-;39895:4;39888:11;;39764:143;;;;:::o;44730:83::-;44778:27;44784:12;:10;:12::i;:::-;44798:6;44778:5;:27::i;:::-;44730:83;:::o;46484:169::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46570:1;46548:18;;:23;46540:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46644:1;46623:18;:22;;;;46484:169::o;40426:109::-;40482:4;40506:21;40519:7;40506:8;:12;;:21;;;;:::i;:::-;40499:28;;40426:109;;;:::o;45980:324::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46124:57;46141:9;46152:6;46160:10;46172:8;46124:16;:57::i;:::-;46192:27;46201:9;46212:6;46192:8;:27::i;:::-;;46235:61;46251:9;46262:6;46270:10;46282:8;46292:3;46235:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;46235:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;46235:61:0;;;;;;;;;;;;;;;;;;;;;;45980:324;;;;:::o;42141:78::-;42180:4;42204:7;;;;;;;;;;;42197:14;;42141:78;:::o;25186:113::-;25238:17;;:::i;:::-;25275:16;25268:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25186:113;:::o;40643:79::-;40687:27;40701:12;:10;:12::i;:::-;40687:13;:27::i;:::-;40643:79::o;30275:110::-;30332:7;30359:9;:18;30369:7;30359:18;;;;;;;;;;;;;;;;30352:25;;30275: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;44875:103::-;44944:26;44954:7;44963:6;44944:9;:26::i;:::-;44875:103;;:::o;25547:230::-;25627:7;25666:12;:10;:12::i;:::-;25655:23;;:7;:23;;;25647:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25741:19;25752:7;25741:10;:19::i;:::-;25767:1;25761:5;:7;25741:28;;;;;;;;;;;25734:35;;25547:230;;;;:::o;40543:92::-;40323:22;40332:12;:10;:12::i;:::-;40323:8;:22::i;:::-;40315:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40608:19;40619:7;40608:10;:19::i;:::-;40543:92;:::o;42721:118::-;40323:22;40332:12;:10;:12::i;:::-;40323:8;:22::i;:::-;40315:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42378:7;;;;;;;;;;;42377:8;42369:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42791:4;42781:7;;:14;;;;;;;;;;;;;;;;;;42811:20;42818:12;:10;:12::i;:::-;42811:20;;;;;;;;;;;;;;;;;;;;;;42721:118::o;27659:140::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27760:1;;;;;;;;;;;:13;;;27774:4;27780:5;27787:3;27760:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27760:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27760:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27760:31:0;;;;;;;;;;;;;;;;27749:8;:42;;;;27659:140;;;:::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;38802:92::-;38582:22;38591:12;:10;:12::i;:::-;38582:8;:22::i;:::-;38574:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38867:19;38878:7;38867:10;:19::i;:::-;38802:92;:::o;38902:79::-;38946:27;38960:12;:10;:12::i;:::-;38946:13;:27::i;:::-;38902:79::o;44089:180::-;44188:4;42378:7;;;;;;;;;;;42377:8;42369:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44212:49;44236:7;44245:15;44212:23;:49::i;:::-;44205:56;;44089:180;;;;:::o;46312:164::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46397:1;46375:18;;:23;;46367:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46467:1;46446:18;:22;;;;46312:164::o;43455:132::-;43530:4;42378:7;;;;;;;;;;;42377:8;42369:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43554:25;43569:2;43573:5;43554:14;:25::i;:::-;43547:32;;43455:132;;;;:::o;38685:109::-;38741:4;38765:21;38778:7;38765:8;:12;;:21;;;;:::i;:::-;38758:28;;38685:109;;;:::o;28992:473::-;29051:7;29071:33;29107:1;29071:37;;29119:26;;:::i;:::-;29148:19;29159:7;29148:10;:19::i;:::-;29119:48;;29185:6;29192:1;29185:8;;29180:233;29212:1;29197:14;:16;29195:1;:18;29180:233;;;29245:22;29265:1;29245:19;:22::i;:::-;29239:3;:28;29235:166;;;29353:32;29374:7;29383:1;29353:20;:32::i;:::-;29324:61;;;;29235:166;29215:3;;;;;;;29180:233;;;;29432:25;29425:32;;;;28992:473;;;:::o;45555:417::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45688:1;45666:18;;:23;45658:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45748:12;:10;:12::i;:::-;45735:25;;:9;:25;;;;45727:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45817:47;45839:9;45850:6;45858:5;45817:21;:47::i;:::-;45877:27;45886:9;45897:6;45877:8;:27::i;:::-;;45922:42;45934:9;45945:6;45953:5;45960:3;45922:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45555:417;;;:::o;31010:134::-;31082:7;31109:11;:18;31121:5;31109:18;;;;;;;;;;;;;;;:27;31128:7;31109:27;;;;;;;;;;;;;;;;31102:34;;31010:134;;;;:::o;11596:109::-;10702:9;:7;:9::i;:::-;10694:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11669:28;11688:8;11669:18;:28::i;:::-;11596:109;:::o;27494:155::-;27537:7;27546:5;27553;27579:1;;;;;;;;;;;:9;;;27589:8;;27579:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27579:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27579:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27579:19:0;;;;;;;;;;;;;;;;27600:1;;;;;;;;;;;:10;;;27611:8;;27600:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27600:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27600:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27600:20:0;;;;;;;;;;;;;;;;27622:1;;;;;;;;;;;:8;;;27631;;27622:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27622:18:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27622:18:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27622:18:0;;;;;;;;;;;;;;;;27571:70;;;;;;;;;;;27494:155;;;:::o;31291:152::-;31357:4;31374:39;31383:12;:10;:12::i;:::-;31397:7;31406:6;31374:8;:39::i;:::-;31431:4;31424:11;;31291:152;;;;:::o;9209:98::-;9254:15;9289:10;9282:17;;9209:98;:::o;14483:262::-;14558:18;;:::i;:::-;14589:25;;:::i;:::-;14628:19;14637:4;14643:3;14628:8;:19::i;:::-;14625:87;;;14674:4;:21;;:26;14696:3;14674:26;;;;;;;;;;;;;;;14664:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14625:87;14731:6;14724:13;;;14483:262;;;;:::o;31915:313::-;32004:4;32024:36;32034:6;32042:9;32053:6;32024:9;:36::i;:::-;32071:121;32080:6;32088:12;:10;:12::i;:::-;32102:89;32140:6;32102:89;;;;;;;;;;;;;;;;;:11;:19;32114:6;32102:19;;;;;;;;;;;;;;;:33;32122:12;:10;:12::i;:::-;32102:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;32071:8;:121::i;:::-;32216:4;32209:11;;31915:313;;;;;:::o;27809:262::-;27872:4;27901:1;27892:5;:10;27889:175;;27937:22;27953:5;27937:15;:22::i;:::-;27926:8;;:33;27919:40;;;;27889:175;28010:42;28026:16;28049:1;28043:5;:7;28026:25;;;;;;;;;;;;;;;;;;;;;;;;;;;28010:42;;:15;:42::i;:::-;27999:8;;:53;27992:60;;27809:262;;;;:::o;28436:147::-;28486:7;28495:5;28502;28528:1;;;;;;;;;;;:9;;;28538:3;28528:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28528:14:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28528:14:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28528:14:0;;;;;;;;;;;;;;;;28544:1;;;;;;;;;;;:10;;;28555:3;28544:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28544:15:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28544:15:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28544:15:0;;;;;;;;;;;;;;;;28561:1;;;;;;;;;;;:8;;;28570:3;28561:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28561:13:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;28561:13:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28561:13:0;;;;;;;;;;;;;;;;28520:55;;;;;;;;;;;28436:147;;;;;:::o;32637:210::-;32717:4;32734:83;32743:12;:10;:12::i;:::-;32757:7;32766:50;32805:10;32766:11;:25;32778:12;:10;:12::i;:::-;32766:25;;;;;;;;;;;;;;;:34;32792:7;32766:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;32734:8;:83::i;:::-;32835:4;32828:11;;32637:210;;;;:::o;34922:308::-;35017:1;34998:21;;:7;:21;;;;34990:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35083:24;35100:6;35083:12;;:16;;:24;;;;:::i;:::-;35068:12;:39;;;;35139:30;35162:6;35139:9;:18;35149:7;35139:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;35118:9;:18;35128:7;35118:18;;;;;;;;;;;;;;;:51;;;;35206:7;35185:37;;35202:1;35185:37;;;35215:6;35185:37;;;;;;;;;;;;;;;;;;34922:308;;:::o;35562:348::-;35657:1;35638:21;;:7;:21;;;;35630:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35731:68;35754:6;35731:68;;;;;;;;;;;;;;;;;:9;:18;35741:7;35731:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;35710:9;:18;35720:7;35710:18;;;;;;;;;;;;;;;:89;;;;35825:24;35842:6;35825:12;;:16;;:24;;;;:::i;:::-;35810:12;:39;;;;35891:1;35865:37;;35874:7;35865:37;;;35895:6;35865:37;;;;;;;;;;;;;;;;;;35562:348;;:::o;37963:203::-;38035:4;38079:1;38060:21;;:7;:21;;;;38052:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38138:4;:11;;:20;38150:7;38138:20;;;;;;;;;;;;;;;;;;;;;;;;;38131:27;;37963:203;;;;:::o;26345:1141::-;26515:8;:15;26510:1;26490:10;:17;:21;:40;26482:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26700:3;26678:18;26687:8;26678;:18::i;:::-;:25;26670:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26777:6;26784:1;26777:8;;26772:233;26789:10;:17;26787:1;:19;26772:233;;;26832:23;26841:10;26852:1;26841:13;;;;;;;;;;;;;;26832:8;:23::i;:::-;26828:166;;26891:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26828:166;26808:3;;;;;;;26772:233;;;;27067:14;27084:1;27067:18;;27096:21;27120:32;27148:3;27120:23;27131:8;27140:1;27131:11;;;;;;;;;;;;;;27120:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;27096:56;;27163:55;27185:9;27196:13;27211:6;27163:21;:55::i;:::-;27259:6;27266:1;27259:8;;27254:223;27271:8;:15;27269:1;:17;27254:223;;;27317:10;27330:1;27328;:3;27317:15;;;;;;;;;;;;;;27308:24;;27363:32;27391:3;27363:23;27374:8;27383:1;27374:11;;;;;;;;;;;;;;27363:6;:10;;:23;;;;:::i;:::-;:27;;:32;;;;:::i;:::-;27347:48;;27410:55;27432:9;27443:13;27458:6;27410:21;:55::i;:::-;27288:3;;;;;;;27254:223;;;;26345:1141;;;;;;:::o;40860:130::-;40920:24;40936:7;40920:8;:15;;:24;;;;:::i;:::-;40974:7;40960:22;;;;;;;;;;;;40860:130;:::o;36874:232::-;36946:22;36952:7;36961:6;36946:5;:22::i;:::-;36979:119;36988:7;36997:12;:10;:12::i;:::-;37011:86;37050:6;37011:86;;;;;;;;;;;;;;;;;:11;:20;37023:7;37011:20;;;;;;;;;;;;;;;:34;37032:12;:10;:12::i;:::-;37011:34;;;;;;;;;;;;;;;;:38;;:86;;;;;:::i;:::-;36979:8;:119::i;:::-;36874:232;;:::o;40730:122::-;40787:21;40800:7;40787:8;:12;;:21;;;;:::i;:::-;40836:7;40824:20;;;;;;;;;;;;40730:122;:::o;38989:::-;39046:21;39059:7;39046:8;:12;;:21;;;;:::i;:::-;39095:7;39083:20;;;;;;;;;;;;38989:122;:::o;39119:130::-;39179:24;39195:7;39179:8;:15;;:24;;;;:::i;:::-;39233:7;39219:22;;;;;;;;;;;;39119:130;:::o;33350:261::-;33435:4;33452:129;33461:12;:10;:12::i;:::-;33475:7;33484:96;33523:15;33484:96;;;;;;;;;;;;;;;;;:11;:25;33496:12;:10;:12::i;:::-;33484:25;;;;;;;;;;;;;;;:34;33510:7;33484:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;33452:8;:129::i;:::-;33599:4;33592:11;;33350:261;;;;:::o;30600:347::-;30669:4;30729:6;30691:34;30712:12;:10;:12::i;:::-;30691:20;:34::i;:::-;:44;30688:252;;30752:42;30762:12;:10;:12::i;:::-;30776:9;30787:6;30752:9;:42::i;:::-;30816:4;30809:11;;;;30688:252;30853:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30600:347;;;;;:::o;25785:552::-;25892:16;25901:6;25892:8;:16::i;:::-;25884:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26007:15;26025:6;26007:24;;26055:1;26045:6;:11;:25;;;;26069:1;26060:6;:10;26045:25;26042:232;;;26092:6;26101:1;26092:10;;26087:176;26108:23;26104:1;:27;26087:176;;;26170:16;26187:1;26170:19;;;;;;;;;;;;;;;;;;;;;;;;;;;26160:29;;:6;:29;26157:91;;;26227:1;26223;:5;26213:15;;26157:91;26133:3;;;;;;;26087:176;;;;26042:232;26286:43;26305:3;26310:7;26327:1;26319:7;:9;26286:11;:18;;:43;;;;;;:::i;:::-;;25785:552;;;;:::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;36350:338::-;36461:1;36444:19;;:5;:19;;;;36436:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36542:1;36523:21;;:7;:21;;;;36515:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36626:6;36596:11;:18;36608:5;36596:18;;;;;;;;;;;;;;;:27;36615:7;36596:27;;;;;;;;;;;;;;;:36;;;;36664:7;36648:32;;36657:5;36648:32;;;36673:6;36648:32;;;;;;;;;;;;;;;;;;36350:338;;;:::o;14753:343::-;14833:4;14851:25;;:::i;:::-;14879:4;:21;;:26;14901:3;14879:26;;;;;;;;;;;;;;;14851:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14923:6;14930:1;14923:8;;14918:146;14949:1;14935:13;:15;14933:1;:17;14918:146;;;14989:1;14975:6;14984:1;14982;:3;14975:11;;;;;;;;;;;:15;14972:81;;;15033:4;15026:11;;;;;;14972:81;14952:3;;;;;;;14918:146;;;;15083:5;15076:12;;;14753:343;;;;;:::o;34101:540::-;34217:1;34199:20;;:6;:20;;;;34191:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34301:1;34280:23;;:9;:23;;;;34272:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34371:1;34362:6;:10;34354:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34445:71;34467:6;34445:71;;;;;;;;;;;;;;;;;:9;:17;34455:6;34445:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;34425:9;:17;34435:6;34425:17;;;;;;;;;;;;;;;:91;;;;34550:32;34575:6;34550:9;:20;34560:9;34550:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;34527:9;:20;34537:9;34527:20;;;;;;;;;;;;;;;:55;;;;34615:9;34598:35;;34607:6;34598:35;;;34626:6;34598:35;;;;;;;;;;;;;;;;;;34101: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;24840:338::-;24900:4;24930:1;24920:6;:11;24917:249;;;24956:8;24949:15;;;;24917:249;24996:1;24986:6;:11;24982:184;;;25022:8;25015:15;;;;24982:184;25062:1;25052:6;:11;25048:118;;;25088:8;25081:15;;;;25048:118;25147:6;25138;:15;25130:24;;24840:338;;;;:::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;4223:136::-;4281:7;4308:43;4312:1;4315;4308:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4301:50;;4223:136;;;;:::o;29849:207::-;29914:12;29952:1;29945:8;;29969:6;29978:1;29969:10;;29964:85;29985:6;:13;29981:1;:17;29964:85;;;30028:6;30035:1;30028:9;;;;;;;;;;;;;;30020:17;;;;30000:3;;;;;;;29964:85;;;;29849:207;;;:::o;29473:368::-;29527:4;29558:1;29548:6;:11;:26;;;;29573:1;29563:6;:11;29548:26;:41;;;;29588:1;29578:6;:11;29548:41;29545:84;;;29613:4;29606:11;;;;29545:84;29646:6;29653:1;29646:8;;29641:168;29658:23;29656:1;:25;29641:168;;;29729:6;29706:16;29723:1;29706:19;;;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;29703:95;;;29778:4;29771:11;;;;;29703:95;29683:3;;;;;;;29641:168;;;;29828:5;29821:12;;29473:368;;;;:::o;5139:471::-;5197:7;5447:1;5442;:6;5438:47;;;5472:1;5465:8;;;;5438:47;5497:9;5513:1;5509;:5;5497:17;;5542:1;5537;5533;:5;;;;;;:10;5525:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5601:1;5594:8;;;5139:471;;;;;:::o;6078:132::-;6136:7;6163:39;6167:1;6170;6163:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6156:46;;6078:132;;;;:::o;37685:183::-;37765:18;37769:4;37775:7;37765:3;:18::i;:::-;37757:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37855:5;37832:4;:11;;:20;37844:7;37832:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;37685:183;;:::o;37427:178::-;37505:18;37509:4;37515:7;37505:3;:18::i;:::-;37504:19;37496:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37593:4;37570;:11;;:20;37582:7;37570:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;37427:178;;:::o;13954:521::-;14057:12;14100:1;14090:7;:11;14082:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14156:25;;:::i;:::-;14218:5;14195:28;;:19;14204:4;14210:3;14195:8;:19::i;:::-;:28;;;14192:195;;;14259:7;14242:6;14249;14242:14;;;;;;;;;;:24;;;;;14192:195;;;14309:4;:21;;:26;14331:3;14309:26;;;;;;;;;;;;;;;14300:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14368:7;14350:6;14357;14350:14;;;;;;;;;;:25;;;;;;;;;;;14192:195;14436:6;14407:4;:21;;:26;14429:3;14407:26;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;14463:4;14453:14;;13954:521;;;;;;;:::o;6740:345::-;6826:7;6925:1;6921;:5;6928:12;6913:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;6913:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6952:9;6968:1;6964;:5;;;;;;6952:17;;7076:1;7069:8;;;6740:345;;;;;:::o;45084:1977::-;;;;;;;;;;;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;45084:1977:0;;;;:::o;:::-;;;;;;;;;;;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;45084:1977: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.