Overview
Max Total Supply
100,000,000,000 AXL
Holders
628 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH (+0.92%)
Onchain Market Cap
$1,678,000.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
12,595,875.220578225140750902 AXLValue
$211.36 ( ~0.0616209433062159 Eth) [0.0126%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
AXLToken
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-17 */ /** *Submitted for verification at Etherscan.io on 2021-07-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** Tokenomics ** * * - Total Supply * 100,000,000,000 (== 10 ** 11) * - Total Decimal * 10 ** 18 * - Token Name & Symbol * "AXL INU", "AXL" * * - Token distribution * 25% Pre Sale * 30% Staking Rewards * 20% CEX Reserved * 2.5% Team Locked For 3 Years * 15% DEX Liquidity * 6.5% Locked Incentives * 1% Airdrop * * Top@copyright */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(block.timestamp > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } contract AXLToken is Context, IERC20, IERC20Metadata, Ownable { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; bool public mintingFinishedPermanent = false; string private _name; string private _symbol; uint8 private _decimals; address public _creator; uint256 _mintTimeStamp = block.timestamp; uint256 _deadlineTeamTimeStamp = block.timestamp + 3 * 3600 * 24 * 365; // Token distribution amount uint256 public _presaleAmount; uint256 public _stakingAmount; uint256 public _cexReseveredAmount; uint256 public _teamAmount; uint256 public _incentiveAmount; uint256 public _dexAmount; uint256 public _airdropAmount; // Token distribution address address presaleAddress; address stakingAddress; address cexReservedAddress; address teamAddress; address incentiveAddress; address dexAddress; address airdropAddress; /** * @dev Sets the values for {name}, {symbol} and {decimals}. * * * All two of these values are immutable: they can only be set once during * construction. */ constructor () { _name = "AXL INU"; _symbol = "AXL"; _decimals = 18; _totalSupply = 1 * 10**11 * 10**18; _presaleAmount = 25 * 10**9 * 10**18; _stakingAmount = 30 * 10**9 * 10**18; _cexReseveredAmount = 20 * 10**9 * 10**18; _teamAmount = 25 * 10**8 * 10**18; _incentiveAmount = 65 * 10**8 * 10**18; _dexAmount = 15 * 10**9 * 10**18; _airdropAmount = 1 * 10**9 * 10**18; // Test address // presaleAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // stakingAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // cexReservedAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // teamAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // incentiveAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // dexAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // airdropAddress = 0xaC83aa6Dc293f488035Ee15B0364548D3DD3C0c4; // Real address presaleAddress = 0xa4fDeBC21F0d5b1549bEbC1D3aa298dA15571080; stakingAddress = 0x367E4d1048dc5762E0bec77f4eDfe5048C298d5d; cexReservedAddress = 0x6d2fffad1C836e751f4bAD1aA1dc161dA7Fc3ccE; teamAddress = 0x0CBF05E9a2eAB636c3729520014C154e6a01fe1c; incentiveAddress = 0x2b7bd5E543E2F4cc9068CCFeB9972554AA591b87; dexAddress = 0x35351159Ea0af524f181716AD68635F68BB6B7e6; airdropAddress = 0x6467e7ebeE4d234288dF15461f5F9c6Ed3eA0fdE; require(_totalSupply == _presaleAmount + _stakingAmount + _cexReseveredAmount + _teamAmount + _incentiveAmount + _dexAmount + _airdropAmount, "BALCN"); _mint(_msgSender(), _totalSupply); mintingFinishedPermanent = true; // Initial Send tokens transfer(presaleAddress, _presaleAmount); transfer(stakingAddress, _stakingAmount); transfer(cexReservedAddress, _cexReseveredAmount); transfer(dexAddress, _dexAmount); transfer(incentiveAddress, _incentiveAmount); transfer(airdropAddress, _airdropAmount); } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferToTeam() public onlyOwner() { require(_deadlineTeamTimeStamp <= block.timestamp, "Token for team is locked for 3 years."); transfer(teamAddress, _teamAmount); } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(!mintingFinishedPermanent,"cant be minted anymore!"); require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); //_totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
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":[],"name":"_airdropAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_cexReseveredAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_dexAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_incentiveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_stakingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinishedPermanent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600660006101000a81548160ff02191690831515021790555042600a556305a39a804262000035919062000c26565b600b553480156200004557600080fd5b50600062000058620006cb60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506040518060400160405280600781526020017f41584c20494e5500000000000000000000000000000000000000000000000000815250600790805190602001906200014392919062000b3d565b506040518060400160405280600381526020017f41584c0000000000000000000000000000000000000000000000000000000000815250600890805190602001906200019192919062000b3d565b506012600960006101000a81548160ff021916908360ff1602179055506c01431e0fae6d7217caa00000006005819055506b50c783eb9b5c85f2a8000000600c819055506b60ef6b1aba6f072330000000600d819055506b409f9cbc7c4a04c220000000600e819055506b0813f3978f89409844000000600f819055506b1500ac8a0ecb418be40000006010819055506b3077b58d5d378391980000006011819055506b033b2e3c9fd0803ce800000060128190555073a4fdebc21f0d5b1549bebc1d3aa298da15571080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073367e4d1048dc5762e0bec77f4edfe5048c298d5d601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736d2fffad1c836e751f4bad1aa1dc161da7fc3cce601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730cbf05e9a2eab636c3729520014c154e6a01fe1c601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732b7bd5e543e2f4cc9068ccfeb9972554aa591b87601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507335351159ea0af524f181716ad68635f68bb6b7e6601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736467e7ebee4d234288df15461f5f9c6ed3ea0fde601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550601254601154601054600f54600e54600d54600c54620004bb919062000c26565b620004c7919062000c26565b620004d3919062000c26565b620004df919062000c26565b620004eb919062000c26565b620004f7919062000c26565b600554146200053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005349062000ce4565b60405180910390fd5b6200056062000551620006cb60201b60201c565b600554620006d360201b60201c565b6001600660006101000a81548160ff021916908315150217905550620005b1601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c546200087160201b60201c565b50620005e8601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600d546200087160201b60201c565b506200061f601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e546200087160201b60201c565b5062000656601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166011546200087160201b60201c565b506200068d601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166010546200087160201b60201c565b50620006c4601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166012546200087160201b60201c565b5062001080565b600033905090565b600660009054906101000a900460ff161562000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d9062000d56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000799576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007909062000dc8565b60405180910390fd5b620007ad600083836200089f60201b60201c565b80600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007fe919062000c26565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000865919062000dfb565b60405180910390a35050565b60006200089562000887620006cb60201b60201c565b8484620008a460201b60201c565b6001905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000917576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200090e9062000e8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200098a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009819062000f26565b60405180910390fd5b6200099d8383836200089f60201b60201c565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000a27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a1e9062000fbe565b60405180910390fd5b818162000a35919062000fe0565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000ac9919062000c26565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405162000b2f919062000dfb565b60405180910390a350505050565b82805462000b4b906200104a565b90600052602060002090601f01602090048101928262000b6f576000855562000bbb565b82601f1062000b8a57805160ff191683800117855562000bbb565b8280016001018555821562000bbb579182015b8281111562000bba57825182559160200191906001019062000b9d565b5b50905062000bca919062000bce565b5090565b5b8082111562000be957600081600090555060010162000bcf565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c338262000bed565b915062000c408362000bed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c785762000c7762000bf7565b5b828201905092915050565b600082825260208201905092915050565b7f42414c434e000000000000000000000000000000000000000000000000000000600082015250565b600062000ccc60058362000c83565b915062000cd98262000c94565b602082019050919050565b6000602082019050818103600083015262000cff8162000cbd565b9050919050565b7f63616e74206265206d696e74656420616e796d6f726521000000000000000000600082015250565b600062000d3e60178362000c83565b915062000d4b8262000d06565b602082019050919050565b6000602082019050818103600083015262000d718162000d2f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000db0601f8362000c83565b915062000dbd8262000d78565b602082019050919050565b6000602082019050818103600083015262000de38162000da1565b9050919050565b62000df58162000bed565b82525050565b600060208201905062000e12600083018462000dea565b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600062000e7660258362000c83565b915062000e838262000e18565b604082019050919050565b6000602082019050818103600083015262000ea98162000e67565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600062000f0e60238362000c83565b915062000f1b8262000eb0565b604082019050919050565b6000602082019050818103600083015262000f418162000eff565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600062000fa660268362000c83565b915062000fb38262000f48565b604082019050919050565b6000602082019050818103600083015262000fd98162000f97565b9050919050565b600062000fed8262000bed565b915062000ffa8362000bed565b92508282101562001010576200100f62000bf7565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200106357607f821691505b602082108114156200107a57620010796200101b565b5b50919050565b6121d180620010906000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063a69df4b5116100f9578063dd62ed3e11610097578063e7cc35b111610071578063e7cc35b1146104a0578063f2fde38b146104be578063f5eae936146104da578063fec960e9146104f8576101a9565b8063dd62ed3e14610448578063dde3b98614610478578063e2e3021114610496576101a9565b8063bc8bde64116100d3578063bc8bde64146103d2578063c67ff2a6146103f0578063cc3c42da1461040e578063dd4670641461042c576101a9565b8063a69df4b51461037a578063a9059cbb14610384578063b6c52324146103b4576101a9565b806347d6cd6b116101665780637420c40b116101405780637420c40b146102f05780638da5cb5b1461030e57806395d89b411461032c578063a457c2d71461034a576101a9565b806347d6cd6b1461029857806370a08231146102b6578063715018a6146102e6576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a578063313ce5671461024a5780633950935114610268575b600080fd5b6101b6610516565b6040516101c3919061174c565b60405180910390f35b6101e660048036038101906101e19190611807565b6105a8565b6040516101f39190611862565b60405180910390f35b6102046105c6565b604051610211919061188c565b60405180910390f35b610234600480360381019061022f91906118a7565b6105d0565b6040516102419190611862565b60405180910390f35b6102526106d1565b60405161025f9190611916565b60405180910390f35b610282600480360381019061027d9190611807565b6106e8565b60405161028f9190611862565b60405180910390f35b6102a0610794565b6040516102ad919061188c565b60405180910390f35b6102d060048036038101906102cb9190611931565b61079a565b6040516102dd919061188c565b60405180910390f35b6102ee6107e3565b005b6102f8610936565b604051610305919061188c565b60405180910390f35b61031661093c565b604051610323919061196d565b60405180910390f35b610334610965565b604051610341919061174c565b60405180910390f35b610364600480360381019061035f9190611807565b6109f7565b6040516103719190611862565b60405180910390f35b610382610aeb565b005b61039e60048036038101906103999190611807565b610cbf565b6040516103ab9190611862565b60405180910390f35b6103bc610cdd565b6040516103c9919061188c565b60405180910390f35b6103da610ce7565b6040516103e7919061196d565b60405180910390f35b6103f8610d0d565b604051610405919061188c565b60405180910390f35b610416610d13565b604051610423919061188c565b60405180910390f35b61044660048036038101906104419190611988565b610d19565b005b610462600480360381019061045d91906119b5565b610ee0565b60405161046f919061188c565b60405180910390f35b610480610f67565b60405161048d919061188c565b60405180910390f35b61049e610f6d565b005b6104a8611078565b6040516104b5919061188c565b60405180910390f35b6104d860048036038101906104d39190611931565b61107e565b005b6104e2611240565b6040516104ef9190611862565b60405180910390f35b610500611253565b60405161050d919061188c565b60405180910390f35b60606007805461052590611a24565b80601f016020809104026020016040519081016040528092919081815260200182805461055190611a24565b801561059e5780601f106105735761010080835404028352916020019161059e565b820191906000526020600020905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b60006105bc6105b5611259565b8484611261565b6001905092915050565b6000600554905090565b60006105dd84848461142c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610628611259565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f90611ac8565b60405180910390fd5b6106c5856106b4611259565b85846106c09190611b17565b611261565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b600061078a6106f5611259565b848460046000610703611259565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107859190611b4b565b611261565b6001905092915050565b60125481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107eb611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461097490611a24565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090611a24565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b60008060046000610a06611259565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90611c7f565b60405180910390fd5b610ae0610ace611259565b858584610adb9190611b17565b611261565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290611d11565b60405180910390fd5b6002544211610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690611d7d565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610cd3610ccc611259565b848461142c565b6001905092915050565b6000600254905090565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600e5481565b610d21611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590611bed565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610e5c9190611b4b565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b610f75611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990611bed565b60405180910390fd5b42600b541115611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90611e0f565b60405180910390fd5b611075601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f54610cbf565b50565b60115481565b611086611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611ea1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900460ff1681565b60105481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c890611f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890611fc5565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161141f919061188c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612057565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906120e9565b60405180910390fd5b6115178383836116ae565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061217b565b60405180910390fd5b81816115aa9190611b17565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163c9190611b4b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116a0919061188c565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ed5780820151818401526020810190506116d2565b838111156116fc576000848401525b50505050565b6000601f19601f8301169050919050565b600061171e826116b3565b61172881856116be565b93506117388185602086016116cf565b61174181611702565b840191505092915050565b600060208201905081810360008301526117668184611713565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061179e82611773565b9050919050565b6117ae81611793565b81146117b957600080fd5b50565b6000813590506117cb816117a5565b92915050565b6000819050919050565b6117e4816117d1565b81146117ef57600080fd5b50565b600081359050611801816117db565b92915050565b6000806040838503121561181e5761181d61176e565b5b600061182c858286016117bc565b925050602061183d858286016117f2565b9150509250929050565b60008115159050919050565b61185c81611847565b82525050565b60006020820190506118776000830184611853565b92915050565b611886816117d1565b82525050565b60006020820190506118a1600083018461187d565b92915050565b6000806000606084860312156118c0576118bf61176e565b5b60006118ce868287016117bc565b93505060206118df868287016117bc565b92505060406118f0868287016117f2565b9150509250925092565b600060ff82169050919050565b611910816118fa565b82525050565b600060208201905061192b6000830184611907565b92915050565b6000602082840312156119475761194661176e565b5b6000611955848285016117bc565b91505092915050565b61196781611793565b82525050565b6000602082019050611982600083018461195e565b92915050565b60006020828403121561199e5761199d61176e565b5b60006119ac848285016117f2565b91505092915050565b600080604083850312156119cc576119cb61176e565b5b60006119da858286016117bc565b92505060206119eb858286016117bc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a3c57607f821691505b60208210811415611a5057611a4f6119f5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611ab26028836116be565b9150611abd82611a56565b604082019050919050565b60006020820190508181036000830152611ae181611aa5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b22826117d1565b9150611b2d836117d1565b925082821015611b4057611b3f611ae8565b5b828203905092915050565b6000611b56826117d1565b9150611b61836117d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b9657611b95611ae8565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bd76020836116be565b9150611be282611ba1565b602082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c696025836116be565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b6000611cfb6023836116be565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b6000611d67601f836116be565b9150611d7282611d31565b602082019050919050565b60006020820190508181036000830152611d9681611d5a565b9050919050565b7f546f6b656e20666f72207465616d206973206c6f636b656420666f722033207960008201527f656172732e000000000000000000000000000000000000000000000000000000602082015250565b6000611df96025836116be565b9150611e0482611d9d565b604082019050919050565b60006020820190508181036000830152611e2881611dec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e8b6026836116be565b9150611e9682611e2f565b604082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f1d6024836116be565b9150611f2882611ec1565b604082019050919050565b60006020820190508181036000830152611f4c81611f10565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611faf6022836116be565b9150611fba82611f53565b604082019050919050565b60006020820190508181036000830152611fde81611fa2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120416025836116be565b915061204c82611fe5565b604082019050919050565b6000602082019050818103600083015261207081612034565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120d36023836116be565b91506120de82612077565b604082019050919050565b60006020820190508181036000830152612102816120c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121656026836116be565b915061217082612109565b604082019050919050565b6000602082019050818103600083015261219481612158565b905091905056fea2646970667358221220f8f14377e7869d4a00291d33a906e54f8247e1d6f2efbc9d53032d43a4640cc364736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063a69df4b5116100f9578063dd62ed3e11610097578063e7cc35b111610071578063e7cc35b1146104a0578063f2fde38b146104be578063f5eae936146104da578063fec960e9146104f8576101a9565b8063dd62ed3e14610448578063dde3b98614610478578063e2e3021114610496576101a9565b8063bc8bde64116100d3578063bc8bde64146103d2578063c67ff2a6146103f0578063cc3c42da1461040e578063dd4670641461042c576101a9565b8063a69df4b51461037a578063a9059cbb14610384578063b6c52324146103b4576101a9565b806347d6cd6b116101665780637420c40b116101405780637420c40b146102f05780638da5cb5b1461030e57806395d89b411461032c578063a457c2d71461034a576101a9565b806347d6cd6b1461029857806370a08231146102b6578063715018a6146102e6576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806318160ddd146101fc57806323b872dd1461021a578063313ce5671461024a5780633950935114610268575b600080fd5b6101b6610516565b6040516101c3919061174c565b60405180910390f35b6101e660048036038101906101e19190611807565b6105a8565b6040516101f39190611862565b60405180910390f35b6102046105c6565b604051610211919061188c565b60405180910390f35b610234600480360381019061022f91906118a7565b6105d0565b6040516102419190611862565b60405180910390f35b6102526106d1565b60405161025f9190611916565b60405180910390f35b610282600480360381019061027d9190611807565b6106e8565b60405161028f9190611862565b60405180910390f35b6102a0610794565b6040516102ad919061188c565b60405180910390f35b6102d060048036038101906102cb9190611931565b61079a565b6040516102dd919061188c565b60405180910390f35b6102ee6107e3565b005b6102f8610936565b604051610305919061188c565b60405180910390f35b61031661093c565b604051610323919061196d565b60405180910390f35b610334610965565b604051610341919061174c565b60405180910390f35b610364600480360381019061035f9190611807565b6109f7565b6040516103719190611862565b60405180910390f35b610382610aeb565b005b61039e60048036038101906103999190611807565b610cbf565b6040516103ab9190611862565b60405180910390f35b6103bc610cdd565b6040516103c9919061188c565b60405180910390f35b6103da610ce7565b6040516103e7919061196d565b60405180910390f35b6103f8610d0d565b604051610405919061188c565b60405180910390f35b610416610d13565b604051610423919061188c565b60405180910390f35b61044660048036038101906104419190611988565b610d19565b005b610462600480360381019061045d91906119b5565b610ee0565b60405161046f919061188c565b60405180910390f35b610480610f67565b60405161048d919061188c565b60405180910390f35b61049e610f6d565b005b6104a8611078565b6040516104b5919061188c565b60405180910390f35b6104d860048036038101906104d39190611931565b61107e565b005b6104e2611240565b6040516104ef9190611862565b60405180910390f35b610500611253565b60405161050d919061188c565b60405180910390f35b60606007805461052590611a24565b80601f016020809104026020016040519081016040528092919081815260200182805461055190611a24565b801561059e5780601f106105735761010080835404028352916020019161059e565b820191906000526020600020905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b60006105bc6105b5611259565b8484611261565b6001905092915050565b6000600554905090565b60006105dd84848461142c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610628611259565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069f90611ac8565b60405180910390fd5b6106c5856106b4611259565b85846106c09190611b17565b611261565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b600061078a6106f5611259565b848460046000610703611259565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107859190611b4b565b611261565b6001905092915050565b60125481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107eb611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086f90611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606008805461097490611a24565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090611a24565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b60008060046000610a06611259565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90611c7f565b60405180910390fd5b610ae0610ace611259565b858584610adb9190611b17565b611261565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290611d11565b60405180910390fd5b6002544211610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690611d7d565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610cd3610ccc611259565b848461142c565b6001905092915050565b6000600254905090565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b600e5481565b610d21611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590611bed565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610e5c9190611b4b565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b610f75611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990611bed565b60405180910390fd5b42600b541115611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e90611e0f565b60405180910390fd5b611075601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f54610cbf565b50565b60115481565b611086611259565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611ea1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900460ff1681565b60105481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c890611f33565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890611fc5565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161141f919061188c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561149c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149390612057565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906120e9565b60405180910390fd5b6115178383836116ae565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061217b565b60405180910390fd5b81816115aa9190611b17565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163c9190611b4b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116a0919061188c565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116ed5780820151818401526020810190506116d2565b838111156116fc576000848401525b50505050565b6000601f19601f8301169050919050565b600061171e826116b3565b61172881856116be565b93506117388185602086016116cf565b61174181611702565b840191505092915050565b600060208201905081810360008301526117668184611713565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061179e82611773565b9050919050565b6117ae81611793565b81146117b957600080fd5b50565b6000813590506117cb816117a5565b92915050565b6000819050919050565b6117e4816117d1565b81146117ef57600080fd5b50565b600081359050611801816117db565b92915050565b6000806040838503121561181e5761181d61176e565b5b600061182c858286016117bc565b925050602061183d858286016117f2565b9150509250929050565b60008115159050919050565b61185c81611847565b82525050565b60006020820190506118776000830184611853565b92915050565b611886816117d1565b82525050565b60006020820190506118a1600083018461187d565b92915050565b6000806000606084860312156118c0576118bf61176e565b5b60006118ce868287016117bc565b93505060206118df868287016117bc565b92505060406118f0868287016117f2565b9150509250925092565b600060ff82169050919050565b611910816118fa565b82525050565b600060208201905061192b6000830184611907565b92915050565b6000602082840312156119475761194661176e565b5b6000611955848285016117bc565b91505092915050565b61196781611793565b82525050565b6000602082019050611982600083018461195e565b92915050565b60006020828403121561199e5761199d61176e565b5b60006119ac848285016117f2565b91505092915050565b600080604083850312156119cc576119cb61176e565b5b60006119da858286016117bc565b92505060206119eb858286016117bc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a3c57607f821691505b60208210811415611a5057611a4f6119f5565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611ab26028836116be565b9150611abd82611a56565b604082019050919050565b60006020820190508181036000830152611ae181611aa5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b22826117d1565b9150611b2d836117d1565b925082821015611b4057611b3f611ae8565b5b828203905092915050565b6000611b56826117d1565b9150611b61836117d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b9657611b95611ae8565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bd76020836116be565b9150611be282611ba1565b602082019050919050565b60006020820190508181036000830152611c0681611bca565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611c696025836116be565b9150611c7482611c0d565b604082019050919050565b60006020820190508181036000830152611c9881611c5c565b9050919050565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b6000611cfb6023836116be565b9150611d0682611c9f565b604082019050919050565b60006020820190508181036000830152611d2a81611cee565b9050919050565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b6000611d67601f836116be565b9150611d7282611d31565b602082019050919050565b60006020820190508181036000830152611d9681611d5a565b9050919050565b7f546f6b656e20666f72207465616d206973206c6f636b656420666f722033207960008201527f656172732e000000000000000000000000000000000000000000000000000000602082015250565b6000611df96025836116be565b9150611e0482611d9d565b604082019050919050565b60006020820190508181036000830152611e2881611dec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e8b6026836116be565b9150611e9682611e2f565b604082019050919050565b60006020820190508181036000830152611eba81611e7e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f1d6024836116be565b9150611f2882611ec1565b604082019050919050565b60006020820190508181036000830152611f4c81611f10565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611faf6022836116be565b9150611fba82611f53565b604082019050919050565b60006020820190508181036000830152611fde81611fa2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120416025836116be565b915061204c82611fe5565b604082019050919050565b6000602082019050818103600083015261207081612034565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006120d36023836116be565b91506120de82612077565b604082019050919050565b60006020820190508181036000830152612102816120c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006121656026836116be565b915061217082612109565b604082019050919050565b6000602082019050818103600083015261219481612158565b905091905056fea2646970667358221220f8f14377e7869d4a00291d33a906e54f8247e1d6f2efbc9d53032d43a4640cc364736f6c63430008090033
Deployed Bytecode Sourcemap
13040:12573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16546:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18720:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17673:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19585:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17508:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20416:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13836:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17844:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11705:148;;;:::i;:::-;;13620:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11062:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16765:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21134:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12727:305;;;:::i;:::-;;18184:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12260:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13414:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13656:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13692:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12425:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18422:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13733:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18898:205;;;:::i;:::-;;13804:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12008:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13277:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13766:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16546:100;16600:13;16633:5;16626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16546:100;:::o;18720:169::-;18803:4;18820:39;18829:12;:10;:12::i;:::-;18843:7;18852:6;18820:8;:39::i;:::-;18877:4;18870:11;;18720:169;;;;:::o;17673:108::-;17734:7;17761:12;;17754:19;;17673:108;:::o;19585:422::-;19691:4;19708:36;19718:6;19726:9;19737:6;19708:9;:36::i;:::-;19757:24;19784:11;:19;19796:6;19784:19;;;;;;;;;;;;;;;:33;19804:12;:10;:12::i;:::-;19784:33;;;;;;;;;;;;;;;;19757:60;;19856:6;19836:16;:26;;19828:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19918:57;19927:6;19935:12;:10;:12::i;:::-;19968:6;19949:16;:25;;;;:::i;:::-;19918:8;:57::i;:::-;19995:4;19988:11;;;19585:422;;;;;:::o;17508:100::-;17566:5;17591:9;;;;;;;;;;;17584:16;;17508:100;:::o;20416:215::-;20504:4;20521:80;20530:12;:10;:12::i;:::-;20544:7;20590:10;20553:11;:25;20565:12;:10;:12::i;:::-;20553:25;;;;;;;;;;;;;;;:34;20579:7;20553:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;20521:8;:80::i;:::-;20619:4;20612:11;;20416:215;;;;:::o;13836:29::-;;;;:::o;17844:127::-;17918:7;17945:9;:18;17955:7;17945:18;;;;;;;;;;;;;;;;17938:25;;17844:127;;;:::o;11705:148::-;11284:12;:10;:12::i;:::-;11274:22;;:6;;;;;;;;;;:22;;;11266:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11812:1:::1;11775:40;;11796:6;::::0;::::1;;;;;;;;11775:40;;;;;;;;;;;;11843:1;11826:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;11705:148::o:0;13620:29::-;;;;:::o;11062:79::-;11100:7;11127:6;;;;;;;;;;;11120:13;;11062:79;:::o;16765:104::-;16821:13;16854:7;16847:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16765:104;:::o;21134:377::-;21227:4;21244:24;21271:11;:25;21283:12;:10;:12::i;:::-;21271:25;;;;;;;;;;;;;;;:34;21297:7;21271:34;;;;;;;;;;;;;;;;21244:61;;21344:15;21324:16;:35;;21316:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21412:67;21421:12;:10;:12::i;:::-;21435:7;21463:15;21444:16;:34;;;;:::i;:::-;21412:8;:67::i;:::-;21499:4;21492:11;;;21134:377;;;;:::o;12727:305::-;12797:10;12779:28;;:14;;;;;;;;;;;:28;;;12771:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;12884:9;;12866:15;:27;12858:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12975:14;;;;;;;;;;;12946:44;;12967:6;;;;;;;;;;12946:44;;;;;;;;;;;;13010:14;;;;;;;;;;;13001:6;;:23;;;;;;;;;;;;;;;;;;12727:305::o;18184:175::-;18270:4;18287:42;18297:12;:10;:12::i;:::-;18311:9;18322:6;18287:9;:42::i;:::-;18347:4;18340:11;;18184:175;;;;:::o;12260:89::-;12305:7;12332:9;;12325:16;;12260:89;:::o;13414:23::-;;;;;;;;;;;;;:::o;13656:29::-;;;;:::o;13692:34::-;;;;:::o;12425:226::-;11284:12;:10;:12::i;:::-;11274:22;;:6;;;;;;;;;;:22;;;11266:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12506:6:::1;::::0;::::1;;;;;;;;12489:14;;:23;;;;;;;;;;;;;;;;;;12540:1;12523:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;12583:4;12565:15;:22;;;;:::i;:::-;12553:9;:34;;;;12640:1;12603:40;;12624:6;::::0;::::1;;;;;;;;12603:40;;;;;;;;;;;;12425:226:::0;:::o;18422:151::-;18511:7;18538:11;:18;18550:5;18538:18;;;;;;;;;;;;;;;:27;18557:7;18538:27;;;;;;;;;;;;;;;;18531:34;;18422:151;;;;:::o;13733:26::-;;;;:::o;18898:205::-;11284:12;:10;:12::i;:::-;11274:22;;:6;;;;;;;;;;:22;;;11266:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18993:15:::1;18967:22;;:41;;18959:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;19061:34;19070:11;;;;;;;;;;;19083;;19061:8;:34::i;:::-;;18898:205::o:0;13804:25::-;;;;:::o;12008:244::-;11284:12;:10;:12::i;:::-;11274:22;;:6;;;;;;;;;;:22;;;11266:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12117:1:::1;12097:22;;:8;:22;;;;12089:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12207:8;12178:38;;12199:6;::::0;::::1;;;;;;;;12178:38;;;;;;;;;;;;12236:8;12227:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;12008:244:::0;:::o;13277:44::-;;;;;;;;;;;;;:::o;13766:31::-;;;;:::o;4341:98::-;4394:7;4421:10;4414:17;;4341:98;:::o;24569:346::-;24688:1;24671:19;;:5;:19;;;;24663:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24769:1;24750:21;;:7;:21;;;;24742:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24853:6;24823:11;:18;24835:5;24823:18;;;;;;;;;;;;;;;:27;24842:7;24823:27;;;;;;;;;;;;;;;:36;;;;24891:7;24875:32;;24884:5;24875:32;;;24900:6;24875:32;;;;;;:::i;:::-;;;;;;;;24569:346;;;:::o;22001:604::-;22125:1;22107:20;;:6;:20;;;;22099:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;22209:1;22188:23;;:9;:23;;;;22180:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;22264:47;22285:6;22293:9;22304:6;22264:20;:47::i;:::-;22324:21;22348:9;:17;22358:6;22348:17;;;;;;;;;;;;;;;;22324:41;;22401:6;22384:13;:23;;22376:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22497:6;22481:13;:22;;;;:::i;:::-;22461:9;:17;22471:6;22461:17;;;;;;;;;;;;;;;:42;;;;22538:6;22514:9;:20;22524:9;22514:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;22579:9;22562:35;;22571:6;22562:35;;;22590:6;22562:35;;;;;;:::i;:::-;;;;;;;;22088:517;22001:604;;;:::o;25518:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:180::-;7993:77;7990:1;7983:88;8090:4;8087:1;8080:15;8114:4;8111:1;8104:15;8131:191;8171:4;8191:20;8209:1;8191:20;:::i;:::-;8186:25;;8225:20;8243:1;8225:20;:::i;:::-;8220:25;;8264:1;8261;8258:8;8255:34;;;8269:18;;:::i;:::-;8255:34;8314:1;8311;8307:9;8299:17;;8131:191;;;;:::o;8328:305::-;8368:3;8387:20;8405:1;8387:20;:::i;:::-;8382:25;;8421:20;8439:1;8421:20;:::i;:::-;8416:25;;8575:1;8507:66;8503:74;8500:1;8497:81;8494:107;;;8581:18;;:::i;:::-;8494:107;8625:1;8622;8618:9;8611:16;;8328:305;;;;:::o;8639:182::-;8779:34;8775:1;8767:6;8763:14;8756:58;8639:182;:::o;8827:366::-;8969:3;8990:67;9054:2;9049:3;8990:67;:::i;:::-;8983:74;;9066:93;9155:3;9066:93;:::i;:::-;9184:2;9179:3;9175:12;9168:19;;8827:366;;;:::o;9199:419::-;9365:4;9403:2;9392:9;9388:18;9380:26;;9452:9;9446:4;9442:20;9438:1;9427:9;9423:17;9416:47;9480:131;9606:4;9480:131;:::i;:::-;9472:139;;9199:419;;;:::o;9624:224::-;9764:34;9760:1;9752:6;9748:14;9741:58;9833:7;9828:2;9820:6;9816:15;9809:32;9624:224;:::o;9854:366::-;9996:3;10017:67;10081:2;10076:3;10017:67;:::i;:::-;10010:74;;10093:93;10182:3;10093:93;:::i;:::-;10211:2;10206:3;10202:12;10195:19;;9854:366;;;:::o;10226:419::-;10392:4;10430:2;10419:9;10415:18;10407:26;;10479:9;10473:4;10469:20;10465:1;10454:9;10450:17;10443:47;10507:131;10633:4;10507:131;:::i;:::-;10499:139;;10226:419;;;:::o;10651:222::-;10791:34;10787:1;10779:6;10775:14;10768:58;10860:5;10855:2;10847:6;10843:15;10836:30;10651:222;:::o;10879:366::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:419::-;11417:4;11455:2;11444:9;11440:18;11432:26;;11504:9;11498:4;11494:20;11490:1;11479:9;11475:17;11468:47;11532:131;11658:4;11532:131;:::i;:::-;11524:139;;11251:419;;;:::o;11676:181::-;11816:33;11812:1;11804:6;11800:14;11793:57;11676:181;:::o;11863:366::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:419::-;12401:4;12439:2;12428:9;12424:18;12416:26;;12488:9;12482:4;12478:20;12474:1;12463:9;12459:17;12452:47;12516:131;12642:4;12516:131;:::i;:::-;12508:139;;12235:419;;;:::o;12660:224::-;12800:34;12796:1;12788:6;12784:14;12777:58;12869:7;12864:2;12856:6;12852:15;12845:32;12660:224;:::o;12890:366::-;13032:3;13053:67;13117:2;13112:3;13053:67;:::i;:::-;13046:74;;13129:93;13218:3;13129:93;:::i;:::-;13247:2;13242:3;13238:12;13231:19;;12890:366;;;:::o;13262:419::-;13428:4;13466:2;13455:9;13451:18;13443:26;;13515:9;13509:4;13505:20;13501:1;13490:9;13486:17;13479:47;13543:131;13669:4;13543:131;:::i;:::-;13535:139;;13262:419;;;:::o;13687:225::-;13827:34;13823:1;13815:6;13811:14;13804:58;13896:8;13891:2;13883:6;13879:15;13872:33;13687:225;:::o;13918:366::-;14060:3;14081:67;14145:2;14140:3;14081:67;:::i;:::-;14074:74;;14157:93;14246:3;14157:93;:::i;:::-;14275:2;14270:3;14266:12;14259:19;;13918:366;;;:::o;14290:419::-;14456:4;14494:2;14483:9;14479:18;14471:26;;14543:9;14537:4;14533:20;14529:1;14518:9;14514:17;14507:47;14571:131;14697:4;14571:131;:::i;:::-;14563:139;;14290:419;;;:::o;14715:223::-;14855:34;14851:1;14843:6;14839:14;14832:58;14924:6;14919:2;14911:6;14907:15;14900:31;14715:223;:::o;14944:366::-;15086:3;15107:67;15171:2;15166:3;15107:67;:::i;:::-;15100:74;;15183:93;15272:3;15183:93;:::i;:::-;15301:2;15296:3;15292:12;15285:19;;14944:366;;;:::o;15316:419::-;15482:4;15520:2;15509:9;15505:18;15497:26;;15569:9;15563:4;15559:20;15555:1;15544:9;15540:17;15533:47;15597:131;15723:4;15597:131;:::i;:::-;15589:139;;15316:419;;;:::o;15741:221::-;15881:34;15877:1;15869:6;15865:14;15858:58;15950:4;15945:2;15937:6;15933:15;15926:29;15741:221;:::o;15968:366::-;16110:3;16131:67;16195:2;16190:3;16131:67;:::i;:::-;16124:74;;16207:93;16296:3;16207:93;:::i;:::-;16325:2;16320:3;16316:12;16309:19;;15968:366;;;:::o;16340:419::-;16506:4;16544:2;16533:9;16529:18;16521:26;;16593:9;16587:4;16583:20;16579:1;16568:9;16564:17;16557:47;16621:131;16747:4;16621:131;:::i;:::-;16613:139;;16340:419;;;:::o;16765:224::-;16905:34;16901:1;16893:6;16889:14;16882:58;16974:7;16969:2;16961:6;16957:15;16950:32;16765:224;:::o;16995:366::-;17137:3;17158:67;17222:2;17217:3;17158:67;:::i;:::-;17151:74;;17234:93;17323:3;17234:93;:::i;:::-;17352:2;17347:3;17343:12;17336:19;;16995:366;;;:::o;17367:419::-;17533:4;17571:2;17560:9;17556:18;17548:26;;17620:9;17614:4;17610:20;17606:1;17595:9;17591:17;17584:47;17648:131;17774:4;17648:131;:::i;:::-;17640:139;;17367:419;;;:::o;17792:222::-;17932:34;17928:1;17920:6;17916:14;17909:58;18001:5;17996:2;17988:6;17984:15;17977:30;17792:222;:::o;18020:366::-;18162:3;18183:67;18247:2;18242:3;18183:67;:::i;:::-;18176:74;;18259:93;18348:3;18259:93;:::i;:::-;18377:2;18372:3;18368:12;18361:19;;18020:366;;;:::o;18392:419::-;18558:4;18596:2;18585:9;18581:18;18573:26;;18645:9;18639:4;18635:20;18631:1;18620:9;18616:17;18609:47;18673:131;18799:4;18673:131;:::i;:::-;18665:139;;18392:419;;;:::o;18817:225::-;18957:34;18953:1;18945:6;18941:14;18934:58;19026:8;19021:2;19013:6;19009:15;19002:33;18817:225;:::o;19048:366::-;19190:3;19211:67;19275:2;19270:3;19211:67;:::i;:::-;19204:74;;19287:93;19376:3;19287:93;:::i;:::-;19405:2;19400:3;19396:12;19389:19;;19048:366;;;:::o;19420:419::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19673:9;19667:4;19663:20;19659:1;19648:9;19644:17;19637:47;19701:131;19827:4;19701:131;:::i;:::-;19693:139;;19420:419;;;:::o
Swarm Source
ipfs://f8f14377e7869d4a00291d33a906e54f8247e1d6f2efbc9d53032d43a4640cc3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.