Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
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 = 35_000_000_000 * (10 ** _decimals); uint256 public constant marketingandPartnershipsReserve = 35_000_000_000 * (10 ** _decimals); uint256 public constant stakingReserve = 21_000_000_000 * (10 ** _decimals); uint256 public constant liquiditiyReserve = 14_000_000_000 * (10 ** _decimals); uint256 public constant treasuryReserve = 35_000_000_000 * (10 ** _decimals); /** * @dev Contract constructor. */ constructor() { _name = 'OppaCoin'; _symbol = 'OPPA'; _mint(0xE410bfa1bf1767886d7f9c344a9D02231868417e, presaleReserve); _mint(0x6D8fF5e0b401f22F4A54ac4681335362A15314dE, marketingandPartnershipsReserve); _mint(0xF4f77fDb706F68c467C414114Ec3587ef092Db73, stakingReserve); _mint(0x9EA9d11C08a56C6fFE4165fd63CF7DA322Def4b7, liquiditiyReserve); _mint(0xA16155d5c48010213D8491d878b422A241cAeE2a, treasuryReserve); } /** * @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
Contract ABI
API[{"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":"liquiditiyReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingandPartnershipsReserve","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":"treasuryReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5062000032620000266200023760201b60201c565b6200023f60201b60201c565b6040518060400160405280600881526020017f4f707061436f696e000000000000000000000000000000000000000000000000815250600490805190602001906200007f92919062000455565b506040518060400160405280600481526020017f4f5050410000000000000000000000000000000000000000000000000000000081525060059080519060200190620000cd92919062000455565b506200011573e410bfa1bf1767886d7f9c344a9d02231868417e6012600a620000f791906200069f565b640826299e00620001099190620006f0565b6200030360201b60201c565b6200015c736d8ff5e0b401f22f4a54ac4681335362a15314de6012600a6200013e91906200069f565b640826299e00620001509190620006f0565b6200030360201b60201c565b620001a373f4f77fdb706f68c467c414114ec3587ef092db736012600a6200018591906200069f565b6404e3b29200620001979190620006f0565b6200030360201b60201c565b620001ea739ea9d11c08a56c6ffe4165fd63cf7da322def4b76012600a620001cc91906200069f565b640342770c00620001de9190620006f0565b6200030360201b60201c565b6200023173a16155d5c48010213d8491d878b422a241caee2a6012600a6200021391906200069f565b640826299e00620002259190620006f0565b6200030360201b60201c565b620008c4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000376576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036d90620007b2565b60405180910390fd5b80600360008282546200038a9190620007d4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003e29190620007d4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000449919062000842565b60405180910390a35050565b82805462000463906200088e565b90600052602060002090601f016020900481019282620004875760008555620004d3565b82601f10620004a257805160ff1916838001178555620004d3565b82800160010185558215620004d3579182015b82811115620004d2578251825591602001919060010190620004b5565b5b509050620004e29190620004e6565b5090565b5b8082111562000501576000816000905550600101620004e7565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000593578086048111156200056b576200056a62000505565b5b60018516156200057b5780820291505b80810290506200058b8562000534565b94506200054b565b94509492505050565b600082620005ae576001905062000681565b81620005be576000905062000681565b8160018114620005d75760028114620005e25762000618565b600191505062000681565b60ff841115620005f757620005f662000505565b5b8360020a91508482111562000611576200061062000505565b5b5062000681565b5060208310610133831016604e8410600b8410161715620006525782820a9050838111156200064c576200064b62000505565b5b62000681565b62000661848484600162000541565b925090508184048111156200067b576200067a62000505565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006ac8262000688565b9150620006b98362000692565b9250620006e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200059c565b905092915050565b6000620006fd8262000688565b91506200070a8362000688565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000746576200074562000505565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200079a601f8362000751565b9150620007a78262000762565b602082019050919050565b60006020820190508181036000830152620007cd816200078b565b9050919050565b6000620007e18262000688565b9150620007ee8362000688565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000826576200082562000505565b5b828201905092915050565b6200083c8162000688565b82525050565b600060208201905062000859600083018462000831565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a757607f821691505b60208210811415620008be57620008bd6200085f565b5b50919050565b611eb880620008d46000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806359297dbf116100ad578063a457c2d711610071578063a457c2d714610325578063a9059cbb14610355578063b61d43b114610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b806359297dbf1461029157806370a08231146102af578063715018a6146102df5780638da5cb5b146102e957806395d89b41146103075761012c565b806323b872dd116100f457806323b872dd146101d9578063313ce56714610209578063395093511461022757806342966c68146102575780634fe16b0d146102735761012c565b806306fdde0314610131578063095ea7b31461014f5780630c900e901461017f578063160f3e6a1461019d57806318160ddd146101bb575b600080fd5b6101396103ef565b604051610146919061125b565b60405180910390f35b61016960048036038101906101649190611316565b610481565b6040516101769190611371565b60405180910390f35b61018761049f565b604051610194919061139b565b60405180910390f35b6101a56104c0565b6040516101b2919061139b565b60405180910390f35b6101c36104e1565b6040516101d0919061139b565b60405180910390f35b6101f360048036038101906101ee91906113b6565b6104eb565b6040516102009190611371565b60405180910390f35b6102116105e3565b60405161021e9190611425565b60405180910390f35b610241600480360381019061023c9190611316565b6105ec565b60405161024e9190611371565b60405180910390f35b610271600480360381019061026c9190611440565b610698565b005b61027b6106ac565b604051610288919061139b565b60405180910390f35b6102996106cd565b6040516102a6919061139b565b60405180910390f35b6102c960048036038101906102c4919061146d565b6106ee565b6040516102d6919061139b565b60405180910390f35b6102e7610737565b005b6102f161074b565b6040516102fe91906114a9565b60405180910390f35b61030f610774565b60405161031c919061125b565b60405180910390f35b61033f600480360381019061033a9190611316565b610806565b60405161034c9190611371565b60405180910390f35b61036f600480360381019061036a9190611316565b6108f1565b60405161037c9190611371565b60405180910390f35b61038d61090f565b60405161039a919061139b565b60405180910390f35b6103bd60048036038101906103b891906114c4565b610930565b6040516103ca919061139b565b60405180910390f35b6103ed60048036038101906103e8919061146d565b6109b7565b005b6060600480546103fe90611533565b80601f016020809104026020016040519081016040528092919081815260200182805461042a90611533565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a3b565b8484610a43565b6001905092915050565b6012600a6104ad91906116c7565b640826299e006104bd9190611712565b81565b6012600a6104ce91906116c7565b640342770c006104de9190611712565b81565b6000600354905090565b60006104f8848484610c0e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610543610a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906117de565b60405180910390fd5b6105d7856105cf610a3b565b858403610a43565b60019150509392505050565b60006012905090565b600061068e6105f9610a3b565b848460026000610607610a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461068991906117fe565b610a43565b6001905092915050565b6106a96106a3610a3b565b82610ebf565b50565b6012600a6106ba91906116c7565b640826299e006106ca9190611712565b81565b6012600a6106db91906116c7565b640826299e006106eb9190611712565b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073f611080565b61074960006110fe565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461078390611533565b80601f01602080910402602001604051908101604052809291908181526020018280546107af90611533565b80156107fc5780601f106107d1576101008083540402835291602001916107fc565b820191906000526020600020905b8154815290600101906020018083116107df57829003601f168201915b5050505050905090565b60008060026000610815610a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c9906118c6565b60405180910390fd5b6108e66108dd610a3b565b85858403610a43565b600191505092915050565b60006109056108fe610a3b565b8484610c0e565b6001905092915050565b6012600a61091d91906116c7565b6404e3b2920061092d9190611712565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bf611080565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690611958565b60405180910390fd5b610a38816110fe565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa906119ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90611a7c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c01919061139b565b60405180910390a3505050565b60008111610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611ae8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890611b7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c0c565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611c9e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4d91906117fe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb1919061139b565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611d30565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90611dc2565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461100e9190611de2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611073919061139b565b60405180910390a3505050565b611088610a3b565b73ffffffffffffffffffffffffffffffffffffffff166110a661074b565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611e62565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111fc5780820151818401526020810190506111e1565b8381111561120b576000848401525b50505050565b6000601f19601f8301169050919050565b600061122d826111c2565b61123781856111cd565b93506112478185602086016111de565b61125081611211565b840191505092915050565b600060208201905081810360008301526112758184611222565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ad82611282565b9050919050565b6112bd816112a2565b81146112c857600080fd5b50565b6000813590506112da816112b4565b92915050565b6000819050919050565b6112f3816112e0565b81146112fe57600080fd5b50565b600081359050611310816112ea565b92915050565b6000806040838503121561132d5761132c61127d565b5b600061133b858286016112cb565b925050602061134c85828601611301565b9150509250929050565b60008115159050919050565b61136b81611356565b82525050565b60006020820190506113866000830184611362565b92915050565b611395816112e0565b82525050565b60006020820190506113b0600083018461138c565b92915050565b6000806000606084860312156113cf576113ce61127d565b5b60006113dd868287016112cb565b93505060206113ee868287016112cb565b92505060406113ff86828701611301565b9150509250925092565b600060ff82169050919050565b61141f81611409565b82525050565b600060208201905061143a6000830184611416565b92915050565b6000602082840312156114565761145561127d565b5b600061146484828501611301565b91505092915050565b6000602082840312156114835761148261127d565b5b6000611491848285016112cb565b91505092915050565b6114a3816112a2565b82525050565b60006020820190506114be600083018461149a565b92915050565b600080604083850312156114db576114da61127d565b5b60006114e9858286016112cb565b92505060206114fa858286016112cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154b57607f821691505b6020821081141561155f5761155e611504565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115eb578086048111156115c7576115c6611565565b5b60018516156115d65780820291505b80810290506115e485611594565b94506115ab565b94509492505050565b60008261160457600190506116c0565b8161161257600090506116c0565b8160018114611628576002811461163257611661565b60019150506116c0565b60ff84111561164457611643611565565b5b8360020a91508482111561165b5761165a611565565b5b506116c0565b5060208310610133831016604e8410600b84101617156116965782820a90508381111561169157611690611565565b5b6116c0565b6116a384848460016115a1565b925090508184048111156116ba576116b9611565565b5b81810290505b9392505050565b60006116d2826112e0565b91506116dd83611409565b925061170a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115f4565b905092915050565b600061171d826112e0565b9150611728836112e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561176157611760611565565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117c86028836111cd565b91506117d38261176c565b604082019050919050565b600060208201905081810360008301526117f7816117bb565b9050919050565b6000611809826112e0565b9150611814836112e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184957611848611565565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118b06025836111cd565b91506118bb82611854565b604082019050919050565b600060208201905081810360008301526118df816118a3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119426026836111cd565b915061194d826118e6565b604082019050919050565b6000602082019050818103600083015261197181611935565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d46024836111cd565b91506119df82611978565b604082019050919050565b60006020820190508181036000830152611a03816119c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a666022836111cd565b9150611a7182611a0a565b604082019050919050565b60006020820190508181036000830152611a9581611a59565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ad2601b836111cd565b9150611add82611a9c565b602082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b646025836111cd565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf66023836111cd565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c886026836111cd565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a6021836111cd565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dac6022836111cd565b9150611db782611d50565b604082019050919050565b60006020820190508181036000830152611ddb81611d9f565b9050919050565b6000611ded826112e0565b9150611df8836112e0565b925082821015611e0b57611e0a611565565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e4c6020836111cd565b9150611e5782611e16565b602082019050919050565b60006020820190508181036000830152611e7b81611e3f565b905091905056fea26469706673582212203c92b91238e432fc22bfa2e8cc7702b6973a5e38e8b86d9fad96bb43de596d7964736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806359297dbf116100ad578063a457c2d711610071578063a457c2d714610325578063a9059cbb14610355578063b61d43b114610385578063dd62ed3e146103a3578063f2fde38b146103d35761012c565b806359297dbf1461029157806370a08231146102af578063715018a6146102df5780638da5cb5b146102e957806395d89b41146103075761012c565b806323b872dd116100f457806323b872dd146101d9578063313ce56714610209578063395093511461022757806342966c68146102575780634fe16b0d146102735761012c565b806306fdde0314610131578063095ea7b31461014f5780630c900e901461017f578063160f3e6a1461019d57806318160ddd146101bb575b600080fd5b6101396103ef565b604051610146919061125b565b60405180910390f35b61016960048036038101906101649190611316565b610481565b6040516101769190611371565b60405180910390f35b61018761049f565b604051610194919061139b565b60405180910390f35b6101a56104c0565b6040516101b2919061139b565b60405180910390f35b6101c36104e1565b6040516101d0919061139b565b60405180910390f35b6101f360048036038101906101ee91906113b6565b6104eb565b6040516102009190611371565b60405180910390f35b6102116105e3565b60405161021e9190611425565b60405180910390f35b610241600480360381019061023c9190611316565b6105ec565b60405161024e9190611371565b60405180910390f35b610271600480360381019061026c9190611440565b610698565b005b61027b6106ac565b604051610288919061139b565b60405180910390f35b6102996106cd565b6040516102a6919061139b565b60405180910390f35b6102c960048036038101906102c4919061146d565b6106ee565b6040516102d6919061139b565b60405180910390f35b6102e7610737565b005b6102f161074b565b6040516102fe91906114a9565b60405180910390f35b61030f610774565b60405161031c919061125b565b60405180910390f35b61033f600480360381019061033a9190611316565b610806565b60405161034c9190611371565b60405180910390f35b61036f600480360381019061036a9190611316565b6108f1565b60405161037c9190611371565b60405180910390f35b61038d61090f565b60405161039a919061139b565b60405180910390f35b6103bd60048036038101906103b891906114c4565b610930565b6040516103ca919061139b565b60405180910390f35b6103ed60048036038101906103e8919061146d565b6109b7565b005b6060600480546103fe90611533565b80601f016020809104026020016040519081016040528092919081815260200182805461042a90611533565b80156104775780601f1061044c57610100808354040283529160200191610477565b820191906000526020600020905b81548152906001019060200180831161045a57829003601f168201915b5050505050905090565b600061049561048e610a3b565b8484610a43565b6001905092915050565b6012600a6104ad91906116c7565b640826299e006104bd9190611712565b81565b6012600a6104ce91906116c7565b640342770c006104de9190611712565b81565b6000600354905090565b60006104f8848484610c0e565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610543610a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906117de565b60405180910390fd5b6105d7856105cf610a3b565b858403610a43565b60019150509392505050565b60006012905090565b600061068e6105f9610a3b565b848460026000610607610a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461068991906117fe565b610a43565b6001905092915050565b6106a96106a3610a3b565b82610ebf565b50565b6012600a6106ba91906116c7565b640826299e006106ca9190611712565b81565b6012600a6106db91906116c7565b640826299e006106eb9190611712565b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073f611080565b61074960006110fe565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461078390611533565b80601f01602080910402602001604051908101604052809291908181526020018280546107af90611533565b80156107fc5780601f106107d1576101008083540402835291602001916107fc565b820191906000526020600020905b8154815290600101906020018083116107df57829003601f168201915b5050505050905090565b60008060026000610815610a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c9906118c6565b60405180910390fd5b6108e66108dd610a3b565b85858403610a43565b600191505092915050565b60006109056108fe610a3b565b8484610c0e565b6001905092915050565b6012600a61091d91906116c7565b6404e3b2920061092d9190611712565b81565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109bf611080565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690611958565b60405180910390fd5b610a38816110fe565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaa906119ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a90611a7c565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c01919061139b565b60405180910390a3505050565b60008111610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611ae8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890611b7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2890611c0c565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611c9e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e4d91906117fe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610eb1919061139b565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2690611d30565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90611dc2565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461100e9190611de2565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611073919061139b565b60405180910390a3505050565b611088610a3b565b73ffffffffffffffffffffffffffffffffffffffff166110a661074b565b73ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611e62565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111fc5780820151818401526020810190506111e1565b8381111561120b576000848401525b50505050565b6000601f19601f8301169050919050565b600061122d826111c2565b61123781856111cd565b93506112478185602086016111de565b61125081611211565b840191505092915050565b600060208201905081810360008301526112758184611222565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112ad82611282565b9050919050565b6112bd816112a2565b81146112c857600080fd5b50565b6000813590506112da816112b4565b92915050565b6000819050919050565b6112f3816112e0565b81146112fe57600080fd5b50565b600081359050611310816112ea565b92915050565b6000806040838503121561132d5761132c61127d565b5b600061133b858286016112cb565b925050602061134c85828601611301565b9150509250929050565b60008115159050919050565b61136b81611356565b82525050565b60006020820190506113866000830184611362565b92915050565b611395816112e0565b82525050565b60006020820190506113b0600083018461138c565b92915050565b6000806000606084860312156113cf576113ce61127d565b5b60006113dd868287016112cb565b93505060206113ee868287016112cb565b92505060406113ff86828701611301565b9150509250925092565b600060ff82169050919050565b61141f81611409565b82525050565b600060208201905061143a6000830184611416565b92915050565b6000602082840312156114565761145561127d565b5b600061146484828501611301565b91505092915050565b6000602082840312156114835761148261127d565b5b6000611491848285016112cb565b91505092915050565b6114a3816112a2565b82525050565b60006020820190506114be600083018461149a565b92915050565b600080604083850312156114db576114da61127d565b5b60006114e9858286016112cb565b92505060206114fa858286016112cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061154b57607f821691505b6020821081141561155f5761155e611504565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156115eb578086048111156115c7576115c6611565565b5b60018516156115d65780820291505b80810290506115e485611594565b94506115ab565b94509492505050565b60008261160457600190506116c0565b8161161257600090506116c0565b8160018114611628576002811461163257611661565b60019150506116c0565b60ff84111561164457611643611565565b5b8360020a91508482111561165b5761165a611565565b5b506116c0565b5060208310610133831016604e8410600b84101617156116965782820a90508381111561169157611690611565565b5b6116c0565b6116a384848460016115a1565b925090508184048111156116ba576116b9611565565b5b81810290505b9392505050565b60006116d2826112e0565b91506116dd83611409565b925061170a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846115f4565b905092915050565b600061171d826112e0565b9150611728836112e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561176157611760611565565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006117c86028836111cd565b91506117d38261176c565b604082019050919050565b600060208201905081810360008301526117f7816117bb565b9050919050565b6000611809826112e0565b9150611814836112e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184957611848611565565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118b06025836111cd565b91506118bb82611854565b604082019050919050565b600060208201905081810360008301526118df816118a3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119426026836111cd565b915061194d826118e6565b604082019050919050565b6000602082019050818103600083015261197181611935565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d46024836111cd565b91506119df82611978565b604082019050919050565b60006020820190508181036000830152611a03816119c7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a666022836111cd565b9150611a7182611a0a565b604082019050919050565b60006020820190508181036000830152611a9581611a59565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611ad2601b836111cd565b9150611add82611a9c565b602082019050919050565b60006020820190508181036000830152611b0181611ac5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b646025836111cd565b9150611b6f82611b08565b604082019050919050565b60006020820190508181036000830152611b9381611b57565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611bf66023836111cd565b9150611c0182611b9a565b604082019050919050565b60006020820190508181036000830152611c2581611be9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c886026836111cd565b9150611c9382611c2c565b604082019050919050565b60006020820190508181036000830152611cb781611c7b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1a6021836111cd565b9150611d2582611cbe565b604082019050919050565b60006020820190508181036000830152611d4981611d0d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dac6022836111cd565b9150611db782611d50565b604082019050919050565b60006020820190508181036000830152611ddb81611d9f565b9050919050565b6000611ded826112e0565b9150611df8836112e0565b925082821015611e0b57611e0a611565565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e4c6020836111cd565b9150611e5782611e16565b602082019050919050565b60006020820190508181036000830152611e7b81611e3f565b905091905056fea26469706673582212203c92b91238e432fc22bfa2e8cc7702b6973a5e38e8b86d9fad96bb43de596d7964736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.