BEP-20
Overview
Max Total Supply
359,370,713.411326BSCDOGE
Holders
128
Market
Price
$0.00 @ 0.000000 BNB
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
233,431 BSCDOGEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BscDoge
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2021-03-08 */ /* --- BscDoge --- Dogecoin on Binance Smart Chain. Tip someone and get rewards for your kindness. Let us build the tipping and meme culture on Binance Smart Chain together. ▄ ▄ ▌▒█ ▄▀▒▌ ▌▒▒█ ▄▀▒▒▒▐ ▐▄▀▒▒▀▀▀▀▄▄▄▀▒▒▒▒▒▐ ▄▄▀▒░▒▒▒▒▒▒▒▒▒█▒▒▄█▒▐ ▄▀▒▒▒░░░▒▒▒░░░▒▒▒▀██▀▒▌ ▐▒▒▒▄▄▒▒▒▒░░░▒▒▒▒▒▒▒▀▄▒▒▌ ▌░░▌█▀▒▒▒▒▒▄▀█▄▒▒▒▒▒▒▒█▒▐ ▐░░░▒▒▒▒▒▒▒▒▌██▀▒▒░░░▒▒▒▀▄▌ ▌░▒▄██▄▒▒▒▒▒▒▒▒▒░░░░░░▒▒▒▒▌ ▌▒▀▐▄█▄█▌▄░▀▒▒░░░░░░░░░░▒▒▒▐ ▐▒▒▐▀▐▀▒░▄▄▒▄▒▒▒▒▒▒░▒░▒░▒▒▒▒▌ ▐▒▒▒▀▀▄▄▒▒▒▄▒▒▒▒▒▒▒▒░▒░▒░▒▒▐ ▌▒▒▒▒▒▒▀▀▀▒▒▒▒▒▒░▒░▒░▒░▒▒▒▌ ▐▒▒▒▒▒▒▒▒▒▒▒▒▒▒░▒░▒░▒▒▄▒▒▐ ▀▄▒▒▒▒▒▒▒▒▒▒▒░▒░▒░▒▄▒▒▒▒▌ ▀▄▒▒▒▒▒▒▒▒▒▒▄▄▄▀▒▒▒▒▄▀ ▀▄▄▄▄▄▄▀▀▀▒▒▒▒▒▄▄▀ ▒▒▒▒▒▒▒▒▒▒▀▀ --- How to --- You can mint fresh new BscDoge starting at 10 million BscDoge, going down linearly at every mint to a cap of 100 billion BscDoge. Minting BscDoge are free. Just use the mint function from contract or go to the BscScan 'write contract' tab and click the mint button! However you cannot mint BscDoge to an account if it already has BscDoge. First tip your BscDoge to other people! How to use BscDoge? If you want to tip someone, you can send some BscDoge to his/her address. There is a 50:50 chance that 1. your send will be successful OR 2. you will lose half of your BscDoge and donate them to the BscDoge Community Pool. These lost BscDoge accumulate in BscDoge Community Pool and once in every 5 transfers, BscDoge Community Pool randomly send its BscDoge to one sender assuming the sender will appreciate the tipping culture and tip others. So with every send you are playing a 1/5 dice to get a big amount of BscDoge. Now, start to tip BscDoge to someone and get rewards for your kindness, good luck! Mint for free from the contract and then just SEND IT!! */ pragma solidity ^0.5.16; interface IBEP20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external view returns (address); function balanceOf(address tokenOwner) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address _owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed tokenOwner, 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 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 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; } } contract BscDoge is Context, IBEP20, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; event Mint(address account, uint256 amount, string text); uint256 private _totalSupply; uint256 private _maxSupply; uint8 private _decimals; string private _symbol; string private _name; constructor() public { _name = "BscDoge"; _symbol = "BSCDOGE"; _decimals = 18; _totalSupply = 0; _maxSupply = (100000000000 * (10**18)); // 100 billion BscDoge in total } function maxSupply() external view returns (uint256) { return _maxSupply; } /** * @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]; } function getMiningReward() public view returns (uint256) { return (10000000 * 10**18 * (_maxSupply - _totalSupply))/_maxSupply; } /** * @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(msg.sender, 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) { _transferFrom(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "BEP20: transfer amount exceeds allowance")); return true; } function transfer(address recipient, uint256 amount) external returns (bool) { _transfer(recipient, amount); 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(msg.sender, spender, _allowances[msg.sender][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(msg.sender, spender, _allowances[msg.sender][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 mint() public returns (bool) { _mint(msg.sender, getMiningReward()); 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 _transferFrom(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "BEP20: hey, who is the owner of these BscDoge?"); require(recipient != address(0), "BEP20: hey, who do you think you are sending these BscDoge to?"); _balances[sender] = _balances[sender].sub(amount, "BEP20: hey, you don't have so many BscDoge."); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } function _transfer(address recipient, uint256 amount) internal { require(recipient != address(0), "BEP20: hey, who do you think you are sending these BscDoge to?"); require(_balances[msg.sender] != 0, "BEP20: ask your friends to send some BscDoge to you first!"); uint doge = uint(keccak256(abi.encodePacked(msg.sender,recipient,now))).mod(2); uint BCP_reinforcements = uint(keccak256(abi.encodePacked(msg.sender,recipient,amount,now))).mod(5); if (doge < 1) { _balances[msg.sender] = _balances[msg.sender].sub(amount, "BEP20: hey, you don't have so many BscDoge."); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(msg.sender, recipient, amount); } else { _balances[msg.sender] = _balances[msg.sender].sub(amount.div(2)); _balances[address(0)] = _balances[address(0)].add(amount.div(2)); emit Transfer(msg.sender, address(0), amount.div(2)); } if (BCP_reinforcements < 1) { uint BCP_gift = _balances[address(0)]; _balances[msg.sender] = _balances[msg.sender].add(BCP_gift); _balances[address(0)] = 0; emit Transfer(address(0), msg.sender, BCP_gift); } } /** @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: hey, do you even crypto bro?"); require(_balances[account] == 0); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, 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: at this point I have to ask, are you a real BscDoger?"); require(spender != address(0), "BEP20: who sent you here?"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function () external payable { revert(); } }
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":"tokenOwner","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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"string","name":"text","type":"string"}],"name":"Mint","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"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":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":"getMiningReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":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
60806040523480156200001157600080fd5b506000620000276001600160e01b03620000fa16565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600780825266427363446f676560c81b60209092019182526200009f9181620000ff565b5060408051808201909152600780825266425343444f474560c81b6020909201918252620000d091600691620000ff565b506005805460ff1916601217905560006003556c01431e0fae6d7217caa0000000600455620001a1565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b620000fc91905b808211156200018057600081556001016200018b565b61145380620001b16000396000f3fe6080604052600436106101095760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610382578063a9059cbb146103bb578063d5abeb01146103f4578063dd62ed3e14610409578063f2fde38b1461044457610109565b8063715018a614610310578063893d20e8146103275780638da5cb5b1461035857806395d89b411461036d57610109565b806323b872dd116100dc57806323b872dd14610221578063313ce56714610264578063395093511461028f578063490203a7146102c857806370a08231146102dd57610109565b806306fdde031461010e578063095ea7b3146101985780631249c58b146101e557806318160ddd146101fa575b600080fd5b34801561011a57600080fd5b50610123610477565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a457600080fd5b506101d1600480360360408110156101bb57600080fd5b506001600160a01b03813516906020013561050d565b604080519115158252519081900360200190f35b3480156101f157600080fd5b506101d1610523565b34801561020657600080fd5b5061020f61053c565b60408051918252519081900360200190f35b34801561022d57600080fd5b506101d16004803603606081101561024457600080fd5b506001600160a01b03813581169160208101359091169060400135610542565b34801561027057600080fd5b506102796105b1565b6040805160ff9092168252519081900360200190f35b34801561029b57600080fd5b506101d1600480360360408110156102b257600080fd5b506001600160a01b0381351690602001356105ba565b3480156102d457600080fd5b5061020f6105f6565b3480156102e957600080fd5b5061020f6004803603602081101561030057600080fd5b50356001600160a01b031661061c565b34801561031c57600080fd5b50610325610637565b005b34801561033357600080fd5b5061033c6106eb565b604080516001600160a01b039092168252519081900360200190f35b34801561036457600080fd5b5061033c6106fa565b34801561037957600080fd5b50610123610709565b34801561038e57600080fd5b506101d1600480360360408110156103a557600080fd5b506001600160a01b03813516906020013561076a565b3480156103c757600080fd5b506101d1600480360360408110156103de57600080fd5b506001600160a01b0381351690602001356107bf565b34801561040057600080fd5b5061020f6107cb565b34801561041557600080fd5b5061020f6004803603604081101561042c57600080fd5b506001600160a01b03813581169160200135166107d1565b34801561045057600080fd5b506103256004803603602081101561046757600080fd5b50356001600160a01b03166107fc565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105035780601f106104d857610100808354040283529160200191610503565b820191906000526020600020905b8154815290600101906020018083116104e657829003601f168201915b5050505050905090565b600061051a338484610872565b50600192915050565b6000610536336105316105f6565b610974565b50600190565b60035490565b600061054f848484610a61565b6105a784336105a285604051806060016040528060288152602001611317602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919063ffffffff610bad16565b610872565b5060019392505050565b60055460ff1690565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161051a9185906105a2908663ffffffff610c4416565b6000600454600354600454036a084595161401484a000000028161061657fe5b04905090565b6001600160a01b031660009081526001602052604090205490565b61063f610ca5565b6000546001600160a01b039081169116146106a1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006106f56106fa565b905090565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105035780601f106104d857610100808354040283529160200191610503565b600061051a33846105a2856040518060600160405280602581526020016113bc602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919063ffffffff610bad16565b600061051a8383610ca9565b60045490565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610804610ca5565b6000546001600160a01b03908116911614610866576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61086f8161100e565b50565b6001600160a01b0383166108b75760405162461bcd60e51b815260040180806020018281038252603c8152602001806112db603c913960400191505060405180910390fd5b6001600160a01b038216610912576040805162461bcd60e51b815260206004820152601960248201527f42455032303a2077686f2073656e7420796f7520686572653f00000000000000604482015290519081900360640190fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166109b95760405162461bcd60e51b815260040180806020018281038252602381526020018061133f6023913960400191505060405180910390fd5b6001600160a01b038216600090815260016020526040902054156109dc57600080fd5b6003546109ef908263ffffffff610c4416565b6003556001600160a01b038216600090815260016020526040902054610a1b908263ffffffff610c4416565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206113628339815191529281900390910190a35050565b6001600160a01b038316610aa65760405162461bcd60e51b815260040180806020018281038252602e81526020018061123c602e913960400191505060405180910390fd5b6001600160a01b038216610aeb5760405162461bcd60e51b815260040180806020018281038252603e8152602001806113e1603e913960400191505060405180910390fd5b610b2e816040518060600160405280602b815260200161128a602b91396001600160a01b038616600090815260016020526040902054919063ffffffff610bad16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b63908263ffffffff610c4416565b6001600160a01b03808416600081815260016020908152604091829020949094558051858152905191939287169260008051602061136283398151915292918290030190a3505050565b60008184841115610c3c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c01578181015183820152602001610be9565b50505050905090810190601f168015610c2e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c9e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038216610cee5760405162461bcd60e51b815260040180806020018281038252603e8152602001806113e1603e913960400191505060405180910390fd5b33600090815260016020526040902054610d395760405162461bcd60e51b815260040180806020018281038252603a815260200180611382603a913960400191505060405180910390fd5b6040805133606090811b6020808401919091529085901b6bffffffffffffffffffffffff19166034830152426048808401919091528351808403909101815260689092019092528051910120600090610d939060026110ae565b6040805133606090811b6020808401919091529087901b6bffffffffffffffffffffffff1916603483015260488201869052426068808401919091528351808403909101815260889092019092528051910120909150600090610df79060056110ae565b90506001821015610eb657610e3c836040518060600160405280602b815260200161128a602b913933600090815260016020526040902054919063ffffffff610bad16565b33600090815260016020526040808220929092556001600160a01b03861681522054610e6e908463ffffffff610c4416565b6001600160a01b0385166000818152600160209081526040918290209390935580518681529051919233926000805160206113628339815191529281900390910190a3610f7f565b610ee6610eca84600263ffffffff6110f016565b336000908152600160205260409020549063ffffffff61113216565b33600090815260016020526040902055610f2f610f0a84600263ffffffff6110f016565b60008052600160205260008051602061126a833981519152549063ffffffff610c4416565b6000808052600160205260008051602061126a8339815191529190915533600080516020611362833981519152610f6d86600263ffffffff6110f016565b60408051918252519081900360200190a35b600181101561100857600160205260008051602061126a833981519152543360009081526040902054610fb8908263ffffffff610c4416565b3360008181526001602090815260408083209490945581805260008051602061126a83398151915282905583518581529351929391926000805160206113628339815191529281900390910190a3505b50505050565b6001600160a01b0381166110535760405162461bcd60e51b81526004018080602001828103825260268152602001806112b56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c9e83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611174565b6000610c9e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111d6565b6000610c9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bad565b600081836111c35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610c01578181015183820152602001610be9565b508284816111cd57fe5b06949350505050565b600081836112255760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610c01578181015183820152602001610be9565b50600083858161123157fe5b049594505050505056fe42455032303a206865792c2077686f20697320746865206f776e6572206f6620746865736520427363446f67653fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4942455032303a206865792c20796f7520646f6e2774206861766520736f206d616e7920427363446f67652e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a206174207468697320706f696e742049206861766520746f2061736b2c2061726520796f752061207265616c20427363446f6765723f42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a206865792c20646f20796f75206576656e2063727970746f2062726f3fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a2061736b20796f757220667269656e647320746f2073656e6420736f6d6520427363446f676520746f20796f752066697273742142455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206865792c2077686f20646f20796f75207468696e6b20796f75206172652073656e64696e6720746865736520427363446f676520746f3fa265627a7a723158209b145c1a61180feeab7a8398a6ce4fa34deb3973b0f0970faa1b7efb906a37fa64736f6c63430005100032
Deployed Bytecode
0x6080604052600436106101095760003560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610382578063a9059cbb146103bb578063d5abeb01146103f4578063dd62ed3e14610409578063f2fde38b1461044457610109565b8063715018a614610310578063893d20e8146103275780638da5cb5b1461035857806395d89b411461036d57610109565b806323b872dd116100dc57806323b872dd14610221578063313ce56714610264578063395093511461028f578063490203a7146102c857806370a08231146102dd57610109565b806306fdde031461010e578063095ea7b3146101985780631249c58b146101e557806318160ddd146101fa575b600080fd5b34801561011a57600080fd5b50610123610477565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015d578181015183820152602001610145565b50505050905090810190601f16801561018a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101a457600080fd5b506101d1600480360360408110156101bb57600080fd5b506001600160a01b03813516906020013561050d565b604080519115158252519081900360200190f35b3480156101f157600080fd5b506101d1610523565b34801561020657600080fd5b5061020f61053c565b60408051918252519081900360200190f35b34801561022d57600080fd5b506101d16004803603606081101561024457600080fd5b506001600160a01b03813581169160208101359091169060400135610542565b34801561027057600080fd5b506102796105b1565b6040805160ff9092168252519081900360200190f35b34801561029b57600080fd5b506101d1600480360360408110156102b257600080fd5b506001600160a01b0381351690602001356105ba565b3480156102d457600080fd5b5061020f6105f6565b3480156102e957600080fd5b5061020f6004803603602081101561030057600080fd5b50356001600160a01b031661061c565b34801561031c57600080fd5b50610325610637565b005b34801561033357600080fd5b5061033c6106eb565b604080516001600160a01b039092168252519081900360200190f35b34801561036457600080fd5b5061033c6106fa565b34801561037957600080fd5b50610123610709565b34801561038e57600080fd5b506101d1600480360360408110156103a557600080fd5b506001600160a01b03813516906020013561076a565b3480156103c757600080fd5b506101d1600480360360408110156103de57600080fd5b506001600160a01b0381351690602001356107bf565b34801561040057600080fd5b5061020f6107cb565b34801561041557600080fd5b5061020f6004803603604081101561042c57600080fd5b506001600160a01b03813581169160200135166107d1565b34801561045057600080fd5b506103256004803603602081101561046757600080fd5b50356001600160a01b03166107fc565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105035780601f106104d857610100808354040283529160200191610503565b820191906000526020600020905b8154815290600101906020018083116104e657829003601f168201915b5050505050905090565b600061051a338484610872565b50600192915050565b6000610536336105316105f6565b610974565b50600190565b60035490565b600061054f848484610a61565b6105a784336105a285604051806060016040528060288152602001611317602891396001600160a01b038a166000908152600260209081526040808320338452909152902054919063ffffffff610bad16565b610872565b5060019392505050565b60055460ff1690565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161051a9185906105a2908663ffffffff610c4416565b6000600454600354600454036a084595161401484a000000028161061657fe5b04905090565b6001600160a01b031660009081526001602052604090205490565b61063f610ca5565b6000546001600160a01b039081169116146106a1576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60006106f56106fa565b905090565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105035780601f106104d857610100808354040283529160200191610503565b600061051a33846105a2856040518060600160405280602581526020016113bc602591393360009081526002602090815260408083206001600160a01b038d168452909152902054919063ffffffff610bad16565b600061051a8383610ca9565b60045490565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610804610ca5565b6000546001600160a01b03908116911614610866576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61086f8161100e565b50565b6001600160a01b0383166108b75760405162461bcd60e51b815260040180806020018281038252603c8152602001806112db603c913960400191505060405180910390fd5b6001600160a01b038216610912576040805162461bcd60e51b815260206004820152601960248201527f42455032303a2077686f2073656e7420796f7520686572653f00000000000000604482015290519081900360640190fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166109b95760405162461bcd60e51b815260040180806020018281038252602381526020018061133f6023913960400191505060405180910390fd5b6001600160a01b038216600090815260016020526040902054156109dc57600080fd5b6003546109ef908263ffffffff610c4416565b6003556001600160a01b038216600090815260016020526040902054610a1b908263ffffffff610c4416565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391926000805160206113628339815191529281900390910190a35050565b6001600160a01b038316610aa65760405162461bcd60e51b815260040180806020018281038252602e81526020018061123c602e913960400191505060405180910390fd5b6001600160a01b038216610aeb5760405162461bcd60e51b815260040180806020018281038252603e8152602001806113e1603e913960400191505060405180910390fd5b610b2e816040518060600160405280602b815260200161128a602b91396001600160a01b038616600090815260016020526040902054919063ffffffff610bad16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054610b63908263ffffffff610c4416565b6001600160a01b03808416600081815260016020908152604091829020949094558051858152905191939287169260008051602061136283398151915292918290030190a3505050565b60008184841115610c3c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610c01578181015183820152602001610be9565b50505050905090810190601f168015610c2e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c9e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038216610cee5760405162461bcd60e51b815260040180806020018281038252603e8152602001806113e1603e913960400191505060405180910390fd5b33600090815260016020526040902054610d395760405162461bcd60e51b815260040180806020018281038252603a815260200180611382603a913960400191505060405180910390fd5b6040805133606090811b6020808401919091529085901b6bffffffffffffffffffffffff19166034830152426048808401919091528351808403909101815260689092019092528051910120600090610d939060026110ae565b6040805133606090811b6020808401919091529087901b6bffffffffffffffffffffffff1916603483015260488201869052426068808401919091528351808403909101815260889092019092528051910120909150600090610df79060056110ae565b90506001821015610eb657610e3c836040518060600160405280602b815260200161128a602b913933600090815260016020526040902054919063ffffffff610bad16565b33600090815260016020526040808220929092556001600160a01b03861681522054610e6e908463ffffffff610c4416565b6001600160a01b0385166000818152600160209081526040918290209390935580518681529051919233926000805160206113628339815191529281900390910190a3610f7f565b610ee6610eca84600263ffffffff6110f016565b336000908152600160205260409020549063ffffffff61113216565b33600090815260016020526040902055610f2f610f0a84600263ffffffff6110f016565b60008052600160205260008051602061126a833981519152549063ffffffff610c4416565b6000808052600160205260008051602061126a8339815191529190915533600080516020611362833981519152610f6d86600263ffffffff6110f016565b60408051918252519081900360200190a35b600181101561100857600160205260008051602061126a833981519152543360009081526040902054610fb8908263ffffffff610c4416565b3360008181526001602090815260408083209490945581805260008051602061126a83398151915282905583518581529351929391926000805160206113628339815191529281900390910190a3505b50505050565b6001600160a01b0381166110535760405162461bcd60e51b81526004018080602001828103825260268152602001806112b56026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c9e83836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f0000000000000000815250611174565b6000610c9e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111d6565b6000610c9e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610bad565b600081836111c35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610c01578181015183820152602001610be9565b508284816111cd57fe5b06949350505050565b600081836112255760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610c01578181015183820152602001610be9565b50600083858161123157fe5b049594505050505056fe42455032303a206865792c2077686f20697320746865206f776e6572206f6620746865736520427363446f67653fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4942455032303a206865792c20796f7520646f6e2774206861766520736f206d616e7920427363446f67652e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737342455032303a206174207468697320706f696e742049206861766520746f2061736b2c2061726520796f752061207265616c20427363446f6765723f42455032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636542455032303a206865792c20646f20796f75206576656e2063727970746f2062726f3fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef42455032303a2061736b20796f757220667269656e647320746f2073656e6420736f6d6520427363446f676520746f20796f752066697273742142455032303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42455032303a206865792c2077686f20646f20796f75207468696e6b20796f75206172652073656e64696e6720746865736520427363446f676520746f3fa265627a7a723158209b145c1a61180feeab7a8398a6ce4fa34deb3973b0f0970faa1b7efb906a37fa64736f6c63430005100032
Deployed Bytecode Sourcemap
12085:8227:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20293:8;;;13267:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13267:79:0;;;:::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;13267:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14114:142;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14114:142:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14114:142:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16638:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16638:105:0;;;:::i;13404:87::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13404:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;14707:292;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14707:292:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14707:292:0;;;;;;;;;;;;;;;;;:::i;12995:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12995:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15523:196;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15523:196:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15523:196:0;;;;;;;;:::i;13659:137::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13659:137:0;;;:::i;13545:106::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13545:106:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13545:106:0;-1:-1:-1;;;;;13545:106:0;;:::i;11385:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11385:130:0;;;:::i;:::-;;12857:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12857:79:0;;;:::i;:::-;;;;-1:-1:-1;;;;;12857:79:0;;;;;;;;;;;;;;10783:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10783:73:0;;;:::i;13131:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13131:83:0;;;:::i;16191:247::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16191:247:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16191:247:0;;;;;;;;:::i;15005:136::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15005:136:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15005:136:0;;;;;;;;:::i;12714:83::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12714:83:0;;;:::i;13852:130::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13852:130:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13852:130:0;;;;;;;;;;:::i;11660:103::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11660:103:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11660:103:0;-1:-1:-1;;;;;11660:103:0;;:::i;13267:79::-;13335:5;13328:12;;;;;;;;-1:-1:-1;;13328:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13306:13;;13328:12;;13335:5;;13328:12;;13335:5;13328:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13267:79;:::o;14114:142::-;14182:4;14195:37;14204:10;14216:7;14225:6;14195:8;:37::i;:::-;-1:-1:-1;14246:4:0;14114:142;;;;:::o;16638:105::-;16670:4;16683:36;16689:10;16701:17;:15;:17::i;:::-;16683:5;:36::i;:::-;-1:-1:-1;16733:4:0;16638:105;:::o;13404:87::-;13473:12;;13404:87;:::o;14707:292::-;14798:4;14811:40;14825:6;14833:9;14844:6;14811:13;:40::i;:::-;14858:117;14867:6;14875:10;14887:87;14923:6;14887:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14887:19:0;;;;;;:11;:19;;;;;;;;14907:10;14887:31;;;;;;;;;:87;;:35;:87;:::i;:::-;14858:8;:117::i;:::-;-1:-1:-1;14989:4:0;14707:292;;;;;:::o;12995:79::-;13059:9;;;;12995:79;:::o;15523:196::-;15625:10;15603:4;15646:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;15646:32:0;;;;;;;;;;15603:4;;15616:79;;15637:7;;15646:48;;15683:10;15646:48;:36;:48;:::i;13659:137::-;13707:7;13780:10;;13765:12;;13752:10;;:25;13731:17;:47;13730:60;;;;;;13723:67;;13659:137;:::o;13545:106::-;-1:-1:-1;;;;;13627:18:0;13604:7;13627:18;;;:9;:18;;;;;;;13545:106::o;11385:130::-;10987:12;:10;:12::i;:::-;10977:6;;-1:-1:-1;;;;;10977:6:0;;;:22;;;10969:67;;;;;-1:-1:-1;;;10969:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11480:1;11464:6;;11443:40;;-1:-1:-1;;;;;11464:6:0;;;;11443:40;;11480:1;;11443:40;11507:1;11490:19;;-1:-1:-1;;;;;;11490:19:0;;;11385:130::o;12857:79::-;12900:7;12923;:5;:7::i;:::-;12916:14;;12857:79;:::o;10783:73::-;10821:7;10844:6;-1:-1:-1;;;;;10844:6:0;10783:73;:::o;13131:83::-;13201:7;13194:14;;;;;;;;-1:-1:-1;;13194:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13172:13;;13194:14;;13201:7;;13194:14;;13201:7;13194:14;;;;;;;;;;;;;;;;;;;;;;;;16191:247;16276:4;16289:125;16298:10;16310:7;16319:94;16356:15;16319:94;;;;;;;;;;;;;;;;;16331:10;16319:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;16319:32:0;;;;;;;;;;;:94;;:36;:94;:::i;15005:136::-;15076:4;15089:28;15099:9;15110:6;15089:9;:28::i;12714:83::-;12781:10;;12714:83;:::o;13852:130::-;-1:-1:-1;;;;;13949:18:0;;;13926:7;13949:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13852:130::o;11660:103::-;10987:12;:10;:12::i;:::-;10977:6;;-1:-1:-1;;;;;10977:6:0;;;:22;;;10969:67;;;;;-1:-1:-1;;;10969:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11729:28;11748:8;11729:18;:28::i;:::-;11660:103;:::o;19916:335::-;-1:-1:-1;;;;;20006:19:0;;19998:92;;;;-1:-1:-1;;;19998:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20105:21:0;;20097:59;;;;;-1:-1:-1;;;20097:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20165:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20213:32;;;;;;;;;;;;;;;;;19916:335;;;:::o;19167:331::-;-1:-1:-1;;;;;19239:21:0;;19231:69;;;;-1:-1:-1;;;19231:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19315:18:0;;;;;;:9;:18;;;;;;:23;19307:32;;;;;;19361:12;;:24;;19378:6;19361:24;:16;:24;:::i;:::-;19346:12;:39;-1:-1:-1;;;;;19413:18:0;;;;;;:9;:18;;;;;;:30;;19436:6;19413:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;19392:18:0;;;;;;:9;:18;;;;;;;;:51;;;;19455:37;;;;;;;19392:18;;;;-1:-1:-1;;;;;;;;;;;19455:37:0;;;;;;;;;19167:331;;:::o;17203:494::-;-1:-1:-1;;;;;17301:20:0;;17293:79;;;;-1:-1:-1;;;17293:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17387:23:0;;17379:98;;;;-1:-1:-1;;;17379:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17506:76;17528:6;17506:76;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17506:17:0;;;;;;:9;:17;;;;;;;:76;;:21;:76;:::i;:::-;-1:-1:-1;;;;;17486:17:0;;;;;;;:9;:17;;;;;;:96;;;;17612:20;;;;;;;:32;;17637:6;17612:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;17589:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;17656:35;;;;;;;17589:20;;17656:35;;;;-1:-1:-1;;;;;;;;;;;17656:35:0;;;;;;;;17203:494;;;:::o;6439:178::-;6525:7;6557:12;6549:6;;;;6541:29;;;;-1:-1:-1;;;6541: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;6541:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6589:5:0;;;6439:178::o;5612:167::-;5670:7;5698:5;;;5718:6;;;;5710:46;;;;;-1:-1:-1;;;5710:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5772:1;5612:167;-1:-1:-1;;;5612:167:0:o;4478:92::-;4554:10;4478:92;:::o;17705:1201::-;-1:-1:-1;;;;;17783:23:0;;17775:98;;;;-1:-1:-1;;;17775:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17898:10;17888:21;;;;:9;:21;;;;;;17880:97;;;;-1:-1:-1;;;17880:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18013:42;;;18030:10;18013:42;;;;;;;;;;;;;;;;-1:-1:-1;;18013:42:0;;;;;18051:3;18013:42;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18013:42:0;;;;;;;18003:53;;;;;-1:-1:-1;;17998:66:0;;18062:1;17998:63;:66::i;:::-;18112:49;;;18129:10;18112:49;;;;;;;;;;;;;;;;-1:-1:-1;;18112:49:0;;;;;;;;;;;18157:3;18112:49;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18112::0;;;;;;;18102:60;;;;;17986:78;;-1:-1:-1;;;18097:73:0;;18168:1;18097:70;:73::i;:::-;18071:99;;18188:1;18181:4;:8;18177:478;;;18224:80;18250:6;18224:80;;;;;;;;;;;;;;;;;18234:10;18224:21;;;;:9;:21;;;;;;;:80;;:25;:80;:::i;:::-;18210:10;18200:21;;;;:9;:21;;;;;;:104;;;;-1:-1:-1;;;;;18336:20:0;;;;;;:32;;18361:6;18336:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;18313:20:0;;;;;;:9;:20;;;;;;;;;:55;;;;18382:39;;;;;;;18313:20;;18391:10;;-1:-1:-1;;;;;;;;;;;18382:39:0;;;;;;;;;18177:478;;;18473:40;18499:13;:6;18510:1;18499:13;:10;:13;:::i;:::-;18483:10;18473:21;;;;:9;:21;;;;;;;:40;:25;:40;:::i;:::-;18459:10;18449:21;;;;:9;:21;;;;;:64;18546:40;18572:13;:6;18583:1;18572:13;:10;:13;:::i;:::-;18546:21;;;:9;:21;;-1:-1:-1;;;;;;;;;;;18546:21:0;;:40;:25;:40;:::i;:::-;18522:21;;;;:9;:21;;-1:-1:-1;;;;;;;;;;;18522:64:0;;;;18609:10;-1:-1:-1;;;;;;;;;;;18633:13:0;:6;18644:1;18633:13;:10;:13;:::i;:::-;18600:47;;;;;;;;;;;;;;;18177:478;18686:1;18665:18;:22;18661:240;;;18714:9;:21;;-1:-1:-1;;;;;;;;;;;18714:21:0;18778:10;18698:13;18768:21;;;18714;18768;;;:35;;18714:21;18768:35;:25;:35;:::i;:::-;18754:10;18744:21;;;;:9;:21;;;;;;;;:59;;;;18812:21;;;-1:-1:-1;;;;;;;;;;;18812:25:0;;;18851:42;;;;;;;18754:10;;18744:21;;-1:-1:-1;;;;;;;;;;;18851:42:0;;;;;;;;;18661:240;;17705:1201;;;;:::o;11861:215::-;-1:-1:-1;;;;;11931:22:0;;11923:73;;;;-1:-1:-1;;;11923:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12029:6;;;12008:38;;-1:-1:-1;;;;;12008:38:0;;;;12029:6;;;12008:38;;;12053:6;:17;;-1:-1:-1;;;;;;12053:17:0;-1:-1:-1;;;;;12053:17:0;;;;;;;;;;11861:215::o;9069:124::-;9127:7;9150:37;9154:1;9157;9150:37;;;;;;;;;;;;;;;;;:3;:37::i;7723:126::-;7781:7;7804:39;7808:1;7811;7804:39;;;;;;;;;;;;;;;;;:3;:39::i;6034:130::-;6092:7;6115:43;6119:1;6122;6115:43;;;;;;;;;;;;;;;;;:3;:43::i;9646:156::-;9732:7;9764:12;9756:6;9748:29;;;;-1:-1:-1;;;9748:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9748:29:0;;9795:1;9791;:5;;;;;;;9646:156;-1:-1:-1;;;;9646:156:0:o;8313:323::-;8399:7;8493:12;8486:5;8478:28;;;;-1:-1:-1;;;8478:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;8478:28:0;;8513:9;8529:1;8525;:5;;;;;;;8313:323;-1:-1:-1;;;;;8313:323:0:o
Swarm Source
bzzr://9b145c1a61180feeab7a8398a6ce4fa34deb3973b0f0970faa1b7efb906a37fa
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.