ERC-20
Overview
Max Total Supply
10,000,000,000 MAXI
Holders
375
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 4 Decimals)
Balance
26,297,206.8408 MAXIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
StakingToken
Compiler Version
v0.6.2+commit.bacdbe57
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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. */ 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. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { 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. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override 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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override 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 virtual override 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 virtual 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 virtual 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _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 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 virtual { 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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(_owner == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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 { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ 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. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } } /** * @title Blacklist * @dev The Blacklist contract has a blacklist of addresses, and provides basic authorization control functions. * @dev This simplifies the implementation of "user permissions". */ contract Blacklist is Ownable { mapping(address => bool) blacklist; address[] public blacklistAddresses; event BlacklistedAddressAdded(address addr); event BlacklistedAddressRemoved(address addr); /** * @dev Throws if called by any account that's whitelist (a.k.a not blacklist) */ modifier isBlacklisted() { require(blacklist[msg.sender]); _; } /** * @dev Throws if called by any account that's blacklist. */ modifier isNotBlacklisted() { require(!blacklist[msg.sender]); _; } /** * @dev Add an address to the blacklist * @param addr address * @return success true if the address was added to the blacklist, false if the address was already in the blacklist */ function addAddressToBlacklist(address addr) onlyOwner public returns(bool success) { if (!blacklist[addr]) { blacklistAddresses.push(addr); blacklist[addr] = true; emit BlacklistedAddressAdded(addr); success = true; } } /** * @dev Add addresses to the blacklist * @param addrs addresses * @return success true if at least one address was added to the blacklist, * false if all addresses were already in the blacklist */ function addAddressesToBlacklist( address[] memory addrs) onlyOwner public returns(bool success) { for (uint256 i = 0; i < addrs.length; i++) { if (addAddressToBlacklist(addrs[i])) { success = true; } } } /** * @dev Remove an address from the blacklist * @param addr address * @return success true if the address was removed from the blacklist, * false if the address wasn't in the blacklist in the first place */ function removeAddressFromBlacklist(address addr) onlyOwner public returns(bool success) { if (blacklist[addr]) { blacklist[addr] = false; for (uint i = 0; i < blacklistAddresses.length; i++) { if (addr == blacklistAddresses[i]) { delete blacklistAddresses[i]; } } emit BlacklistedAddressRemoved(addr); success = true; } } /** * @dev Remove addresses from the blacklist * @param addrs addresses * @return success true if at least one address was removed from the blacklist, * false if all addresses weren't in the blacklist in the first place */ function removeAddressesFromBlacklist(address[] memory addrs) onlyOwner public returns(bool success) { for (uint256 i = 0; i < addrs.length; i++) { if (removeAddressFromBlacklist(addrs[i])) { success = true; } } } /** * @dev Get all blacklist wallet addresses */ function getBlacklist() public view returns (address[] memory) { return blacklistAddresses; } } contract StakingToken is Ownable, ERC20Pausable, Blacklist { using SafeMath for uint256; uint256 constant totalFreeSupply = 100000000000000; uint8 constant numDecimals = 4; uint256 constant stakingAmount = 100000000; uint256 constant numPhases = 10; uint256 [numPhases] phases = [1595203200, 1603152000, 1605830400, 1608422400, 1611100800, 1613779200, 1616198400, 1618876800, 1621468800, 1624147200]; uint256 lastRewardStamp; /* phase0 : 1595203200 20.07.2020 00:00 UTC 30% phase1 : 1603152000 20.10.2020 00:00 UTC 27% phase2 : 1605830400 20.11.2020 00:00 UTC 24% phase3 : 1608422400 20.12.2020 00:00 UTC 21% phase4 : 1611100800 20.01.2021 00:00 UTC 18% phase5 : 1613779200 20.02.2021 00:00 UTC 15% phase6 : 1616198400 20.03.2021 00:00 UTC 12% phase7 : 1618876800 20.04.2021 00:00 UTC 9% phase8 : 1621468800 20.05.2021 00:00 UTC 6% phase9 : 1624147200 20.06.2021 00:00 UTC 3% */ address[] internal stakeholders; mapping(address => uint256) internal rewards; mapping(address => uint256) internal stakes; constructor() Ownable() ERC20('MaxidaxV1.3.1','MAXI') public { _setupDecimals(numDecimals); _mint(owner(), totalFreeSupply); lastRewardStamp = block.timestamp; } function addStakeholder(address _stakeholder) private { (bool _isStakeholder, ) = isStakeholder(_stakeholder); if(!_isStakeholder) stakeholders.push(_stakeholder); } function isStakeholder(address _address) public view returns(bool, uint256) { for (uint256 s = 0; s < stakeholders.length; s++){ if (_address == stakeholders[s]) return (true, s); } return (false, 0); } function removeStakeholder(address _stakeholder) private { (bool _isStakeholder, uint256 s) = isStakeholder(_stakeholder); if(_isStakeholder){ stakeholders[s] = stakeholders[stakeholders.length - 1]; stakeholders.pop(); } } function stakeOf(address _stakeholder) public view returns(uint256) { return stakes[_stakeholder]; } function getLastRewardPeriod() public view returns(uint256) { return lastRewardStamp; } function getNumberOfStakeholders() public view returns(uint256) { return stakeholders.length; } function totalStakes() public view returns(uint256) { uint256 _totalStakes = 0; for (uint256 s = 0; s < stakeholders.length; s++){ _totalStakes = _totalStakes.add(stakes[stakeholders[s]]); } return _totalStakes; } function createSingleStake(uint256 _stake) public { if (_stake == stakingAmount) { _burn(msg.sender, _stake); if(stakes[msg.sender] == 0) addStakeholder(msg.sender); stakes[msg.sender] = stakes[msg.sender].add(_stake); } } function removeStake(address _stakeholder) public onlyOwner { _mint(_stakeholder, stakes[_stakeholder]); stakes[_stakeholder] = 0; removeStakeholder(_stakeholder); } function rewardOf(address _stakeholder) public view returns(uint256) { return rewards[_stakeholder]; } function totalRewards() public view returns(uint256) { uint256 _totalRewards = 0; for (uint256 s = 0; s < stakeholders.length; s++){ _totalRewards = _totalRewards.add(rewards[stakeholders[s]]); } return _totalRewards; } function getCurrentRate() public view returns(uint256) { assert(block.timestamp > phases[0]); uint256 phase = 1; while ((phases[phase] < block.timestamp) && (phase < numPhases)) phase.add(1); return numPhases.sub(phase.sub(1)); } function distributeDailyRewards() public { require(block.timestamp > (lastRewardStamp + 3600*24), "Can be called only once per day"); uint256 currentRate = getCurrentRate(); for (uint256 s = 0; s < stakeholders.length; s++) rewards[stakeholders[s]] = rewards[stakeholders[s]].add(SafeMath.mul(SafeMath.div(stakes[stakeholders[s]],1000),currentRate)); lastRewardStamp = block.timestamp; } function withdrawReward() public { uint256 reward = rewards[msg.sender]; rewards[msg.sender] = 0; _mint(msg.sender, reward); } function pauseContract() onlyOwner public { _pause(); } function unpauseContract() onlyOwner public { _unpause(); } function transfer(address _to, uint256 _value) public isNotBlacklisted override returns (bool) { return super.transfer(_to, _value); } function approve(address _spender, uint256 _value) public isNotBlacklisted override returns (bool) { return super.approve(_spender, _value); } function transferFrom(address _from, address _to, uint256 _value) public isNotBlacklisted override returns (bool) { return super.transferFrom(_from, _to, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistedAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistedAddressRemoved","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":"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"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blacklistAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stake","type":"uint256"}],"name":"createSingleStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributeDailyRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlacklist","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastRewardPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfStakeholders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isStakeholder","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"removeStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"rewardOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_stakeholder","type":"address"}],"name":"stakeOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101c0604052635f14de806080908152635f8e288060a052635fb7070060c052635fde940060e0526360077280610100526360305100610120526360553b006101405263607e1980610160526360a5a680610180526360ce85006101a0526200006d90600890600a620003d9565b503480156200007b57600080fd5b50604080518082018252600d81526c4d61786964617856312e332e3160981b6020808301918252835180850190945260048452634d41584960e01b908401528151919291620000cd9160039162000424565b508051620000e390600490602084019062000424565b50506005805461ff001960ff199091166012171690555060006200010f6001600160e01b03620001b316565b6005805462010000600160b01b031916620100006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200017c60046001600160e01b03620001b816565b620001a9620001936001600160e01b03620001ce16565b655af3107a40006001600160e01b03620001e316565b42601255620004b4565b335b90565b6005805460ff191660ff92909216919091179055565b6005546201000090046001600160a01b031690565b6001600160a01b0382166200023f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000256600083836001600160e01b03620002fb16565b62000272816002546200036960201b6200154b1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002a59183906200154b62000369821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620003138383836200036460201b62001ce21760201c565b620003266001600160e01b03620003cb16565b15620003645760405162461bcd60e51b815260040180806020018281038252602a815260200180620025d1602a913960400191505060405180910390fd5b505050565b600082820183811015620003c4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600554610100900460ff1690565b82600a810192821562000412579160200282015b8281111562000412578251829063ffffffff16905591602001919060010190620003ed565b506200042092915062000497565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200046757805160ff191683800117855562000412565b8280016001018555821562000412579182015b82811115620004125782518255916020019190600101906200047a565b620001b591905b808211156200042057600081556001016200049e565b61210d80620004c46000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063c885bc58116100ad578063ef037b901161007c578063ef037b90146106e1578063f2c816ae14610722578063f2fde38b14610748578063f7fb07b01461076e578063fe2ba8481461077657610211565b8063c885bc58146105eb578063ca73419e146105f3578063dd62ed3e14610696578063ecf0f3a0146106c457610211565b8063a457c2d7116100f4578063a457c2d71461057b578063a9059cbb146105a7578063b33712c5146105d3578063b3d8f3b5146105db578063bf9befb1146105e357610211565b806370a082311461053d578063715018a6146105635780638da5cb5b1461056b57806395d89b411461057357610211565b8063313ce567116101a8578063395093511161017757806339509351146104d157806342623360146104fd578063439766ce14610523578063501788af1461052d5780635c975abb1461053557610211565b8063313ce5671461039257806332258794146103b0578063338d6c301461045357806335e82f3a146104ab57610211565b806318160ddd116101e457806318160ddd146102f55780631d62ebd9146102fd5780631e55a3761461032357806323b872dd1461035c57610211565b806306fdde0314610216578063079eb40d14610293578063095ea7b3146102ad5780630e15561a146102ed575b600080fd5b61021e61079c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610258578181015183820152602001610240565b50505050905090810190601f1680156102855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029b610832565b60408051918252519081900360200190f35b6102d9600480360360408110156102c357600080fd5b506001600160a01b038135169060200135610838565b604080519115158252519081900360200190f35b61029b610868565b61029b6108cd565b61029b6004803603602081101561031357600080fd5b50356001600160a01b03166108d3565b6103406004803603602081101561033957600080fd5b50356108f2565b604080516001600160a01b039092168252519081900360200190f35b6102d96004803603606081101561037257600080fd5b506001600160a01b03813581169160208101359091169060400135610919565b61039a610949565b6040805160ff9092168252519081900360200190f35b6102d9600480360360208110156103c657600080fd5b8101906020810181356401000000008111156103e157600080fd5b8201836020820111156103f357600080fd5b8035906020019184602083028401116401000000008311171561041557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610952945050505050565b61045b6109f2565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561049757818101518382015260200161047f565b505050509050019250505060405180910390f35b6102d9600480360360208110156104c157600080fd5b50356001600160a01b0316610a53565b6102d9600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610b9f565b61029b6004803603602081101561051357600080fd5b50356001600160a01b0316610c01565b61052b610c1c565b005b61052b610c84565b6102d9610dcd565b61029b6004803603602081101561055357600080fd5b50356001600160a01b0316610ddb565b61052b610df6565b610340610ea6565b61021e610ebb565b6102d96004803603604081101561059157600080fd5b506001600160a01b038135169060200135610f1c565b6102d9600480360360408110156105bd57600080fd5b506001600160a01b038135169060200135610f8a565b61052b610fb1565b61029b611017565b61029b61101d565b61052b61104a565b6102d96004803603602081101561060957600080fd5b81019060208101813564010000000081111561062457600080fd5b82018360208201111561063657600080fd5b8035906020019184602083028401116401000000008311171561065857600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061106c945050505050565b61029b600480360360408110156106ac57600080fd5b506001600160a01b0381358116916020013516611106565b61052b600480360360208110156106da57600080fd5b5035611131565b610707600480360360208110156106f757600080fd5b50356001600160a01b0316611197565b60408051921515835260208301919091528051918290030190f35b6102d96004803603602081101561073857600080fd5b50356001600160a01b03166111f3565b61052b6004803603602081101561075e57600080fd5b50356001600160a01b0316611314565b61029b611421565b61052b6004803603602081101561078c57600080fd5b50356001600160a01b0316611493565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b60125490565b3360009081526006602052604081205460ff161561085557600080fd5b61085f8383611537565b90505b92915050565b600080805b6013548110156108c7576108bd601460006013848154811061088b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61154b16565b915060010161086d565b50905090565b60025490565b6001600160a01b0381166000908152601460205260409020545b919050565b600781815481106108ff57fe5b6000918252602090912001546001600160a01b0316905081565b3360009081526006602052604081205460ff161561093657600080fd5b6109418484846115a5565b949350505050565b60055460ff1690565b600061095c61162d565b6005546201000090046001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b60005b82518110156109ec576109da8382815181106109cd57fe5b6020026020010151610a53565b156109e457600191505b6001016109b5565b50919050565b6060600780548060200260200160405190810160405280929190818152602001828054801561082857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a2c575050505050905090565b6000610a5d61162d565b6005546201000090046001600160a01b03908116911614610ab3576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff16156108ed576001600160a01b0382166000908152600660205260408120805460ff191690555b600754811015610b5a5760078181548110610b0c57fe5b6000918252602090912001546001600160a01b0384811691161415610b525760078181548110610b3857fe5b600091825260209091200180546001600160a01b03191690555b600101610af5565b50604080516001600160a01b038416815290517fb9b02d6ef3069c468ac99865bad0d84ec0cf34671cb26053e5e47d415ae175649181900360200190a1506001919050565b6000610bf8610bac61162d565b84610bf38560016000610bbd61162d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61154b16565b611631565b50600192915050565b6001600160a01b031660009081526015602052604090205490565b610c2461162d565b6005546201000090046001600160a01b03908116911614610c7a576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b610c8261171d565b565b60125462015180014211610cdf576040805162461bcd60e51b815260206004820152601f60248201527f43616e2062652063616c6c6564206f6e6c79206f6e6365207065722064617900604482015290519081900360640190fd5b6000610ce9611421565b905060005b601354811015610dc557610d87610d45610d3f6015600060138681548110610d1257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020546103e86117c2565b84611804565b6014600060138581548110610d5657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020549063ffffffff61154b16565b6014600060138481548110610d9857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902055600101610cee565b505042601255565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b610dfe61162d565b6005546201000090046001600160a01b03908116911614610e54576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6005546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805462010000600160b01b0319169055565b6005546201000090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108285780601f106107fd57610100808354040283529160200191610828565b6000610bf8610f2961162d565b84610bf3856040518060600160405280602581526020016120896025913960016000610f5361162d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61185d16565b3360009081526006602052604081205460ff1615610fa757600080fd5b61085f83836118f4565b610fb961162d565b6005546201000090046001600160a01b0390811691161461100f576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b610c82611908565b60135490565b600080805b6013548110156108c757611040601560006013848154811061088b57fe5b9150600101611022565b336000818152601460205260408120805491905590611069908261198f565b50565b600061107661162d565b6005546201000090046001600160a01b039081169116146110cc576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b60005b82518110156109ec576110f48382815181106110e757fe5b60200260200101516111f3565b156110fe57600191505b6001016110cf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6305f5e100811415611069576111473382611a8b565b336000908152601560205260409020546111645761116433611b93565b33600090815260156020526040902054611184908263ffffffff61154b16565b3360009081526015602052604090205550565b600080805b6013548110156111e557601381815481106111b357fe5b6000918252602090912001546001600160a01b03858116911614156111dd576001925090506111ee565b60010161119c565b50600091508190505b915091565b60006111fd61162d565b6005546201000090046001600160a01b03908116911614611253576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff166108ed576007805460018082019092557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b038516908117909155600081815260066020908152604091829020805460ff19169094179093558051918252517fee71faa2d1e96ac74ee4023d6ffa8abfa43b7648f51e3dbd8ec561823e9df132929181900390910190a1506001919050565b61131c61162d565b6005546201000090046001600160a01b03908116911614611372576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b0381166113b75760405162461bcd60e51b8152600401808060200182810382526026815260200180611f486026913960400191505060405180910390fd5b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600854600090421161142f57fe5b60015b42600882600a811061144057fe5b015410801561144f5750600a81105b1561146b5761146581600163ffffffff61154b16565b50611432565b61148d61147f82600163ffffffff611bf616565b600a9063ffffffff611bf616565b91505090565b61149b61162d565b6005546201000090046001600160a01b039081169116146114f1576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526015602052604090205461151590829061198f565b6001600160a01b03811660009081526015602052604081205561106981611c38565b6000610bf861154461162d565b8484611631565b60008282018381101561085f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006115b2848484611ce7565b611623846115be61162d565b610bf385604051806060016040528060288152602001611fd7602891396001600160a01b038a166000908152600160205260408120906115fc61162d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61185d16565b5060019392505050565b3390565b6001600160a01b0383166116765760405162461bcd60e51b81526004018080602001828103825260248152602001806120656024913960400191505060405180910390fd5b6001600160a01b0382166116bb5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f6e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600554610100900460ff161561176d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117a561162d565b604080516001600160a01b039092168252519081900360200190a1565b600061085f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e4e565b60008261181357506000610862565b8282028284828161182057fe5b041461085f5760405162461bcd60e51b8152600401808060200182810382526021815260200180611fb66021913960400191505060405180910390fd5b600081848411156118ec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118b1578181015183820152602001611899565b50505050905090810190601f1680156118de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610bf861190161162d565b8484611ce7565b600554610100900460ff1661195b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117a561162d565b6001600160a01b0382166119ea576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6119f660008383611eb3565b600254611a09908263ffffffff61154b16565b6002556001600160a01b038216600090815260208190526040902054611a35908263ffffffff61154b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611ad05760405162461bcd60e51b815260040180806020018281038252602181526020018061201f6021913960400191505060405180910390fd5b611adc82600083611eb3565b611b1f81604051806060016040528060228152602001611f26602291396001600160a01b038516600090815260208190526040902054919063ffffffff61185d16565b6001600160a01b038316600090815260208190526040902055600254611b4b908263ffffffff611bf616565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000611b9e82611197565b50905080611bf257601380546001810182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b0384161790555b5050565b600061085f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061185d565b600080611c4483611197565b915091508115611ce257601380546000198101908110611c6057fe5b600091825260209091200154601380546001600160a01b039092169183908110611c8657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506013805480611cbf57fe5b600082815260209020810160001990810180546001600160a01b03191690550190555b505050565b6001600160a01b038316611d2c5760405162461bcd60e51b81526004018080602001828103825260258152602001806120406025913960400191505060405180910390fd5b6001600160a01b038216611d715760405162461bcd60e51b8152600401808060200182810382526023815260200180611f036023913960400191505060405180910390fd5b611d7c838383611eb3565b611dbf81604051806060016040528060268152602001611f90602691396001600160a01b038616600090815260208190526040902054919063ffffffff61185d16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611df4908263ffffffff61154b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008183611e9d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156118b1578181015183820152602001611899565b506000838581611ea957fe5b0495945050505050565b611ebe838383611ce2565b611ec6610dcd565b15611ce25760405162461bcd60e51b815260040180806020018281038252602a8152602001806120ae602a913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212205a1855c41fdd66e9f48692a3bfab92d7478c84f1666644f013ed845d09e688d264736f6c6343000602003345524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063c885bc58116100ad578063ef037b901161007c578063ef037b90146106e1578063f2c816ae14610722578063f2fde38b14610748578063f7fb07b01461076e578063fe2ba8481461077657610211565b8063c885bc58146105eb578063ca73419e146105f3578063dd62ed3e14610696578063ecf0f3a0146106c457610211565b8063a457c2d7116100f4578063a457c2d71461057b578063a9059cbb146105a7578063b33712c5146105d3578063b3d8f3b5146105db578063bf9befb1146105e357610211565b806370a082311461053d578063715018a6146105635780638da5cb5b1461056b57806395d89b411461057357610211565b8063313ce567116101a8578063395093511161017757806339509351146104d157806342623360146104fd578063439766ce14610523578063501788af1461052d5780635c975abb1461053557610211565b8063313ce5671461039257806332258794146103b0578063338d6c301461045357806335e82f3a146104ab57610211565b806318160ddd116101e457806318160ddd146102f55780631d62ebd9146102fd5780631e55a3761461032357806323b872dd1461035c57610211565b806306fdde0314610216578063079eb40d14610293578063095ea7b3146102ad5780630e15561a146102ed575b600080fd5b61021e61079c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610258578181015183820152602001610240565b50505050905090810190601f1680156102855780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029b610832565b60408051918252519081900360200190f35b6102d9600480360360408110156102c357600080fd5b506001600160a01b038135169060200135610838565b604080519115158252519081900360200190f35b61029b610868565b61029b6108cd565b61029b6004803603602081101561031357600080fd5b50356001600160a01b03166108d3565b6103406004803603602081101561033957600080fd5b50356108f2565b604080516001600160a01b039092168252519081900360200190f35b6102d96004803603606081101561037257600080fd5b506001600160a01b03813581169160208101359091169060400135610919565b61039a610949565b6040805160ff9092168252519081900360200190f35b6102d9600480360360208110156103c657600080fd5b8101906020810181356401000000008111156103e157600080fd5b8201836020820111156103f357600080fd5b8035906020019184602083028401116401000000008311171561041557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610952945050505050565b61045b6109f2565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561049757818101518382015260200161047f565b505050509050019250505060405180910390f35b6102d9600480360360208110156104c157600080fd5b50356001600160a01b0316610a53565b6102d9600480360360408110156104e757600080fd5b506001600160a01b038135169060200135610b9f565b61029b6004803603602081101561051357600080fd5b50356001600160a01b0316610c01565b61052b610c1c565b005b61052b610c84565b6102d9610dcd565b61029b6004803603602081101561055357600080fd5b50356001600160a01b0316610ddb565b61052b610df6565b610340610ea6565b61021e610ebb565b6102d96004803603604081101561059157600080fd5b506001600160a01b038135169060200135610f1c565b6102d9600480360360408110156105bd57600080fd5b506001600160a01b038135169060200135610f8a565b61052b610fb1565b61029b611017565b61029b61101d565b61052b61104a565b6102d96004803603602081101561060957600080fd5b81019060208101813564010000000081111561062457600080fd5b82018360208201111561063657600080fd5b8035906020019184602083028401116401000000008311171561065857600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061106c945050505050565b61029b600480360360408110156106ac57600080fd5b506001600160a01b0381358116916020013516611106565b61052b600480360360208110156106da57600080fd5b5035611131565b610707600480360360208110156106f757600080fd5b50356001600160a01b0316611197565b60408051921515835260208301919091528051918290030190f35b6102d96004803603602081101561073857600080fd5b50356001600160a01b03166111f3565b61052b6004803603602081101561075e57600080fd5b50356001600160a01b0316611314565b61029b611421565b61052b6004803603602081101561078c57600080fd5b50356001600160a01b0316611493565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b60125490565b3360009081526006602052604081205460ff161561085557600080fd5b61085f8383611537565b90505b92915050565b600080805b6013548110156108c7576108bd601460006013848154811061088b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff61154b16565b915060010161086d565b50905090565b60025490565b6001600160a01b0381166000908152601460205260409020545b919050565b600781815481106108ff57fe5b6000918252602090912001546001600160a01b0316905081565b3360009081526006602052604081205460ff161561093657600080fd5b6109418484846115a5565b949350505050565b60055460ff1690565b600061095c61162d565b6005546201000090046001600160a01b039081169116146109b2576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b60005b82518110156109ec576109da8382815181106109cd57fe5b6020026020010151610a53565b156109e457600191505b6001016109b5565b50919050565b6060600780548060200260200160405190810160405280929190818152602001828054801561082857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a2c575050505050905090565b6000610a5d61162d565b6005546201000090046001600160a01b03908116911614610ab3576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff16156108ed576001600160a01b0382166000908152600660205260408120805460ff191690555b600754811015610b5a5760078181548110610b0c57fe5b6000918252602090912001546001600160a01b0384811691161415610b525760078181548110610b3857fe5b600091825260209091200180546001600160a01b03191690555b600101610af5565b50604080516001600160a01b038416815290517fb9b02d6ef3069c468ac99865bad0d84ec0cf34671cb26053e5e47d415ae175649181900360200190a1506001919050565b6000610bf8610bac61162d565b84610bf38560016000610bbd61162d565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61154b16565b611631565b50600192915050565b6001600160a01b031660009081526015602052604090205490565b610c2461162d565b6005546201000090046001600160a01b03908116911614610c7a576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b610c8261171d565b565b60125462015180014211610cdf576040805162461bcd60e51b815260206004820152601f60248201527f43616e2062652063616c6c6564206f6e6c79206f6e6365207065722064617900604482015290519081900360640190fd5b6000610ce9611421565b905060005b601354811015610dc557610d87610d45610d3f6015600060138681548110610d1257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020546103e86117c2565b84611804565b6014600060138581548110610d5657fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020549063ffffffff61154b16565b6014600060138481548110610d9857fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902055600101610cee565b505042601255565b600554610100900460ff1690565b6001600160a01b031660009081526020819052604090205490565b610dfe61162d565b6005546201000090046001600160a01b03908116911614610e54576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6005546040516000916201000090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a36005805462010000600160b01b0319169055565b6005546201000090046001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108285780601f106107fd57610100808354040283529160200191610828565b6000610bf8610f2961162d565b84610bf3856040518060600160405280602581526020016120896025913960016000610f5361162d565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61185d16565b3360009081526006602052604081205460ff1615610fa757600080fd5b61085f83836118f4565b610fb961162d565b6005546201000090046001600160a01b0390811691161461100f576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b610c82611908565b60135490565b600080805b6013548110156108c757611040601560006013848154811061088b57fe5b9150600101611022565b336000818152601460205260408120805491905590611069908261198f565b50565b600061107661162d565b6005546201000090046001600160a01b039081169116146110cc576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b60005b82518110156109ec576110f48382815181106110e757fe5b60200260200101516111f3565b156110fe57600191505b6001016110cf565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6305f5e100811415611069576111473382611a8b565b336000908152601560205260409020546111645761116433611b93565b33600090815260156020526040902054611184908263ffffffff61154b16565b3360009081526015602052604090205550565b600080805b6013548110156111e557601381815481106111b357fe5b6000918252602090912001546001600160a01b03858116911614156111dd576001925090506111ee565b60010161119c565b50600091508190505b915091565b60006111fd61162d565b6005546201000090046001600160a01b03908116911614611253576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526006602052604090205460ff166108ed576007805460018082019092557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b038516908117909155600081815260066020908152604091829020805460ff19169094179093558051918252517fee71faa2d1e96ac74ee4023d6ffa8abfa43b7648f51e3dbd8ec561823e9df132929181900390910190a1506001919050565b61131c61162d565b6005546201000090046001600160a01b03908116911614611372576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b0381166113b75760405162461bcd60e51b8152600401808060200182810382526026815260200180611f486026913960400191505060405180910390fd5b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b600854600090421161142f57fe5b60015b42600882600a811061144057fe5b015410801561144f5750600a81105b1561146b5761146581600163ffffffff61154b16565b50611432565b61148d61147f82600163ffffffff611bf616565b600a9063ffffffff611bf616565b91505090565b61149b61162d565b6005546201000090046001600160a01b039081169116146114f1576040805162461bcd60e51b81526020600482018190526024820152600080516020611fff833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526015602052604090205461151590829061198f565b6001600160a01b03811660009081526015602052604081205561106981611c38565b6000610bf861154461162d565b8484611631565b60008282018381101561085f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006115b2848484611ce7565b611623846115be61162d565b610bf385604051806060016040528060288152602001611fd7602891396001600160a01b038a166000908152600160205260408120906115fc61162d565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61185d16565b5060019392505050565b3390565b6001600160a01b0383166116765760405162461bcd60e51b81526004018080602001828103825260248152602001806120656024913960400191505060405180910390fd5b6001600160a01b0382166116bb5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f6e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600554610100900460ff161561176d576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805461ff0019166101001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586117a561162d565b604080516001600160a01b039092168252519081900360200190a1565b600061085f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e4e565b60008261181357506000610862565b8282028284828161182057fe5b041461085f5760405162461bcd60e51b8152600401808060200182810382526021815260200180611fb66021913960400191505060405180910390fd5b600081848411156118ec5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156118b1578181015183820152602001611899565b50505050905090810190601f1680156118de5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610bf861190161162d565b8484611ce7565b600554610100900460ff1661195b576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805461ff00191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117a561162d565b6001600160a01b0382166119ea576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6119f660008383611eb3565b600254611a09908263ffffffff61154b16565b6002556001600160a01b038216600090815260208190526040902054611a35908263ffffffff61154b16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611ad05760405162461bcd60e51b815260040180806020018281038252602181526020018061201f6021913960400191505060405180910390fd5b611adc82600083611eb3565b611b1f81604051806060016040528060228152602001611f26602291396001600160a01b038516600090815260208190526040902054919063ffffffff61185d16565b6001600160a01b038316600090815260208190526040902055600254611b4b908263ffffffff611bf616565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000611b9e82611197565b50905080611bf257601380546001810182556000919091527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a0900180546001600160a01b0319166001600160a01b0384161790555b5050565b600061085f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061185d565b600080611c4483611197565b915091508115611ce257601380546000198101908110611c6057fe5b600091825260209091200154601380546001600160a01b039092169183908110611c8657fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506013805480611cbf57fe5b600082815260209020810160001990810180546001600160a01b03191690550190555b505050565b6001600160a01b038316611d2c5760405162461bcd60e51b81526004018080602001828103825260258152602001806120406025913960400191505060405180910390fd5b6001600160a01b038216611d715760405162461bcd60e51b8152600401808060200182810382526023815260200180611f036023913960400191505060405180910390fd5b611d7c838383611eb3565b611dbf81604051806060016040528060268152602001611f90602691396001600160a01b038616600090815260208190526040902054919063ffffffff61185d16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611df4908263ffffffff61154b16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008183611e9d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156118b1578181015183820152602001611899565b506000838581611ea957fe5b0495945050505050565b611ebe838383611ce2565b611ec6610dcd565b15611ce25760405162461bcd60e51b815260040180806020018281038252602a8152602001806120ae602a913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f45524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a26469706673582212205a1855c41fdd66e9f48692a3bfab92d7478c84f1666644f013ed845d09e688d264736f6c63430006020033
Deployed Bytecode Sourcemap
28038:5183:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28038:5183:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11063:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11063:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30280:105;;;:::i;:::-;;;;;;;;;;;;;;;;32882:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32882:150:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;31468:253;;;:::i;12138:100::-;;;:::i;31349:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31349:113:0;-1:-1:-1;;;;;31349:113:0;;:::i;25308:35::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25308:35:0;;:::i;:::-;;;;-1:-1:-1;;;;;25308:35:0;;;;;;;;;;;;;;33038:172;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33038:172:0;;;;;;;;;;;;;;;;;:::i;11990:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27611:249;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27611:249:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;27611:249:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;27611:249: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;27611:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;27611:249:0;;-1:-1:-1;27611:249:0;;-1:-1:-1;;;;;27611:249:0:i;27926:101::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27926:101:0;;;;;;;;;;;;;;;;;26960:399;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26960:399:0;-1:-1:-1;;;;;26960:399:0;;:::i;14550:218::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14550:218:0;;;;;;;;:::i;30150:118::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30150:118:0;-1:-1:-1;;;;;30150:118:0;;:::i;32592:63::-;;;:::i;:::-;;32007:427;;;:::i;23110:78::-;;;:::i;12301:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12301:119:0;-1:-1:-1;;;;;12301:119:0;;:::i;21550:148::-;;;:::i;20908:79::-;;;:::i;11265:87::-;;;:::i;15271:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15271:269:0;;;;;;;;:::i;32734:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32734:142:0;;;;;;;;:::i;32661:67::-;;;:::i;30397:113::-;;;:::i;30518:292::-;;;:::i;32440:144::-;;;:::i;26482:240::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26482:240:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;26482:240:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;26482:240: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;26482:240:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;26482:240:0;;-1:-1:-1;26482:240:0;;-1:-1:-1;;;;;26482:240:0:i;12871:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12871:151:0;;;;;;;;;;:::i;30826:316::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30826:316:0;;:::i;29598:251::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29598:251:0;-1:-1:-1;;;;;29598:251:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;25992:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25992:261:0;-1:-1:-1;;;;;25992:261:0;;:::i;21853:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21853:244:0;-1:-1:-1;;;;;21853:244:0;;:::i;31727:274::-;;;:::i;31151:188::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31151:188:0;-1:-1:-1;;;;;31151:188:0;;:::i;11063:83::-;11133:5;11126:12;;;;;;;;-1:-1:-1;;11126:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11100:13;;11126:12;;11133:5;;11126:12;;11133:5;11126:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11063:83;:::o;30280:105::-;30362:15;;30280:105;:::o;32882:150::-;25757:10;32975:4;25747:21;;;:9;:21;;;;;;;;25746:22;25738:31;;;;;;32995::::1;33009:8;33019:6;32995:13;:31::i;:::-;32988:38;;25776:1;32882:150:::0;;;;:::o;31468:253::-;31512:7;;;31563:126;31587:12;:19;31583:23;;31563:126;;;31638:43;31656:7;:24;31664:12;31677:1;31664:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31664:15:0;31656:24;;;;;;;;;;;;;31638:13;;:43;:17;:43;:::i;:::-;31622:59;-1:-1:-1;31608:3:0;;31563:126;;;-1:-1:-1;31702:13:0;-1:-1:-1;31468:253:0;:::o;12138:100::-;12218:12;;12138:100;:::o;31349:113::-;-1:-1:-1;;;;;31435:21:0;;31409:7;31435:21;;;:7;:21;;;;;;31349:113;;;;:::o;25308:35::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25308:35:0;;-1:-1:-1;25308:35:0;:::o;33038:172::-;25757:10;33146:4;25747:21;;;:9;:21;;;;;;;;25746:22;25738:31;;;;;;33166:38:::1;33185:5;33192:3;33197:6;33166:18;:38::i;:::-;33159:45:::0;33038:172;-1:-1:-1;;;;33038:172:0:o;11990:83::-;12056:9;;;;11990:83;:::o;27611:249::-;27698:12;21130;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;27724:9:::1;27719:136;27743:5;:12;27739:1;:16;27719:136;;;27775:36;27802:5;27808:1;27802:8;;;;;;;;;;;;;;27775:26;:36::i;:::-;27771:77;;;27834:4;27824:14;;27771:77;27757:3;;27719:136;;;;27611:249:::0;;;:::o;27926:101::-;27971:16;28003:18;27996:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27996:25:0;;;;;;;;;;;;;;;;;;;;;;27926:101;:::o;26960:399::-;27035:12;21130;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27060:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;27056:298;;;-1:-1:-1::0;;;;;27086:15:0;::::1;27104:5;27086:15:::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;27086:23:0::1;::::0;;27118:161:::1;27139:18;:25:::0;27135:29;::::1;27118:161;;;27194:18;27213:1;27194:21;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;27186:29:0;;::::1;27194:21:::0;::::1;27186:29;27182:88;;;27237:18;27256:1;27237:21;;;;;;;;;::::0;;;::::1;::::0;;;::::1;27230:28:::0;;-1:-1:-1;;;;;;27230:28:0::1;::::0;;27182:88:::1;27166:3;;27118:161;;;-1:-1:-1::0;27292:31:0::1;::::0;;-1:-1:-1;;;;;27292:31:0;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;27342:4:0::1;26960:399:::0;;;:::o;14550:218::-;14638:4;14655:83;14664:12;:10;:12::i;:::-;14678:7;14687:50;14726:10;14687:11;:25;14699:12;:10;:12::i;:::-;-1:-1:-1;;;;;14687:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14687:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;:::-;14655:8;:83::i;:::-;-1:-1:-1;14756:4:0;14550:218;;;;:::o;30150:118::-;-1:-1:-1;;;;;30240:20:0;30209:7;30240:20;;;:6;:20;;;;;;;30150:118::o;32592:63::-;21130:12;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;32641:8:::1;:6;:8::i;:::-;32592:63::o:0;32007:427::-;32084:15;;32102:7;32084:25;32065:15;:45;32057:89;;;;;-1:-1:-1;;;32057:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;32152:19;32174:16;:14;:16::i;:::-;32152:38;-1:-1:-1;32206:9:0;32201:181;32225:12;:19;32221:23;;32201:181;;;32284:98;32313:68;32326:42;32339:6;:23;32346:12;32359:1;32346:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32346:15:0;32339:23;;;;;;;;;;;;;32363:4;32326:12;:42::i;:::-;32369:11;32313:12;:68::i;:::-;32284:7;:24;32292:12;32305:1;32292:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32292:15:0;32284:24;;;;;;;;;;;;;;:98;:28;:98;:::i;:::-;32257:7;:24;32265:12;32278:1;32265:15;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32265:15:0;32257:24;;;;;;;;;;;;:125;32265:15;32246:3;32201:181;;;-1:-1:-1;;32413:15:0;32395;:33;32007:427::o;23110:78::-;23173:7;;;;;;;;23110:78::o;12301:119::-;-1:-1:-1;;;;;12394:18:0;12367:7;12394:18;;;;;;;;;;;;12301:119::o;21550:148::-;21130:12;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;21641:6:::1;::::0;21620:40:::1;::::0;21657:1:::1;::::0;21641:6;;::::1;-1:-1:-1::0;;;;;21641:6:0::1;::::0;21620:40:::1;::::0;21657:1;;21620:40:::1;21671:6;:19:::0;;-1:-1:-1;;;;;;21671:19:0::1;::::0;;21550:148::o;20908:79::-;20973:6;;;;;-1:-1:-1;;;;;20973:6:0;;20908:79::o;11265:87::-;11337:7;11330:14;;;;;;;;-1:-1:-1;;11330:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11304:13;;11330:14;;11337:7;;11330:14;;11337:7;11330:14;;;;;;;;;;;;;;;;;;;;;;;;15271:269;15364:4;15381:129;15390:12;:10;:12::i;:::-;15404:7;15413:96;15452:15;15413:96;;;;;;;;;;;;;;;;;:11;:25;15425:12;:10;:12::i;:::-;-1:-1:-1;;;;;15413:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15413:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;32734:142::-;25757:10;32823:4;25747:21;;;:9;:21;;;;;;;;25746:22;25738:31;;;;;;32843:27:::1;32858:3;32863:6;32843:14;:27::i;32661:67::-:0;21130:12;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;32712:10:::1;:8;:10::i;30397:113::-:0;30483:12;:19;30397:113;:::o;30518:292::-;30561:7;;;30629:140;30653:12;:19;30649:23;;30629:140;;;30712:41;30729:6;:23;30736:12;30749:1;30736:15;;;;;;;30712:41;30697:56;-1:-1:-1;30674:3:0;;30629:140;;32440:144;32507:10;32482:14;32499:19;;;:7;:19;;;;;;;32524:23;;;32499:19;32553:25;;32499:19;32553:5;:25::i;:::-;32440:144;:::o;26482:240::-;26565:12;21130;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;26591:9:::1;26586:131;26610:5;:12;26606:1;:16;26586:131;;;26642:31;26664:5;26670:1;26664:8;;;;;;;;;;;;;;26642:21;:31::i;:::-;26638:72;;;26696:4;26686:14;;26638:72;26624:3;;26586:131;;12871:151:::0;-1:-1:-1;;;;;12987:18:0;;;12960:7;12987:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12871:151::o;30826:316::-;28271:9;30896:6;:23;30892:243;;;30945:25;30951:10;30963:6;30945:5;:25::i;:::-;30995:10;30988:18;;;;:6;:18;;;;;;30985:72;;31031:26;31046:10;31031:14;:26::i;:::-;31100:10;31093:18;;;;:6;:18;;;;;;:30;;31116:6;31093:30;:22;:30;:::i;:::-;31079:10;31072:18;;;;:6;:18;;;;;:51;30826:316;:::o;29598:251::-;29659:4;;;29690:124;29714:12;:19;29710:23;;29690:124;;;29769:12;29782:1;29769:15;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29757:27:0;;;29769:15;;29757:27;29753:49;;;29794:4;;-1:-1:-1;29800:1:0;-1:-1:-1;29786:16:0;;29753:49;29735:3;;29690:124;;;-1:-1:-1;29832:5:0;;-1:-1:-1;29832:5:0;;-1:-1:-1;29598:251:0;;;;:::o;25992:261::-;26062:12;21130;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;26088:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;26083:165;;26114:18;27:10:-1::0;;39:1:::1;23:18:::0;;::::1;45:23:::0;;;26114:29:0;::::1;::::0;;-1:-1:-1;;;;;;26114:29:0::1;-1:-1:-1::0;;;;;26114:29:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;26152:15:0;;;:9:::1;26114:29;26152:15:::0;;;;;;;;:22;;-1:-1:-1;;26152:22:0::1;::::0;;::::1;::::0;;;26188:29;;;;;;::::1;::::0;;;;;;;;;::::1;-1:-1:-1::0;26236:4:0::1;25992:261:::0;;;:::o;21853:244::-;21130:12;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;21942:22:0;::::1;21934:73;;;;-1:-1:-1::0;;;21934:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22044:6;::::0;22023:38:::1;::::0;-1:-1:-1;;;;;22023:38:0;;::::1;::::0;22044:6;;::::1;;::::0;22023:38:::1;::::0;;;::::1;22072:6;:17:::0;;-1:-1:-1;;;;;22072:17:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;22072:17:0;;::::1;::::0;;;::::1;::::0;;21853:244::o;31727:274::-;31817:6;:9;31773:7;;31799:15;:27;31792:35;;;;31856:1;31864:83;31888:15;31872:6;31879:5;31872:13;;;;;;;;;:31;31871:56;;;;;28316:2;31909:5;:17;31871:56;31864:83;;;31935:12;:5;31945:1;31935:12;:9;:12;:::i;:::-;;31864:83;;;31967:27;31981:12;:5;31991:1;31981:12;:9;:12;:::i;:::-;28316:2;;31967:27;:13;:27;:::i;:::-;31960:34;;;31727:274;:::o;31151:188::-;21130:12;:10;:12::i;:::-;21120:6;;;;;-1:-1:-1;;;;;21120:6:0;;;:22;;;21112:67;;;;;-1:-1:-1;;;21112:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;21112:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31241:20:0;::::1;;::::0;;;:6:::1;:20;::::0;;;;;31221:41:::1;::::0;31227:12;;31221:5:::1;:41::i;:::-;-1:-1:-1::0;;;;;31269:20:0;::::1;31292:1;31269:20:::0;;;:6:::1;:20;::::0;;;;:24;31300:31:::1;31276:12:::0;31300:17:::1;:31::i;13169:169::-:0;13252:4;13269:39;13278:12;:10;:12::i;:::-;13292:7;13301:6;13269:8;:39::i;1805:181::-;1863:7;1895:5;;;1919:6;;;;1911:46;;;;;-1:-1:-1;;;1911:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;13820:321;13926:4;13943:36;13953:6;13961:9;13972:6;13943:9;:36::i;:::-;13990:121;13999:6;14007:12;:10;:12::i;:::-;14021:89;14059:6;14021:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14021:19:0;;;;;;:11;:19;;;;;;14041:12;:10;:12::i;:::-;-1:-1:-1;;;;;14021:33:0;;;;;;;;;;;;-1:-1:-1;14021:33:0;;;:89;;:37;:89;:::i;13990:121::-;-1:-1:-1;14129:4:0;13820:321;;;;;:::o;605:106::-;693:10;605:106;:::o;18418:346::-;-1:-1:-1;;;;;18520:19:0;;18512:68;;;;-1:-1:-1;;;18512:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18599:21:0;;18591:68;;;;-1:-1:-1;;;18591:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18672:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18724:32;;;;;;;;;;;;;;;;;18418:346;;;:::o;23900:118::-;23428:7;;;;;;;23427:8;23419:37;;;;;-1:-1:-1;;;23419:37:0;;;;;;;;;;;;-1:-1:-1;;;23419:37:0;;;;;;;;;;;;;;;23960:7:::1;:14:::0;;-1:-1:-1;;23960:14:0::1;;;::::0;;23990:20:::1;23997:12;:10;:12::i;:::-;23990:20;::::0;;-1:-1:-1;;;;;23990:20:0;;::::1;::::0;;;;;;;::::1;::::0;;::::1;23900:118::o:0;4106:132::-;4164:7;4191:39;4195:1;4198;4191:39;;;;;;;;;;;;;;;;;:3;:39::i;3159:471::-;3217:7;3462:6;3458:47;;-1:-1:-1;3492:1:0;3485:8;;3458:47;3529:5;;;3533:1;3529;:5;:1;3553:5;;;;;:10;3545:56;;;;-1:-1:-1;;;3545:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2708:192;2794:7;2830:12;2822:6;;;;2814:29;;;;-1:-1:-1;;;2814:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2814:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2866:5:0;;;2708:192::o;12633:175::-;12719:4;12736:42;12746:12;:10;:12::i;:::-;12760:9;12771:6;12736:9;:42::i;24159:120::-;23704:7;;;;;;;23696:40;;;;;-1:-1:-1;;;23696:40:0;;;;;;;;;;;;-1:-1:-1;;;23696:40:0;;;;;;;;;;;;;;;24218:7:::1;:15:::0;;-1:-1:-1;;24218:15:0::1;::::0;;24249:22:::1;24258:12;:10;:12::i;16851:378::-:0;-1:-1:-1;;;;;16935:21:0;;16927:65;;;;;-1:-1:-1;;;16927:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17005:49;17034:1;17038:7;17047:6;17005:20;:49::i;:::-;17082:12;;:24;;17099:6;17082:24;:16;:24;:::i;:::-;17067:12;:39;-1:-1:-1;;;;;17138:18:0;;:9;:18;;;;;;;;;;;:30;;17161:6;17138:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;17117:18:0;;:9;:18;;;;;;;;;;;:51;;;;17184:37;;;;;;;17117:18;;:9;;17184:37;;;;;;;;;;16851:378;;:::o;17562:418::-;-1:-1:-1;;;;;17646:21:0;;17638:67;;;;-1:-1:-1;;;17638:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17718:49;17739:7;17756:1;17760:6;17718:20;:49::i;:::-;17801:68;17824:6;17801:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17801:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;17780:18:0;;:9;:18;;;;;;;;;;:89;17895:12;;:24;;17912:6;17895:24;:16;:24;:::i;:::-;17880:12;:39;17935:37;;;;;;;;17961:1;;-1:-1:-1;;;;;17935:37:0;;;;;;;;;;;;17562:418;;:::o;29395:191::-;29465:19;29490:27;29504:12;29490:13;:27::i;:::-;29464:53;;;29531:14;29527:51;;29547:12;27:10:-1;;39:1;23:18;;45:23;;-1:-1;29547:31:0;;;;;;;;-1:-1:-1;;;;;;29547:31:0;-1:-1:-1;;;;;29547:31:0;;;;;29527:51;29395:191;;:::o;2269:136::-;2327:7;2354:43;2358:1;2361;2354:43;;;;;;;;;;;;;;;;;:3;:43::i;29861:281::-;29934:19;29955:9;29968:27;29982:12;29968:13;:27::i;:::-;29933:62;;;;30008:14;30005:130;;;30055:12;30068:19;;-1:-1:-1;;30068:23:0;;;30055:37;;;;;;;;;;;;;;;;30037:12;:15;;-1:-1:-1;;;;;30055:37:0;;;;30050:1;;30037:15;;;;;;;;;;;;;;:55;;;;;-1:-1:-1;;;;;30037:55:0;;;;;-1:-1:-1;;;;;30037:55:0;;;;;;30106:12;:18;;;;;;;;;;;;;;;;-1:-1:-1;;30106:18:0;;;;;-1:-1:-1;;;;;;30106:18:0;;;;;;30005:130;29861:281;;;:::o;16030:539::-;-1:-1:-1;;;;;16136:20:0;;16128:70;;;;-1:-1:-1;;;16128:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16217:23:0;;16209:71;;;;-1:-1:-1;;;16209:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16293:47;16314:6;16322:9;16333:6;16293:20;:47::i;:::-;16373:71;16395:6;16373:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16373:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;16353:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16478:20;;;;;;;:32;;16503:6;16478:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;16455:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16526:35;;;;;;;16455:20;;16526:35;;;;;;;;;;;;;16030:539;;;:::o;4734:278::-;4820:7;4855:12;4848:5;4840:28;;;;-1:-1:-1;;;4840:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4840:28:0;;4879:9;4895:1;4891;:5;;;;;;;4734:278;-1:-1:-1;;;;;4734:278:0:o;24769:238::-;24878:44;24905:4;24911:2;24915:6;24878:26;:44::i;:::-;24944:8;:6;:8::i;:::-;24943:9;24935:64;;;;-1:-1:-1;;;24935:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://5a1855c41fdd66e9f48692a3bfab92d7478c84f1666644f013ed845d09e688d2
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.