Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20543888 | 84 days ago | 0.582437 ETH |
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.9; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @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 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; } } /** * @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); } } contract Token is Context, IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private constant _decimals = 18; uint256 public constant presaleReserve = 8_413_939_394 * (10 ** _decimals); uint256 public constant stakingReserve = 10_517_424_242 * (10 ** _decimals); uint256 public constant marketingReserve = 8_413_939_394 * (10 ** _decimals); uint256 public constant liquidityReserve = 4_206_969_697 * (10 ** _decimals); uint256 public constant warChestReserve = 10_517_424_242 * (10 ** _decimals); /** * @dev Contract constructor. */ constructor() { _name = 'STARS'; _symbol = 'STARS'; _mint(0xD49c8f0DD249FEB53ba30e9ebCf1ED4fC8DA5F49, presaleReserve); _mint(0xfdFba43d4CF8D6467eB4A85a78761E85B26E4e86, stakingReserve); _mint(0xd2535339f45f33A5640A1d097E68D22F6216F974, marketingReserve); _mint(0x99149438F69f61Ef5C74ea765E88D0A782675D8D, liquidityReserve); _mint(0xf33D5166f430412c05c8d1EB489E4BE17Ff9CAC4, warChestReserve); } /** * @dev Returns the name of the token. * @return The name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token. * @return The symbol of the token. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used for token display. * @return The number of decimals. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the total supply of the token. * @return The total supply. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the balance of the specified account. * @param account The address to check the balance for. * @return The balance of the account. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Transfers tokens from the caller to a specified recipient. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner. * @param from The address that approves the spending. * @param to The address that is allowed to spend. * @return The remaining allowance for the spender. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller. * @param to The address to approve the spending for. * @param amount The amount of tokens to approve. * @return A boolean value indicating whether the approval was successful. */ function approve(address to, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), to, amount); return true; } /** * @dev Transfers tokens from one address to another. * @param sender The address to transfer tokens from. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ 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'); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller. * @param to The address to increase the allowance for. * @param addedValue The amount of tokens to increase the allowance by. * @return A boolean value indicating whether the increase was successful. */ function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue); return true; } /** * @dev Decreases the allowance granted by the owner of the tokens to `to` account. * @param to The account allowed to spend the tokens. * @param subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean value indicating whether the operation succeeded. */ function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][to]; require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero'); unchecked { _approve(_msgSender(), to, currentAllowance - subtractedValue); } return true; } /** * @dev Transfers `amount` tokens from `sender` to `recipient`. * @param sender The account to transfer tokens from. * @param recipient The account to transfer tokens to. * @param amount The amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(amount > 0, 'ERC20: transfer amount zero'); require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance'); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** * @dev Creates `amount` tokens and assigns them to `account`. * @param account The account to assign the newly created tokens to. * @param amount The amount of tokens to create. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * @param account The account to burn tokens from. * @param amount The amount of tokens to burn. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: burn from the zero address'); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, 'ERC20: burn amount exceeds balance'); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Destroys `amount` tokens from the caller's account, reducing the total supply. * @param amount The amount of tokens to burn. */ function burn(uint256 amount) external { _burn(_msgSender(), amount); } /** * @dev Sets `amount` as the allowance of `to` over the caller's tokens. * @param from The account granting the allowance. * @param to The account allowed to spend the tokens. * @param amount The amount of tokens to allow. */ function _approve(address from, address to, uint256 amount) internal virtual { require(from != address(0), 'ERC20: approve from the zero address'); require(to != address(0), 'ERC20: approve to the zero address'); _allowances[from][to] = amount; emit Approval(from, to, amount); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[],"name":"warChestReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5062000032620000266200023660201b60201c565b6200023e60201b60201c565b6040518060400160405280600581526020017f5354415253000000000000000000000000000000000000000000000000000000815250600490805190602001906200007f92919062000454565b506040518060400160405280600581526020017f535441525300000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd92919062000454565b506200011573d49c8f0dd249feb53ba30e9ebcf1ed4fc8da5f496012600a620000f791906200069e565b6401f58286c2620001099190620006ef565b6200030260201b60201c565b6200015c73fdfba43d4cf8d6467eb4a85a78761e85b26e4e866012600a6200013e91906200069e565b640272e32872620001509190620006ef565b6200030260201b60201c565b620001a373d2535339f45f33a5640a1d097e68d22f6216f9746012600a6200018591906200069e565b6401f58286c2620001979190620006ef565b6200030260201b60201c565b620001e97399149438f69f61ef5c74ea765e88d0a782675d8d6012600a620001cc91906200069e565b63fac14361620001dd9190620006ef565b6200030260201b60201c565b6200023073f33d5166f430412c05c8d1eb489e4be17ff9cac46012600a6200021291906200069e565b640272e32872620002249190620006ef565b6200030260201b60201c565b620008c3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000375576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036c90620007b1565b60405180910390fd5b8060036000828254620003899190620007d3565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003e19190620007d3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000448919062000841565b60405180910390a35050565b82805462000462906200088d565b90600052602060002090601f016020900481019282620004865760008555620004d2565b82601f10620004a157805160ff1916838001178555620004d2565b82800160010185558215620004d2579182015b82811115620004d1578251825591602001919060010190620004b4565b5b509050620004e19190620004e5565b5090565b5b8082111562000500576000816000905550600101620004e6565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000592578086048111156200056a576200056962000504565b5b60018516156200057a5780820291505b80810290506200058a8562000533565b94506200054a565b94509492505050565b600082620005ad576001905062000680565b81620005bd576000905062000680565b8160018114620005d65760028114620005e15762000617565b600191505062000680565b60ff841115620005f657620005f562000504565b5b8360020a91508482111562000610576200060f62000504565b5b5062000680565b5060208310610133831016604e8410600b8410161715620006515782820a9050838111156200064b576200064a62000504565b5b62000680565b62000660848484600162000540565b925090508184048111156200067a576200067962000504565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006ab8262000687565b9150620006b88362000691565b9250620006e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200059b565b905092915050565b6000620006fc8262000687565b9150620007098362000687565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000745576200074462000504565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000799601f8362000750565b9150620007a68262000761565b602082019050919050565b60006020820190508181036000830152620007cc816200078a565b9050919050565b6000620007e08262000687565b9150620007ed8362000687565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000825576200082462000504565b5b828201905092915050565b6200083b8162000687565b82525050565b600060208201905062000858600083018462000830565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a657607f821691505b60208210811415620008bd57620008bc6200085e565b5b50919050565b611eb780620008d36000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610337578063b61d43b114610367578063b753bfe914610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b806370a0823114610291578063715018a6146102c15780638da5cb5b146102cb57806395d89b41146102e9578063a457c2d7146103075761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633e85713d1461023957806342966c6814610257578063638a35b6146102735761012c565b806306fdde0314610131578063095ea7b31461014f5780630c900e901461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ef565b604051610146919061125a565b60405180910390f35b61016960048036038101906101649190611315565b610481565b6040516101769190611370565b60405180910390f35b61018761049f565b604051610194919061139a565b60405180910390f35b6101a56104c0565b6040516101b2919061139a565b60405180910390f35b6101d560048036038101906101d091906113b5565b6104ca565b6040516101e29190611370565b60405180910390f35b6101f36105c2565b6040516102009190611424565b60405180910390f35b610223600480360381019061021e9190611315565b6105cb565b6040516102309190611370565b60405180910390f35b610241610677565b60405161024e919061139a565b60405180910390f35b610271600480360381019061026c919061143f565b610698565b005b61027b6106ac565b604051610288919061139a565b60405180910390f35b6102ab60048036038101906102a6919061146c565b6106cd565b6040516102b8919061139a565b60405180910390f35b6102c9610716565b005b6102d361072a565b6040516102e091906114a8565b60405180910390f35b6102f1610753565b6040516102fe919061125a565b60405180910390f35b610321600480360381019061031c9190611315565b6107e5565b60405161032e9190611370565b60405180910390f35b610351600480360381019061034c9190611315565b6108d0565b60405161035e9190611370565b60405180910390f35b61036f6108ee565b60405161037c919061139a565b60405180910390f35b61038d61090f565b60405161039a919061139a565b60405180910390f35b6103bd60048036038101906103b891906114c3565b61092f565b6040516103ca919061139a565b60405180910390f35b6103ed60048036038101906103e8919061146c565b6109b6565b005b6060600480546103fe90611532565b80601f016020809104026020016040519081016040528092919081815260200182805461042a90611532565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a3a565b8484610a42565b6001905092915050565b6012600a6104ad91906116c6565b6401f58286c26104bd9190611711565b81565b6000600354905090565b60006104d7848484610c0d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610522610a3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610599906117dd565b60405180910390fd5b6105b6856105ae610a3a565b858403610a42565b60019150509392505050565b60006012905090565b600061066d6105d8610a3a565b8484600260006105e6610a3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066891906117fd565b610a42565b6001905092915050565b6012600a61068591906116c6565b6401f58286c26106959190611711565b81565b6106a96106a3610a3a565b82610ebe565b50565b6012600a6106ba91906116c6565b640272e328726106ca9190611711565b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071e61107f565b61072860006110fd565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461076290611532565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90611532565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b600080600260006107f4610a3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a8906118c5565b60405180910390fd5b6108c56108bc610a3a565b85858403610a42565b600191505092915050565b60006108e46108dd610a3a565b8484610c0d565b6001905092915050565b6012600a6108fc91906116c6565b640272e3287261090c9190611711565b81565b6012600a61091d91906116c6565b63fac1436161092c9190611711565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109be61107f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611957565b60405180910390fd5b610a37816110fd565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa9906119e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990611a7b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c00919061139a565b60405180910390a3505050565b60008111610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790611ae7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611c0b565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611c9d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4c91906117fd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb0919061139a565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590611d2f565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611dc1565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461100d9190611de1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611072919061139a565b60405180910390a3505050565b611087610a3a565b73ffffffffffffffffffffffffffffffffffffffff166110a561072a565b73ffffffffffffffffffffffffffffffffffffffff16146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290611e61565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111fb5780820151818401526020810190506111e0565b8381111561120a576000848401525b50505050565b6000601f19601f8301169050919050565b600061122c826111c1565b61123681856111cc565b93506112468185602086016111dd565b61124f81611210565b840191505092915050565b600060208201905081810360008301526112748184611221565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ac82611281565b9050919050565b6112bc816112a1565b81146112c757600080fd5b50565b6000813590506112d9816112b3565b92915050565b6000819050919050565b6112f2816112df565b81146112fd57600080fd5b50565b60008135905061130f816112e9565b92915050565b6000806040838503121561132c5761132b61127c565b5b600061133a858286016112ca565b925050602061134b85828601611300565b9150509250929050565b60008115159050919050565b61136a81611355565b82525050565b60006020820190506113856000830184611361565b92915050565b611394816112df565b82525050565b60006020820190506113af600083018461138b565b92915050565b6000806000606084860312156113ce576113cd61127c565b5b60006113dc868287016112ca565b93505060206113ed868287016112ca565b92505060406113fe86828701611300565b9150509250925092565b600060ff82169050919050565b61141e81611408565b82525050565b60006020820190506114396000830184611415565b92915050565b6000602082840312156114555761145461127c565b5b600061146384828501611300565b91505092915050565b6000602082840312156114825761148161127c565b5b6000611490848285016112ca565b91505092915050565b6114a2816112a1565b82525050565b60006020820190506114bd6000830184611499565b92915050565b600080604083850312156114da576114d961127c565b5b60006114e8858286016112ca565b92505060206114f9858286016112ca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154a57607f821691505b6020821081141561155e5761155d611503565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115ea578086048111156115c6576115c5611564565b5b60018516156115d55780820291505b80810290506115e385611593565b94506115aa565b94509492505050565b60008261160357600190506116bf565b8161161157600090506116bf565b8160018114611627576002811461163157611660565b60019150506116bf565b60ff84111561164357611642611564565b5b8360020a91508482111561165a57611659611564565b5b506116bf565b5060208310610133831016604e8410600b84101617156116955782820a9050838111156116905761168f611564565b5b6116bf565b6116a284848460016115a0565b925090508184048111156116b9576116b8611564565b5b81810290505b9392505050565b60006116d1826112df565b91506116dc83611408565b92506117097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115f3565b905092915050565b600061171c826112df565b9150611727836112df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117605761175f611564565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117c76028836111cc565b91506117d28261176b565b604082019050919050565b600060208201905081810360008301526117f6816117ba565b9050919050565b6000611808826112df565b9150611813836112df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184857611847611564565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118af6025836111cc565b91506118ba82611853565b604082019050919050565b600060208201905081810360008301526118de816118a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119416026836111cc565b915061194c826118e5565b604082019050919050565b6000602082019050818103600083015261197081611934565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d36024836111cc565b91506119de82611977565b604082019050919050565b60006020820190508181036000830152611a02816119c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a656022836111cc565b9150611a7082611a09565b604082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ad1601b836111cc565b9150611adc82611a9b565b602082019050919050565b60006020820190508181036000830152611b0081611ac4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b636025836111cc565b9150611b6e82611b07565b604082019050919050565b60006020820190508181036000830152611b9281611b56565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf56023836111cc565b9150611c0082611b99565b604082019050919050565b60006020820190508181036000830152611c2481611be8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c876026836111cc565b9150611c9282611c2b565b604082019050919050565b60006020820190508181036000830152611cb681611c7a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d196021836111cc565b9150611d2482611cbd565b604082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dab6022836111cc565b9150611db682611d4f565b604082019050919050565b60006020820190508181036000830152611dda81611d9e565b9050919050565b6000611dec826112df565b9150611df7836112df565b925082821015611e0a57611e09611564565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e4b6020836111cc565b9150611e5682611e15565b602082019050919050565b60006020820190508181036000830152611e7a81611e3e565b905091905056fea2646970667358221220e885384321a45aa615c50c5cc743148fc23b8dd46c90002d02f59d59b40fe4b364736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb14610337578063b61d43b114610367578063b753bfe914610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b806370a0823114610291578063715018a6146102c15780638da5cb5b146102cb57806395d89b41146102e9578063a457c2d7146103075761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780633e85713d1461023957806342966c6814610257578063638a35b6146102735761012c565b806306fdde0314610131578063095ea7b31461014f5780630c900e901461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ef565b604051610146919061125a565b60405180910390f35b61016960048036038101906101649190611315565b610481565b6040516101769190611370565b60405180910390f35b61018761049f565b604051610194919061139a565b60405180910390f35b6101a56104c0565b6040516101b2919061139a565b60405180910390f35b6101d560048036038101906101d091906113b5565b6104ca565b6040516101e29190611370565b60405180910390f35b6101f36105c2565b6040516102009190611424565b60405180910390f35b610223600480360381019061021e9190611315565b6105cb565b6040516102309190611370565b60405180910390f35b610241610677565b60405161024e919061139a565b60405180910390f35b610271600480360381019061026c919061143f565b610698565b005b61027b6106ac565b604051610288919061139a565b60405180910390f35b6102ab60048036038101906102a6919061146c565b6106cd565b6040516102b8919061139a565b60405180910390f35b6102c9610716565b005b6102d361072a565b6040516102e091906114a8565b60405180910390f35b6102f1610753565b6040516102fe919061125a565b60405180910390f35b610321600480360381019061031c9190611315565b6107e5565b60405161032e9190611370565b60405180910390f35b610351600480360381019061034c9190611315565b6108d0565b60405161035e9190611370565b60405180910390f35b61036f6108ee565b60405161037c919061139a565b60405180910390f35b61038d61090f565b60405161039a919061139a565b60405180910390f35b6103bd60048036038101906103b891906114c3565b61092f565b6040516103ca919061139a565b60405180910390f35b6103ed60048036038101906103e8919061146c565b6109b6565b005b6060600480546103fe90611532565b80601f016020809104026020016040519081016040528092919081815260200182805461042a90611532565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a3a565b8484610a42565b6001905092915050565b6012600a6104ad91906116c6565b6401f58286c26104bd9190611711565b81565b6000600354905090565b60006104d7848484610c0d565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610522610a3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610599906117dd565b60405180910390fd5b6105b6856105ae610a3a565b858403610a42565b60019150509392505050565b60006012905090565b600061066d6105d8610a3a565b8484600260006105e6610a3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461066891906117fd565b610a42565b6001905092915050565b6012600a61068591906116c6565b6401f58286c26106959190611711565b81565b6106a96106a3610a3a565b82610ebe565b50565b6012600a6106ba91906116c6565b640272e328726106ca9190611711565b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61071e61107f565b61072860006110fd565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461076290611532565b80601f016020809104026020016040519081016040528092919081815260200182805461078e90611532565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b5050505050905090565b600080600260006107f4610a3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a8906118c5565b60405180910390fd5b6108c56108bc610a3a565b85858403610a42565b600191505092915050565b60006108e46108dd610a3a565b8484610c0d565b6001905092915050565b6012600a6108fc91906116c6565b640272e3287261090c9190611711565b81565b6012600a61091d91906116c6565b63fac1436161092c9190611711565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109be61107f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611957565b60405180910390fd5b610a37816110fd565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa9906119e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1990611a7b565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c00919061139a565b60405180910390a3505050565b60008111610c50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4790611ae7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611b79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611c0b565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90611c9d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4c91906117fd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb0919061139a565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590611d2f565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611dc1565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461100d9190611de1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611072919061139a565b60405180910390a3505050565b611087610a3a565b73ffffffffffffffffffffffffffffffffffffffff166110a561072a565b73ffffffffffffffffffffffffffffffffffffffff16146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290611e61565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111fb5780820151818401526020810190506111e0565b8381111561120a576000848401525b50505050565b6000601f19601f8301169050919050565b600061122c826111c1565b61123681856111cc565b93506112468185602086016111dd565b61124f81611210565b840191505092915050565b600060208201905081810360008301526112748184611221565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ac82611281565b9050919050565b6112bc816112a1565b81146112c757600080fd5b50565b6000813590506112d9816112b3565b92915050565b6000819050919050565b6112f2816112df565b81146112fd57600080fd5b50565b60008135905061130f816112e9565b92915050565b6000806040838503121561132c5761132b61127c565b5b600061133a858286016112ca565b925050602061134b85828601611300565b9150509250929050565b60008115159050919050565b61136a81611355565b82525050565b60006020820190506113856000830184611361565b92915050565b611394816112df565b82525050565b60006020820190506113af600083018461138b565b92915050565b6000806000606084860312156113ce576113cd61127c565b5b60006113dc868287016112ca565b93505060206113ed868287016112ca565b92505060406113fe86828701611300565b9150509250925092565b600060ff82169050919050565b61141e81611408565b82525050565b60006020820190506114396000830184611415565b92915050565b6000602082840312156114555761145461127c565b5b600061146384828501611300565b91505092915050565b6000602082840312156114825761148161127c565b5b6000611490848285016112ca565b91505092915050565b6114a2816112a1565b82525050565b60006020820190506114bd6000830184611499565b92915050565b600080604083850312156114da576114d961127c565b5b60006114e8858286016112ca565b92505060206114f9858286016112ca565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154a57607f821691505b6020821081141561155e5761155d611503565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115ea578086048111156115c6576115c5611564565b5b60018516156115d55780820291505b80810290506115e385611593565b94506115aa565b94509492505050565b60008261160357600190506116bf565b8161161157600090506116bf565b8160018114611627576002811461163157611660565b60019150506116bf565b60ff84111561164357611642611564565b5b8360020a91508482111561165a57611659611564565b5b506116bf565b5060208310610133831016604e8410600b84101617156116955782820a9050838111156116905761168f611564565b5b6116bf565b6116a284848460016115a0565b925090508184048111156116b9576116b8611564565b5b81810290505b9392505050565b60006116d1826112df565b91506116dc83611408565b92506117097fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115f3565b905092915050565b600061171c826112df565b9150611727836112df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156117605761175f611564565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117c76028836111cc565b91506117d28261176b565b604082019050919050565b600060208201905081810360008301526117f6816117ba565b9050919050565b6000611808826112df565b9150611813836112df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184857611847611564565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118af6025836111cc565b91506118ba82611853565b604082019050919050565b600060208201905081810360008301526118de816118a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119416026836111cc565b915061194c826118e5565b604082019050919050565b6000602082019050818103600083015261197081611934565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d36024836111cc565b91506119de82611977565b604082019050919050565b60006020820190508181036000830152611a02816119c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a656022836111cc565b9150611a7082611a09565b604082019050919050565b60006020820190508181036000830152611a9481611a58565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ad1601b836111cc565b9150611adc82611a9b565b602082019050919050565b60006020820190508181036000830152611b0081611ac4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b636025836111cc565b9150611b6e82611b07565b604082019050919050565b60006020820190508181036000830152611b9281611b56565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf56023836111cc565b9150611c0082611b99565b604082019050919050565b60006020820190508181036000830152611c2481611be8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c876026836111cc565b9150611c9282611c2b565b604082019050919050565b60006020820190508181036000830152611cb681611c7a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d196021836111cc565b9150611d2482611cbd565b604082019050919050565b60006020820190508181036000830152611d4881611d0c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dab6022836111cc565b9150611db682611d4f565b604082019050919050565b60006020820190508181036000830152611dda81611d9e565b9050919050565b6000611dec826112df565b9150611df7836112df565b925082821015611e0a57611e09611564565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e4b6020836111cc565b9150611e5682611e15565b602082019050919050565b60006020820190508181036000830152611e7a81611e3e565b905091905056fea2646970667358221220e885384321a45aa615c50c5cc743148fc23b8dd46c90002d02f59d59b40fe4b364736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.