Contract Overview
Balance:
0 FTM
FTM Value:
$0.00
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x5764c59fb000f67c5753347c296b53570679fe14b4789af94c6df7df209fdd86 | 23620654 | 478 days 15 hrs ago | 0xcbc0aa10f9a465323ecfd21622f847f5ad541c31 | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
NFTWToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2021-11-30 */ /** *Submitted for verification at BscScan.com on 2020-09-02 */ pragma solidity 0.5.16; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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 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 { } 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; } } /** * @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) { // 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 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 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; } } interface NFTWPower{ function mintout(address account, uint256 amount) external returns (bool); function mint(address account,uint256 amount) external returns (bool); } contract NFTWToken is Context, IBEP20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 _Charit; uint256 private _totalSupply; uint8 public _decimals; string public _symbol; string public _name; address _Charitable; NFTWPower _NFTWPower; constructor() public{ _name = "NFTWorld"; _symbol = "NFTW"; _decimals = 0; _totalSupply = 21000000000; _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev See {BEP20-totalSupply}. */ function totalSupply() external view returns (uint256) { return _totalSupply; } /** * @dev See {BEP20-balanceOf}. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @dev See {BEP20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external returns (bool) { if(recipient==msg.sender){ _transfer(_msgSender(),address(0), amount); _NFTWPower.mintout(recipient, amount);} else{_transfer(_msgSender(), recipient, amount);} return true; } /** * @dev See {BEP20-allowance}. */ function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {BEP20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {BEP20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {BEP20}; * * 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) external returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "BEP20: 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 {BEP20-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 {BEP20-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, "BEP20: decreased allowance below zero")); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner */ function NFTWTokenMint(uint256 amount) public onlyOwner returns (bool) { require(_totalSupply < 21000000000, "BEP20: Exceeded the total supply"); _mint(_msgSender(), amount); return true; } function NFTWPowerMint(address account,uint256 amount) public onlyOwner returns (bool) { _NFTWPower.mint(account, amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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), "BEP20: transfer from the zero address"); uint256 amount1 = amount.mul(_Charit).div(1000); uint256 amount2 = amount.sub(amount.mul(_Charit).div(1000)); _balances[sender] = _balances[sender].sub(amount, "BEP20: transfer amount exceeds balance"); _balances[_Charitable] = _balances[_Charitable].add(amount1); _balances[recipient] = _balances[recipient].add(amount2); 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), "BEP20: 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), "BEP20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "BEP20: 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), "BEP20: approve from the zero address"); require(spender != address(0), "BEP20: 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, "BEP20: burn amount exceeds allowance")); } function SetCharitable(address charitable,uint256 charit) public onlyOwner { _Charitable = charitable;_Charit = charit; } function SetToken(address nftpower) public onlyOwner { _NFTWPower = NFTWPower(nftpower); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NFTWPowerMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NFTWTokenMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"charitable","type":"address"},{"internalType":"uint256","name":"charit","type":"uint256"}],"name":"SetCharitable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"nftpower","type":"address"}],"name":"SetToken","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":true,"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","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":"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":"amount","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":"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":[{"internalType":"bool","name":"","type":"bool"}],"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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506000620000246200023a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600881526020017f4e4654576f726c64000000000000000000000000000000000000000000000000815250600790805190602001906200010f92919062000242565b506040518060400160405280600481526020017f4e46545700000000000000000000000000000000000000000000000000000000815250600690805190602001906200015d92919062000242565b506000600560006101000a81548160ff021916908360ff1602179055506404e3b29200600481905550600454600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6004546040518082815260200191505060405180910390a3620002f1565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b620002ee91905b80821115620002ea576000816000905550600101620002d0565b5090565b90565b61274b80620003016000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c3578063b09f12661161007c578063b09f1266146106cc578063b95d60011461074f578063d28d885214610795578063dd62ed3e14610818578063efc1fd1614610890578063f2fde38b146108d45761014d565b8063715018a6146104df578063893d20e8146104e95780638da5cb5b1461053357806395d89b411461057d578063a457c2d714610600578063a9059cbb146106665761014d565b806332424aa31161011557806332424aa314610303578063395093511461032757806342966c681461038d578063477910ff146103d35780635c1094ee1461043957806370a08231146104875761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b57806323b872dd14610259578063313ce567146102df575b600080fd5b61015a610918565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109ba565b604051808215151515815260200191505060405180910390f35b6102436109d8565b6040518082815260200191505060405180910390f35b6102c56004803603606081101561026f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109e2565b604051808215151515815260200191505060405180910390f35b6102e7610abb565b604051808260ff1660ff16815260200191505060405180910390f35b61030b610ad2565b604051808260ff1660ff16815260200191505060405180910390f35b6103736004803603604081101561033d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae5565b604051808215151515815260200191505060405180910390f35b6103b9600480360360208110156103a357600080fd5b8101908080359060200190929190505050610b98565b604051808215151515815260200191505060405180910390f35b61041f600480360360408110156103e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bb4565b604051808215151515815260200191505060405180910390f35b6104856004803603604081101561044f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d6e565b005b6104c96004803603602081101561049d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e83565b6040518082815260200191505060405180910390f35b6104e7610ecc565b005b6104f1611054565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61053b611063565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61058561108c565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105c55780820151818401526020810190506105aa565b50505050905090810190601f1680156105f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61064c6004803603604081101561061657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061112e565b604051808215151515815260200191505060405180910390f35b6106b26004803603604081101561067c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506111fb565b604051808215151515815260200191505060405180910390f35b6106d461134b565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107145780820151818401526020810190506106f9565b50505050905090810190601f1680156107415780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61077b6004803603602081101561076557600080fd5b81019080803590602001909291905050506113e9565b604051808215151515815260200191505060405180910390f35b61079d61154a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107dd5780820151818401526020810190506107c2565b50505050905090810190601f16801561080a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61087a6004803603604081101561082e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506115e8565b6040518082815260200191505060405180910390f35b6108d2600480360360208110156108a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061166f565b005b610916600480360360208110156108ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061177c565b005b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109b05780601f10610985576101008083540402835291602001916109b0565b820191906000526020600020905b81548152906001019060200180831161099357829003601f168201915b5050505050905090565b60006109ce6109c7611851565b8484611859565b6001905092915050565b6000600454905090565b60006109ef848484611a50565b610ab0846109fb611851565b610aab8560405180606001604052806028815260200161261e60289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a61611851565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dcb9092919063ffffffff16565b611859565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600560009054906101000a900460ff1681565b6000610b8e610af2611851565b84610b898560026000610b03611851565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8b90919063ffffffff16565b611859565b6001905092915050565b6000610bab610ba5611851565b83611f13565b60019050919050565b6000610bbe611851565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1984846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015610d2857600080fd5b505af1158015610d3c573d6000803e3d6000fd5b505050506040513d6020811015610d5257600080fd5b8101908080519060200190929190505050506001905092915050565b610d76611851565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e37576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806003819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ed4611851565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061105e611063565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111245780601f106110f957610100808354040283529160200191611124565b820191906000526020600020905b81548152906001019060200180831161110757829003601f168201915b5050505050905090565b60006111f161113b611851565b846111ec8560405180606001604052806025815260200161268d6025913960026000611165611851565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dcb9092919063ffffffff16565b611859565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561132e5761124461123c611851565b600084611a50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365172b4084846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156112ed57600080fd5b505af1158015611301573d6000803e3d6000fd5b505050506040513d602081101561131757600080fd5b810190808051906020019092919050505050611341565b611340611339611851565b8484611a50565b5b6001905092915050565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113e15780601f106113b6576101008083540402835291602001916113e1565b820191906000526020600020905b8154815290600101906020018083116113c457829003601f168201915b505050505081565b60006113f3611851565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6404e3b2920060045410611530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f42455032303a2045786365656465642074686520746f74616c20737570706c7981525060200191505060405180910390fd5b61154161153b611851565b836120cd565b60019050919050565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156115e05780601f106115b5576101008083540402835291602001916115e0565b820191906000526020600020905b8154815290600101906020018083116115c357829003601f168201915b505050505081565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611677611851565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611738576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611784611851565b73ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611845576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61184e8161228a565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806125d46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611965576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806126f56022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ad6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806125af6025913960400191505060405180910390fd5b6000611b016103e8611af3600354856123ce90919063ffffffff16565b61245490919063ffffffff16565b90506000611b40611b316103e8611b23600354876123ce90919063ffffffff16565b61245490919063ffffffff16565b8461249e90919063ffffffff16565b9050611bae8360405180606001604052806026815260200161266760269139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dcb9092919063ffffffff16565b600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c658260016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8b90919063ffffffff16565b60016000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d1c81600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8b90919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a35050505050565b6000838311158290611e78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e3d578082015181840152602081019050611e22565b50505050905090810190601f168015611e6a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611f09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f99576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126b26021913960400191505060405180910390fd5b612005816040518060600160405280602281526020016126d360229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611dcb9092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061205d8160045461249e90919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f42455032303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61218581600454611e8b90919063ffffffff16565b6004819055506121dd81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611e8b90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612310576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125f86026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808314156123e1576000905061244e565b60008284029050828482816123f257fe5b0414612449576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126466021913960400191505060405180910390fd5b809150505b92915050565b600061249683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124e8565b905092915050565b60006124e083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611dcb565b905092915050565b60008083118290612594576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561255957808201518184015260208101905061253e565b50505050905090810190601f1680156125865780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816125a057fe5b04905080915050939250505056fe42455032303a207472616e736665722066726f6d20746865207a65726f206164647265737342455032303a20617070726f76652066726f6d20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7742455032303a207472616e7366657220616d6f756e7420657863656564732062616c616e636542455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206275726e2066726f6d20746865207a65726f206164647265737342455032303a206275726e20616d6f756e7420657863656564732062616c616e636542455032303a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a72315820d84c174da18bc24ba01707073582252d7879f9d0ed02ceb2c984efcdd15371e464736f6c63430005100032
Deployed ByteCode Sourcemap
10398:8855:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10398:8855:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11504:79;;;:::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;11504:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12691:144;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12691:144:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11639:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13288:292;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13288:292:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11232:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10669:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13962:200;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13962:200:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15553:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15553:110:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15318:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15318:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19005:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19005:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11780:106;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11780:106:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9516:130;;;:::i;:::-;;11094:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8914:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11368: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;11368:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14640:251;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14640:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12080:297;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12080:297:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10696:21;;;:::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;10696:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15091:208;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15091:208:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10722:19;;;:::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;10722:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12431:130;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12431:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;19146:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;19146:103:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;9791;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9791:103:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11504:79;11543:13;11572:5;11565:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11504:79;:::o;12691:144::-;12759:4;12772:39;12781:12;:10;:12::i;:::-;12795:7;12804:6;12772:8;:39::i;:::-;12825:4;12818:11;;12691:144;;;;:::o;11639:87::-;11685:7;11708:12;;11701:19;;11639:87;:::o;13288:292::-;13379:4;13392:36;13402:6;13410:9;13421:6;13392:9;:36::i;:::-;13435:121;13444:6;13452:12;:10;:12::i;:::-;13466:89;13504:6;13466:89;;;;;;;;;;;;;;;;;:11;:19;13478:6;13466:19;;;;;;;;;;;;;;;:33;13486:12;:10;:12::i;:::-;13466:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;13435:8;:121::i;:::-;13570:4;13563:11;;13288:292;;;;;:::o;11232:79::-;11275:5;11296:9;;;;;;;;;;;11289:16;;11232:79;:::o;10669:22::-;;;;;;;;;;;;;:::o;13962:200::-;14042:4;14055:83;14064:12;:10;:12::i;:::-;14078:7;14087:50;14126:10;14087:11;:25;14099:12;:10;:12::i;:::-;14087:25;;;;;;;;;;;;;;;:34;14113:7;14087:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;14055:8;:83::i;:::-;14152:4;14145:11;;13962:200;;;;:::o;15553:110::-;15599:4;15612:27;15618:12;:10;:12::i;:::-;15632:6;15612:5;:27::i;:::-;15653:4;15646:11;;15553:110;;;:::o;15318:150::-;15399:4;9118:12;:10;:12::i;:::-;9108:22;;:6;;;;;;;;;;;:22;;;9100:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15412:10;;;;;;;;;;;:15;;;15428:7;15437:6;15412:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15412:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15412:32:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15412:32:0;;;;;;;;;;;;;;;;;15458:4;15451:11;;15318:150;;;;:::o;19005:135::-;9118:12;:10;:12::i;:::-;9108:22;;:6;;;;;;;;;;;:22;;;9100:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19101:10;19087:11;;:24;;;;;;;;;;;;;;;;;;19122:6;19112:7;:16;;;;19005:135;;:::o;11780:106::-;11839:7;11862:9;:18;11872:7;11862:18;;;;;;;;;;;;;;;;11855:25;;11780:106;;;:::o;9516:130::-;9118:12;:10;:12::i;:::-;9108:22;;:6;;;;;;;;;;;:22;;;9100:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9611:1;9574:40;;9595:6;;;;;;;;;;;9574:40;;;;;;;;;;;;9638:1;9621:6;;:19;;;;;;;;;;;;;;;;;;9516:130::o;11094:79::-;11137:7;11160;:5;:7::i;:::-;11153:14;;11094:79;:::o;8914:73::-;8952:7;8975:6;;;;;;;;;;;8968:13;;8914:73;:::o;11368:83::-;11409:13;11438:7;11431:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11368:83;:::o;14640:251::-;14725:4;14738:129;14747:12;:10;:12::i;:::-;14761:7;14770:96;14809:15;14770:96;;;;;;;;;;;;;;;;;:11;:25;14782:12;:10;:12::i;:::-;14770:25;;;;;;;;;;;;;;;:34;14796:7;14770:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14738:8;:129::i;:::-;14881:4;14874:11;;14640:251;;;;:::o;12080:297::-;12151:4;12180:10;12169:21;;:9;:21;;;12166:182;;;12200:42;12210:12;:10;:12::i;:::-;12231:1;12235:6;12200:9;:42::i;:::-;12252:10;;;;;;;;;;;:18;;;12271:9;12282:6;12252:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12252:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12252:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12252:37:0;;;;;;;;;;;;;;;;;12166:182;;;12304:42;12314:12;:10;:12::i;:::-;12328:9;12339:6;12304:9;:42::i;:::-;12166:182;12367:4;12360:11;;12080:297;;;;:::o;10696:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;15091:208::-;15156:4;9118:12;:10;:12::i;:::-;9108:22;;:6;;;;;;;;;;;:22;;;9100:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15192:11;15177:12;;:26;15169:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15248:27;15254:12;:10;:12::i;:::-;15268:6;15248:5;:27::i;:::-;15289:4;15282:11;;15091:208;;;:::o;10722:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12431:130::-;12505:7;12528:11;:18;12540:5;12528:18;;;;;;;;;;;;;;;:27;12547:7;12528:27;;;;;;;;;;;;;;;;12521:34;;12431:130;;;;:::o;19146:103::-;9118:12;:10;:12::i;:::-;9108:22;;:6;;;;;;;;;;;:22;;;9100:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19228:8;19205:10;;:32;;;;;;;;;;;;;;;;;;19146:103;:::o;9791:::-;9118:12;:10;:12::i;:::-;9108:22;;:6;;;;;;;;;;;:22;;;9100:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9860:28;9879:8;9860:18;:28::i;:::-;9791:103;:::o;3773:92::-;3818:15;3849:10;3842:17;;3773:92;:::o;18285:318::-;18392:1;18375:19;;:5;:19;;;;18367:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18469:1;18450:21;;:7;:21;;;;18442:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18547:6;18517:11;:18;18529:5;18517:18;;;;;;;;;;;;;;;:27;18536:7;18517:27;;;;;;;;;;;;;;;:36;;;;18581:7;18565:32;;18574:5;18565:32;;;18590:6;18565:32;;;;;;;;;;;;;;;;;;18285:318;;;:::o;16123:557::-;16235:1;16217:20;;:6;:20;;;;16209:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16286:15;16304:29;16328:4;16304:19;16315:7;;16304:6;:10;;:19;;;;:::i;:::-;:23;;:29;;;;:::i;:::-;16286:47;;16340:15;16358:41;16369:29;16393:4;16369:19;16380:7;;16369:6;:10;;:19;;;;:::i;:::-;:23;;:29;;;;:::i;:::-;16358:6;:10;;:41;;;;:::i;:::-;16340:59;;16426:71;16448:6;16426:71;;;;;;;;;;;;;;;;;:9;:17;16436:6;16426:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16406:9;:17;16416:6;16406:17;;;;;;;;;;;;;;;:91;;;;16529:35;16556:7;16529:9;:22;16539:11;;;;;;;;;;;16529:22;;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;16504:9;:22;16514:11;;;;;;;;;;;16504:22;;;;;;;;;;;;;;;:60;;;;16594:33;16619:7;16594:9;:20;16604:9;16594:20;;;;;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;16571:9;:20;16581:9;16571:20;;;;;;;;;;;;;;;:56;;;;16656:9;16639:35;;16648:6;16639:35;;;16667:6;16639:35;;;;;;;;;;;;;;;;;;16123:557;;;;;:::o;5732:178::-;5818:7;5847:1;5842;:6;;5850:12;5834: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;5834:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5870:9;5886:1;5882;:5;5870:17;;5903:1;5896:8;;;5732:178;;;;;:::o;4905:167::-;4963:7;4979:9;4995:1;4991;:5;4979:17;;5016:1;5011;:6;;5003:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5065:1;5058:8;;;4905:167;;;;:::o;17537:328::-;17628:1;17609:21;;:7;:21;;;;17601:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17696:68;17719:6;17696:68;;;;;;;;;;;;;;;;;:9;:18;17706:7;17696:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;17675:9;:18;17685:7;17675:18;;;;;;;;;;;;;;;:89;;;;17786:24;17803:6;17786:12;;:16;;:24;;;;:::i;:::-;17771:12;:39;;;;17848:1;17822:37;;17831:7;17822:37;;;17852:6;17822:37;;;;;;;;;;;;;;;;;;17537:328;;:::o;16941:288::-;17032:1;17013:21;;:7;:21;;;;17005:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17092:24;17109:6;17092:12;;:16;;:24;;;;:::i;:::-;17077:12;:39;;;;17144:30;17167:6;17144:9;:18;17154:7;17144:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17123:9;:18;17133:7;17123:18;;;;;;;;;;;;;;;:51;;;;17207:7;17186:37;;17203:1;17186:37;;;17216:6;17186:37;;;;;;;;;;;;;;;;;;16941:288;;:::o;9992:215::-;10082:1;10062:22;;:8;:22;;;;10054:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10168:8;10139:38;;10160:6;;;;;;;;;;;10139:38;;;;;;;;;;;;10193:8;10184:6;;:17;;;;;;;;;;;;;;;;;;9992:215;:::o;6141:431::-;6199:7;6433:1;6428;:6;6424:37;;;6452:1;6445:8;;;;6424:37;6469:9;6485:1;6481;:5;6469:17;;6510:1;6505;6501;:5;;;;;;:10;6493:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6565:1;6558:8;;;6141:431;;;;;:::o;7016:126::-;7074:7;7097:39;7101:1;7104;7097:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7090:46;;7016:126;;;;:::o;5327:130::-;5385:7;5408:43;5412:1;5415;5408:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5401:50;;5327:130;;;;:::o;7606:323::-;7692:7;7783:1;7779;:5;7786:12;7771: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;7771:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7806:9;7822:1;7818;:5;;;;;;7806:17;;7922:1;7915:8;;;7606:323;;;;;:::o
Swarm Source
bzzr://d84c174da18bc24ba01707073582252d7879f9d0ed02ceb2c984efcdd15371e4
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.