ERC-20
Overview
Max Total Supply
0.000000000021 APE
Holders
1
Market
Price
$0.00 @ 0.000000 APE
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ApeCoinToken
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @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); } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @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; } } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 18; } /** * @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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.8.3/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 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 { _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); } } // File: contracts/Coffee.sol pragma solidity ^0.8.0; // Import specific versions from OpenZeppelin v4.8.3 contract ApeCoinToken is ERC20, Ownable { // Fixed tax percentages uint256 public constant communityTaxPercent = 1; uint256 public constant developmentTaxPercent = 1; address public communityWallet; address public developmentWallet; event WalletsUpdated(address communityWallet, address developmentWallet); constructor( string memory name_, string memory symbol_, uint256 initialSupply_, address communityWallet_, address developmentWallet_ ) ERC20(name_, symbol_) { communityWallet = communityWallet_; developmentWallet = developmentWallet_; _mint(msg.sender, initialSupply_); } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { // Calculate fixed taxes uint256 communityTax = (amount * communityTaxPercent) / 100; uint256 developmentTax = (amount * developmentTaxPercent) / 100; uint256 totalTax = communityTax + developmentTax; uint256 amountAfterTax = amount - totalTax; // Distribute taxes if (communityTax > 0) { super._transfer(sender, communityWallet, communityTax); } if (developmentTax > 0) { super._transfer(sender, developmentWallet, developmentTax); } super._transfer(sender, recipient, amountAfterTax); } // Owner can update wallet addresses if needed function setWallets(address newCommunityWallet, address newDevelopmentWallet) external onlyOwner { communityWallet = newCommunityWallet; developmentWallet = newDevelopmentWallet; emit WalletsUpdated(newCommunityWallet, newDevelopmentWallet); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialSupply_","type":"uint256"},{"internalType":"address","name":"communityWallet_","type":"address"},{"internalType":"address","name":"developmentWallet_","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"communityWallet","type":"address"},{"indexed":false,"internalType":"address","name":"developmentWallet","type":"address"}],"name":"WalletsUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"developmentTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":[{"internalType":"address","name":"newCommunityWallet","type":"address"},{"internalType":"address","name":"newDevelopmentWallet","type":"address"}],"name":"setWallets","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]
Contract Creation Code
608060405234801561000f575f80fd5b5060405161229c38038061229c83398181016040528101906100319190610513565b8484816003908161004291906107c6565b50806004908161005291906107c6565b50505061007161006661010b60201b60201c565b61011260201b60201c565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061010133846101d560201b60201c565b5050505050610995565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023a906108ef565b60405180910390fd5b6102545f838361032f60201b60201c565b8060025f828254610265919061093a565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610312919061097c565b60405180910390a361032b5f838361033460201b60201c565b5050565b505050565b505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61039882610352565b810181811067ffffffffffffffff821117156103b7576103b6610362565b5b80604052505050565b5f6103c9610339565b90506103d5828261038f565b919050565b5f67ffffffffffffffff8211156103f4576103f3610362565b5b6103fd82610352565b9050602081019050919050565b8281835e5f83830152505050565b5f61042a610425846103da565b6103c0565b9050828152602081018484840111156104465761044561034e565b5b61045184828561040a565b509392505050565b5f82601f83011261046d5761046c61034a565b5b815161047d848260208601610418565b91505092915050565b5f819050919050565b61049881610486565b81146104a2575f80fd5b50565b5f815190506104b38161048f565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6104e2826104b9565b9050919050565b6104f2816104d8565b81146104fc575f80fd5b50565b5f8151905061050d816104e9565b92915050565b5f805f805f60a0868803121561052c5761052b610342565b5b5f86015167ffffffffffffffff81111561054957610548610346565b5b61055588828901610459565b955050602086015167ffffffffffffffff81111561057657610575610346565b5b61058288828901610459565b9450506040610593888289016104a5565b93505060606105a4888289016104ff565b92505060806105b5888289016104ff565b9150509295509295909350565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061061057607f821691505b602082108103610623576106226105cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261064a565b61068f868361064a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6106ca6106c56106c084610486565b6106a7565b610486565b9050919050565b5f819050919050565b6106e3836106b0565b6106f76106ef826106d1565b848454610656565b825550505050565b5f90565b61070b6106ff565b6107168184846106da565b505050565b5b818110156107395761072e5f82610703565b60018101905061071c565b5050565b601f82111561077e5761074f81610629565b6107588461063b565b81016020851015610767578190505b61077b6107738561063b565b83018261071b565b50505b505050565b5f82821c905092915050565b5f61079e5f1984600802610783565b1980831691505092915050565b5f6107b6838361078f565b9150826002028217905092915050565b6107cf826105c2565b67ffffffffffffffff8111156107e8576107e7610362565b5b6107f282546105f9565b6107fd82828561073d565b5f60209050601f83116001811461082e575f841561081c578287015190505b61082685826107ab565b86555061088d565b601f19841661083c86610629565b5f5b828110156108635784890151825560018201915060208501945060208101905061083e565b86831015610880578489015161087c601f89168261078f565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6108d9601f83610895565b91506108e4826108a5565b602082019050919050565b5f6020820190508181035f830152610906816108cd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61094482610486565b915061094f83610486565b92508282019050808211156109675761096661090d565b5b92915050565b61097681610486565b82525050565b5f60208201905061098f5f83018461096d565b92915050565b6118fa806109a25f395ff3fe608060405234801561000f575f80fd5b506004361061011f575f3560e01c80638da5cb5b116100ab578063c04a54141161006f578063c04a54141461031f578063c75748391461033d578063d3f6a1571461035b578063dd62ed3e14610377578063f2fde38b146103a75761011f565b80638da5cb5b1461026557806395d89b4114610283578063a457c2d7146102a1578063a9059cbb146102d1578063aea359cd146103015761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd5780636f446ee11461020d57806370a082311461022b578063715018a61461025b5761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c3565b6040516101389190610ffe565b60405180910390f35b61015b600480360381019061015691906110af565b610453565b6040516101689190611107565b60405180910390f35b610179610475565b604051610186919061112f565b60405180910390f35b6101a960048036038101906101a49190611148565b61047e565b6040516101b69190611107565b60405180910390f35b6101c76104ac565b6040516101d491906111b3565b60405180910390f35b6101f760048036038101906101f291906110af565b6104b4565b6040516102049190611107565b60405180910390f35b6102156104ea565b604051610222919061112f565b60405180910390f35b610245600480360381019061024091906111cc565b6104ef565b604051610252919061112f565b60405180910390f35b610263610534565b005b61026d610547565b60405161027a9190611206565b60405180910390f35b61028b61056f565b6040516102989190610ffe565b60405180910390f35b6102bb60048036038101906102b691906110af565b6105ff565b6040516102c89190611107565b60405180910390f35b6102eb60048036038101906102e691906110af565b610674565b6040516102f89190611107565b60405180910390f35b610309610696565b604051610316919061112f565b60405180910390f35b61032761069b565b6040516103349190611206565b60405180910390f35b6103456106c0565b6040516103529190611206565b60405180910390f35b6103756004803603810190610370919061121f565b6106e5565b005b610391600480360381019061038c919061121f565b6107aa565b60405161039e919061112f565b60405180910390f35b6103c160048036038101906103bc91906111cc565b61082c565b005b6060600380546103d29061128a565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe9061128a565b80156104495780601f1061042057610100808354040283529160200191610449565b820191905f5260205f20905b81548152906001019060200180831161042c57829003601f168201915b5050505050905090565b5f8061045d6108ae565b905061046a8185856108b5565b600191505092915050565b5f600254905090565b5f806104886108ae565b9050610495858285610a78565b6104a0858585610b03565b60019150509392505050565b5f6012905090565b5f806104be6108ae565b90506104df8185856104d085896107aa565b6104da91906112e7565b6108b5565b600191505092915050565b600181565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61053c610bd7565b6105455f610c55565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461057e9061128a565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa9061128a565b80156105f55780601f106105cc576101008083540402835291602001916105f5565b820191905f5260205f20905b8154815290600101906020018083116105d857829003601f168201915b5050505050905090565b5f806106096108ae565b90505f61061682866107aa565b90508381101561065b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106529061138a565b60405180910390fd5b61066882868684036108b5565b60019250505092915050565b5f8061067e6108ae565b905061068b818585610b03565b600191505092915050565b600181565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106ed610bd7565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f316af92955f23ddbd4c570a5f8cda8a10b192f24d8f58524deb2fcb03a8bc794828260405161079e9291906113a8565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610834610bd7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108999061143f565b60405180910390fd5b6108ab81610c55565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a906114cd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109889061155b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a6b919061112f565b60405180910390a3505050565b5f610a8384846107aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afd5781811015610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906115c3565b60405180910390fd5b610afc84848484036108b5565b5b50505050565b5f6064600183610b1391906115e1565b610b1d919061164f565b90505f6064600184610b2f91906115e1565b610b39919061164f565b90505f8183610b4891906112e7565b90505f8185610b57919061167f565b90505f841115610b8e57610b8d8760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610d18565b5b5f831115610bc357610bc28760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610d18565b5b610bce878783610d18565b50505050505050565b610bdf6108ae565b73ffffffffffffffffffffffffffffffffffffffff16610bfd610547565b73ffffffffffffffffffffffffffffffffffffffff1614610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a906116fc565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d9061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90611818565b60405180910390fd5b610dff838383610f84565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906118a6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6b919061112f565b60405180910390a3610f7e848484610f89565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610fd082610f8e565b610fda8185610f98565b9350610fea818560208601610fa8565b610ff381610fb6565b840191505092915050565b5f6020820190508181035f8301526110168184610fc6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61104b82611022565b9050919050565b61105b81611041565b8114611065575f80fd5b50565b5f8135905061107681611052565b92915050565b5f819050919050565b61108e8161107c565b8114611098575f80fd5b50565b5f813590506110a981611085565b92915050565b5f80604083850312156110c5576110c461101e565b5b5f6110d285828601611068565b92505060206110e38582860161109b565b9150509250929050565b5f8115159050919050565b611101816110ed565b82525050565b5f60208201905061111a5f8301846110f8565b92915050565b6111298161107c565b82525050565b5f6020820190506111425f830184611120565b92915050565b5f805f6060848603121561115f5761115e61101e565b5b5f61116c86828701611068565b935050602061117d86828701611068565b925050604061118e8682870161109b565b9150509250925092565b5f60ff82169050919050565b6111ad81611198565b82525050565b5f6020820190506111c65f8301846111a4565b92915050565b5f602082840312156111e1576111e061101e565b5b5f6111ee84828501611068565b91505092915050565b61120081611041565b82525050565b5f6020820190506112195f8301846111f7565b92915050565b5f80604083850312156112355761123461101e565b5b5f61124285828601611068565b925050602061125385828601611068565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112a157607f821691505b6020821081036112b4576112b361125d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112f18261107c565b91506112fc8361107c565b9250828201905080821115611314576113136112ba565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611374602583610f98565b915061137f8261131a565b604082019050919050565b5f6020820190508181035f8301526113a181611368565b9050919050565b5f6040820190506113bb5f8301856111f7565b6113c860208301846111f7565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611429602683610f98565b9150611434826113cf565b604082019050919050565b5f6020820190508181035f8301526114568161141d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114b7602483610f98565b91506114c28261145d565b604082019050919050565b5f6020820190508181035f8301526114e4816114ab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611545602283610f98565b9150611550826114eb565b604082019050919050565b5f6020820190508181035f83015261157281611539565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115ad601d83610f98565b91506115b882611579565b602082019050919050565b5f6020820190508181035f8301526115da816115a1565b9050919050565b5f6115eb8261107c565b91506115f68361107c565b92508282026116048161107c565b9150828204841483151761161b5761161a6112ba565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6116598261107c565b91506116648361107c565b92508261167457611673611622565b5b828204905092915050565b5f6116898261107c565b91506116948361107c565b92508282039050818111156116ac576116ab6112ba565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6116e6602083610f98565b91506116f1826116b2565b602082019050919050565b5f6020820190508181035f830152611713816116da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611774602583610f98565b915061177f8261171a565b604082019050919050565b5f6020820190508181035f8301526117a181611768565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611802602383610f98565b915061180d826117a8565b604082019050919050565b5f6020820190508181035f83015261182f816117f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611890602683610f98565b915061189b82611836565b604082019050919050565b5f6020820190508181035f8301526118bd81611884565b905091905056fea2646970667358221220917a2b47f41ae7c51b7ed6ee0cfab6d75bee029a68a8b7b6ea384db1ff53aad864736f6c634300081a003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000001406f400000000000000000000000006612074a8269e3894b0e0dd79ebec1697663da7b0000000000000000000000003050b2d7cd8b576227cf0acf9e5aa595d8e89cc6000000000000000000000000000000000000000000000000000000000000000c417065436f696e546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034150450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061011f575f3560e01c80638da5cb5b116100ab578063c04a54141161006f578063c04a54141461031f578063c75748391461033d578063d3f6a1571461035b578063dd62ed3e14610377578063f2fde38b146103a75761011f565b80638da5cb5b1461026557806395d89b4114610283578063a457c2d7146102a1578063a9059cbb146102d1578063aea359cd146103015761011f565b8063313ce567116100f2578063313ce567146101bf57806339509351146101dd5780636f446ee11461020d57806370a082311461022b578063715018a61461025b5761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f80fd5b61012b6103c3565b6040516101389190610ffe565b60405180910390f35b61015b600480360381019061015691906110af565b610453565b6040516101689190611107565b60405180910390f35b610179610475565b604051610186919061112f565b60405180910390f35b6101a960048036038101906101a49190611148565b61047e565b6040516101b69190611107565b60405180910390f35b6101c76104ac565b6040516101d491906111b3565b60405180910390f35b6101f760048036038101906101f291906110af565b6104b4565b6040516102049190611107565b60405180910390f35b6102156104ea565b604051610222919061112f565b60405180910390f35b610245600480360381019061024091906111cc565b6104ef565b604051610252919061112f565b60405180910390f35b610263610534565b005b61026d610547565b60405161027a9190611206565b60405180910390f35b61028b61056f565b6040516102989190610ffe565b60405180910390f35b6102bb60048036038101906102b691906110af565b6105ff565b6040516102c89190611107565b60405180910390f35b6102eb60048036038101906102e691906110af565b610674565b6040516102f89190611107565b60405180910390f35b610309610696565b604051610316919061112f565b60405180910390f35b61032761069b565b6040516103349190611206565b60405180910390f35b6103456106c0565b6040516103529190611206565b60405180910390f35b6103756004803603810190610370919061121f565b6106e5565b005b610391600480360381019061038c919061121f565b6107aa565b60405161039e919061112f565b60405180910390f35b6103c160048036038101906103bc91906111cc565b61082c565b005b6060600380546103d29061128a565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe9061128a565b80156104495780601f1061042057610100808354040283529160200191610449565b820191905f5260205f20905b81548152906001019060200180831161042c57829003601f168201915b5050505050905090565b5f8061045d6108ae565b905061046a8185856108b5565b600191505092915050565b5f600254905090565b5f806104886108ae565b9050610495858285610a78565b6104a0858585610b03565b60019150509392505050565b5f6012905090565b5f806104be6108ae565b90506104df8185856104d085896107aa565b6104da91906112e7565b6108b5565b600191505092915050565b600181565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61053c610bd7565b6105455f610c55565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461057e9061128a565b80601f01602080910402602001604051908101604052809291908181526020018280546105aa9061128a565b80156105f55780601f106105cc576101008083540402835291602001916105f5565b820191905f5260205f20905b8154815290600101906020018083116105d857829003601f168201915b5050505050905090565b5f806106096108ae565b90505f61061682866107aa565b90508381101561065b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106529061138a565b60405180910390fd5b61066882868684036108b5565b60019250505092915050565b5f8061067e6108ae565b905061068b818585610b03565b600191505092915050565b600181565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106ed610bd7565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f316af92955f23ddbd4c570a5f8cda8a10b192f24d8f58524deb2fcb03a8bc794828260405161079e9291906113a8565b60405180910390a15050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610834610bd7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108999061143f565b60405180910390fd5b6108ab81610c55565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a906114cd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610991576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109889061155b565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a6b919061112f565b60405180910390a3505050565b5f610a8384846107aa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610afd5781811015610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae6906115c3565b60405180910390fd5b610afc84848484036108b5565b5b50505050565b5f6064600183610b1391906115e1565b610b1d919061164f565b90505f6064600184610b2f91906115e1565b610b39919061164f565b90505f8183610b4891906112e7565b90505f8185610b57919061167f565b90505f841115610b8e57610b8d8760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686610d18565b5b5f831115610bc357610bc28760075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685610d18565b5b610bce878783610d18565b50505050505050565b610bdf6108ae565b73ffffffffffffffffffffffffffffffffffffffff16610bfd610547565b73ffffffffffffffffffffffffffffffffffffffff1614610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a906116fc565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d9061178a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90611818565b60405180910390fd5b610dff838383610f84565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e79906118a6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f6b919061112f565b60405180910390a3610f7e848484610f89565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610fd082610f8e565b610fda8185610f98565b9350610fea818560208601610fa8565b610ff381610fb6565b840191505092915050565b5f6020820190508181035f8301526110168184610fc6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61104b82611022565b9050919050565b61105b81611041565b8114611065575f80fd5b50565b5f8135905061107681611052565b92915050565b5f819050919050565b61108e8161107c565b8114611098575f80fd5b50565b5f813590506110a981611085565b92915050565b5f80604083850312156110c5576110c461101e565b5b5f6110d285828601611068565b92505060206110e38582860161109b565b9150509250929050565b5f8115159050919050565b611101816110ed565b82525050565b5f60208201905061111a5f8301846110f8565b92915050565b6111298161107c565b82525050565b5f6020820190506111425f830184611120565b92915050565b5f805f6060848603121561115f5761115e61101e565b5b5f61116c86828701611068565b935050602061117d86828701611068565b925050604061118e8682870161109b565b9150509250925092565b5f60ff82169050919050565b6111ad81611198565b82525050565b5f6020820190506111c65f8301846111a4565b92915050565b5f602082840312156111e1576111e061101e565b5b5f6111ee84828501611068565b91505092915050565b61120081611041565b82525050565b5f6020820190506112195f8301846111f7565b92915050565b5f80604083850312156112355761123461101e565b5b5f61124285828601611068565b925050602061125385828601611068565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112a157607f821691505b6020821081036112b4576112b361125d565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112f18261107c565b91506112fc8361107c565b9250828201905080821115611314576113136112ba565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611374602583610f98565b915061137f8261131a565b604082019050919050565b5f6020820190508181035f8301526113a181611368565b9050919050565b5f6040820190506113bb5f8301856111f7565b6113c860208301846111f7565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611429602683610f98565b9150611434826113cf565b604082019050919050565b5f6020820190508181035f8301526114568161141d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6114b7602483610f98565b91506114c28261145d565b604082019050919050565b5f6020820190508181035f8301526114e4816114ab565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611545602283610f98565b9150611550826114eb565b604082019050919050565b5f6020820190508181035f83015261157281611539565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6115ad601d83610f98565b91506115b882611579565b602082019050919050565b5f6020820190508181035f8301526115da816115a1565b9050919050565b5f6115eb8261107c565b91506115f68361107c565b92508282026116048161107c565b9150828204841483151761161b5761161a6112ba565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6116598261107c565b91506116648361107c565b92508261167457611673611622565b5b828204905092915050565b5f6116898261107c565b91506116948361107c565b92508282039050818111156116ac576116ab6112ba565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6116e6602083610f98565b91506116f1826116b2565b602082019050919050565b5f6020820190508181035f830152611713816116da565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611774602583610f98565b915061177f8261171a565b604082019050919050565b5f6020820190508181035f8301526117a181611768565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611802602383610f98565b915061180d826117a8565b604082019050919050565b5f6020820190508181035f83015261182f816117f6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611890602683610f98565b915061189b82611836565b604082019050919050565b5f6020820190508181035f8301526118bd81611884565b905091905056fea2646970667358221220917a2b47f41ae7c51b7ed6ee0cfab6d75bee029a68a8b7b6ea384db1ff53aad864736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000001406f400000000000000000000000006612074a8269e3894b0e0dd79ebec1697663da7b0000000000000000000000003050b2d7cd8b576227cf0acf9e5aa595d8e89cc6000000000000000000000000000000000000000000000000000000000000000c417065436f696e546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034150450000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): ApeCoinToken
Arg [1] : symbol_ (string): APE
Arg [2] : initialSupply_ (uint256): 21000000
Arg [3] : communityWallet_ (address): 0x6612074a8269e3894b0e0dd79eBeC1697663dA7B
Arg [4] : developmentWallet_ (address): 0x3050B2d7Cd8B576227cF0Acf9e5aA595d8E89CC6
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000001406f40
Arg [3] : 0000000000000000000000006612074a8269e3894b0e0dd79ebec1697663da7b
Arg [4] : 0000000000000000000000003050b2d7cd8b576227cf0acf9e5aa595d8e89cc6
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 417065436f696e546f6b656e0000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4150450000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
21001:1804:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6932:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9283:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8052:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10064:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7894:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10768:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21132:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8223:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20064:103;;;:::i;:::-;;19416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7151:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11509:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8556:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21078:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21227:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21190:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22527:275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8812:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20322:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6932:100;6986:13;7019:5;7012:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6932:100;:::o;9283:201::-;9366:4;9383:13;9399:12;:10;:12::i;:::-;9383:28;;9422:32;9431:5;9438:7;9447:6;9422:8;:32::i;:::-;9472:4;9465:11;;;9283:201;;;;:::o;8052:108::-;8113:7;8140:12;;8133:19;;8052:108;:::o;10064:295::-;10195:4;10212:15;10230:12;:10;:12::i;:::-;10212:30;;10253:38;10269:4;10275:7;10284:6;10253:15;:38::i;:::-;10302:27;10312:4;10318:2;10322:6;10302:9;:27::i;:::-;10347:4;10340:11;;;10064:295;;;;;:::o;7894:93::-;7952:5;7977:2;7970:9;;7894:93;:::o;10768:238::-;10856:4;10873:13;10889:12;:10;:12::i;:::-;10873:28;;10912:64;10921:5;10928:7;10965:10;10937:25;10947:5;10954:7;10937:9;:25::i;:::-;:38;;;;:::i;:::-;10912:8;:64::i;:::-;10994:4;10987:11;;;10768:238;;;;:::o;21132:49::-;21180:1;21132:49;:::o;8223:127::-;8297:7;8324:9;:18;8334:7;8324:18;;;;;;;;;;;;;;;;8317:25;;8223:127;;;:::o;20064:103::-;19302:13;:11;:13::i;:::-;20129:30:::1;20156:1;20129:18;:30::i;:::-;20064:103::o:0;19416:87::-;19462:7;19489:6;;;;;;;;;;;19482:13;;19416:87;:::o;7151:104::-;7207:13;7240:7;7233:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7151:104;:::o;11509:436::-;11602:4;11619:13;11635:12;:10;:12::i;:::-;11619:28;;11658:24;11685:25;11695:5;11702:7;11685:9;:25::i;:::-;11658:52;;11749:15;11729:16;:35;;11721:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11842:60;11851:5;11858:7;11886:15;11867:16;:34;11842:8;:60::i;:::-;11933:4;11926:11;;;;11509:436;;;;:::o;8556:193::-;8635:4;8652:13;8668:12;:10;:12::i;:::-;8652:28;;8691;8701:5;8708:2;8712:6;8691:9;:28::i;:::-;8737:4;8730:11;;;8556:193;;;;:::o;21078:47::-;21124:1;21078:47;:::o;21227:32::-;;;;;;;;;;;;;:::o;21190:30::-;;;;;;;;;;;;;:::o;22527:275::-;19302:13;:11;:13::i;:::-;22653:18:::1;22635:15;;:36;;;;;;;;;;;;;;;;;;22702:20;22682:17;;:40;;;;;;;;;;;;;;;;;;22738:56;22753:18;22773:20;22738:56;;;;;;;:::i;:::-;;;;;;;;22527:275:::0;;:::o;8812:151::-;8901:7;8928:11;:18;8940:5;8928:18;;;;;;;;;;;;;;;:27;8947:7;8928:27;;;;;;;;;;;;;;;;8921:34;;8812:151;;;;:::o;20322:201::-;19302:13;:11;:13::i;:::-;20431:1:::1;20411:22;;:8;:22;;::::0;20403:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;20487:28;20506:8;20487:18;:28::i;:::-;20322:201:::0;:::o;4513:98::-;4566:7;4593:10;4586:17;;4513:98;:::o;15536:380::-;15689:1;15672:19;;:5;:19;;;15664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15770:1;15751:21;;:7;:21;;;15743:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15854:6;15824:11;:18;15836:5;15824:18;;;;;;;;;;;;;;;:27;15843:7;15824:27;;;;;;;;;;;;;;;:36;;;;15892:7;15876:32;;15885:5;15876:32;;;15901:6;15876:32;;;;;;:::i;:::-;;;;;;;;15536:380;;;:::o;16207:453::-;16342:24;16369:25;16379:5;16386:7;16369:9;:25::i;:::-;16342:52;;16429:17;16409:16;:37;16405:248;;16491:6;16471:16;:26;;16463:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16575:51;16584:5;16591:7;16619:6;16600:16;:25;16575:8;:51::i;:::-;16405:248;16331:329;16207:453;;;:::o;21715:752::-;21890:20;21946:3;21124:1;21914:6;:28;;;;:::i;:::-;21913:36;;;;:::i;:::-;21890:59;;21960:22;22020:3;21180:1;21986:6;:30;;;;:::i;:::-;21985:38;;;;:::i;:::-;21960:63;;22034:16;22068:14;22053:12;:29;;;;:::i;:::-;22034:48;;22093:22;22127:8;22118:6;:17;;;;:::i;:::-;22093:42;;22196:1;22181:12;:16;22177:103;;;22214:54;22230:6;22238:15;;;;;;;;;;;22255:12;22214:15;:54::i;:::-;22177:103;22311:1;22294:14;:18;22290:109;;;22329:58;22345:6;22353:17;;;;;;;;;;;22372:14;22329:15;:58::i;:::-;22290:109;22409:50;22425:6;22433:9;22444:14;22409:15;:50::i;:::-;21845:622;;;;21715:752;;;:::o;19581:132::-;19656:12;:10;:12::i;:::-;19645:23;;:7;:5;:7::i;:::-;:23;;;19637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19581:132::o;20683:191::-;20757:16;20776:6;;;;;;;;;;;20757:25;;20802:8;20793:6;;:17;;;;;;;;;;;;;;;;;;20857:8;20826:40;;20847:8;20826:40;;;;;;;;;;;;20746:128;20683:191;:::o;12415:840::-;12562:1;12546:18;;:4;:18;;;12538:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12639:1;12625:16;;:2;:16;;;12617:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12694:38;12715:4;12721:2;12725:6;12694:20;:38::i;:::-;12745:19;12767:9;:15;12777:4;12767:15;;;;;;;;;;;;;;;;12745:37;;12816:6;12801:11;:21;;12793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12933:6;12919:11;:20;12901:9;:15;12911:4;12901:15;;;;;;;;;;;;;;;:38;;;;13136:6;13119:9;:13;13129:2;13119:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13186:2;13171:26;;13180:4;13171:26;;;13190:6;13171:26;;;;;;:::i;:::-;;;;;;;;13210:37;13230:4;13236:2;13240:6;13210:19;:37::i;:::-;12527:728;12415:840;;;:::o;17260:125::-;;;;:::o;17989:124::-;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:474::-;5501:6;5509;5558:2;5546:9;5537:7;5533:23;5529:32;5526:119;;;5564:79;;:::i;:::-;5526:119;5684:1;5709:53;5754:7;5745:6;5734:9;5730:22;5709:53;:::i;:::-;5699:63;;5655:117;5811:2;5837:53;5882:7;5873:6;5862:9;5858:22;5837:53;:::i;:::-;5827:63;;5782:118;5433:474;;;;;:::o;5913:180::-;5961:77;5958:1;5951:88;6058:4;6055:1;6048:15;6082:4;6079:1;6072:15;6099:320;6143:6;6180:1;6174:4;6170:12;6160:22;;6227:1;6221:4;6217:12;6248:18;6238:81;;6304:4;6296:6;6292:17;6282:27;;6238:81;6366:2;6358:6;6355:14;6335:18;6332:38;6329:84;;6385:18;;:::i;:::-;6329:84;6150:269;6099:320;;;:::o;6425:180::-;6473:77;6470:1;6463:88;6570:4;6567:1;6560:15;6594:4;6591:1;6584:15;6611:191;6651:3;6670:20;6688:1;6670:20;:::i;:::-;6665:25;;6704:20;6722:1;6704:20;:::i;:::-;6699:25;;6747:1;6744;6740:9;6733:16;;6768:3;6765:1;6762:10;6759:36;;;6775:18;;:::i;:::-;6759:36;6611:191;;;;:::o;6808:224::-;6948:34;6944:1;6936:6;6932:14;6925:58;7017:7;7012:2;7004:6;7000:15;6993:32;6808:224;:::o;7038:366::-;7180:3;7201:67;7265:2;7260:3;7201:67;:::i;:::-;7194:74;;7277:93;7366:3;7277:93;:::i;:::-;7395:2;7390:3;7386:12;7379:19;;7038:366;;;:::o;7410:419::-;7576:4;7614:2;7603:9;7599:18;7591:26;;7663:9;7657:4;7653:20;7649:1;7638:9;7634:17;7627:47;7691:131;7817:4;7691:131;:::i;:::-;7683:139;;7410:419;;;:::o;7835:332::-;7956:4;7994:2;7983:9;7979:18;7971:26;;8007:71;8075:1;8064:9;8060:17;8051:6;8007:71;:::i;:::-;8088:72;8156:2;8145:9;8141:18;8132:6;8088:72;:::i;:::-;7835:332;;;;;:::o;8173:225::-;8313:34;8309:1;8301:6;8297:14;8290:58;8382:8;8377:2;8369:6;8365:15;8358:33;8173:225;:::o;8404:366::-;8546:3;8567:67;8631:2;8626:3;8567:67;:::i;:::-;8560:74;;8643:93;8732:3;8643:93;:::i;:::-;8761:2;8756:3;8752:12;8745:19;;8404:366;;;:::o;8776:419::-;8942:4;8980:2;8969:9;8965:18;8957:26;;9029:9;9023:4;9019:20;9015:1;9004:9;9000:17;8993:47;9057:131;9183:4;9057:131;:::i;:::-;9049:139;;8776:419;;;:::o;9201:223::-;9341:34;9337:1;9329:6;9325:14;9318:58;9410:6;9405:2;9397:6;9393:15;9386:31;9201:223;:::o;9430:366::-;9572:3;9593:67;9657:2;9652:3;9593:67;:::i;:::-;9586:74;;9669:93;9758:3;9669:93;:::i;:::-;9787:2;9782:3;9778:12;9771:19;;9430:366;;;:::o;9802:419::-;9968:4;10006:2;9995:9;9991:18;9983:26;;10055:9;10049:4;10045:20;10041:1;10030:9;10026:17;10019:47;10083:131;10209:4;10083:131;:::i;:::-;10075:139;;9802:419;;;:::o;10227:221::-;10367:34;10363:1;10355:6;10351:14;10344:58;10436:4;10431:2;10423:6;10419:15;10412:29;10227:221;:::o;10454:366::-;10596:3;10617:67;10681:2;10676:3;10617:67;:::i;:::-;10610:74;;10693:93;10782:3;10693:93;:::i;:::-;10811:2;10806:3;10802:12;10795:19;;10454:366;;;:::o;10826:419::-;10992:4;11030:2;11019:9;11015:18;11007:26;;11079:9;11073:4;11069:20;11065:1;11054:9;11050:17;11043:47;11107:131;11233:4;11107:131;:::i;:::-;11099:139;;10826:419;;;:::o;11251:179::-;11391:31;11387:1;11379:6;11375:14;11368:55;11251:179;:::o;11436:366::-;11578:3;11599:67;11663:2;11658:3;11599:67;:::i;:::-;11592:74;;11675:93;11764:3;11675:93;:::i;:::-;11793:2;11788:3;11784:12;11777:19;;11436:366;;;:::o;11808:419::-;11974:4;12012:2;12001:9;11997:18;11989:26;;12061:9;12055:4;12051:20;12047:1;12036:9;12032:17;12025:47;12089:131;12215:4;12089:131;:::i;:::-;12081:139;;11808:419;;;:::o;12233:410::-;12273:7;12296:20;12314:1;12296:20;:::i;:::-;12291:25;;12330:20;12348:1;12330:20;:::i;:::-;12325:25;;12385:1;12382;12378:9;12407:30;12425:11;12407:30;:::i;:::-;12396:41;;12586:1;12577:7;12573:15;12570:1;12567:22;12547:1;12540:9;12520:83;12497:139;;12616:18;;:::i;:::-;12497:139;12281:362;12233:410;;;;:::o;12649:180::-;12697:77;12694:1;12687:88;12794:4;12791:1;12784:15;12818:4;12815:1;12808:15;12835:185;12875:1;12892:20;12910:1;12892:20;:::i;:::-;12887:25;;12926:20;12944:1;12926:20;:::i;:::-;12921:25;;12965:1;12955:35;;12970:18;;:::i;:::-;12955:35;13012:1;13009;13005:9;13000:14;;12835:185;;;;:::o;13026:194::-;13066:4;13086:20;13104:1;13086:20;:::i;:::-;13081:25;;13120:20;13138:1;13120:20;:::i;:::-;13115:25;;13164:1;13161;13157:9;13149:17;;13188:1;13182:4;13179:11;13176:37;;;13193:18;;:::i;:::-;13176:37;13026:194;;;;:::o;13226:182::-;13366:34;13362:1;13354:6;13350:14;13343:58;13226:182;:::o;13414:366::-;13556:3;13577:67;13641:2;13636:3;13577:67;:::i;:::-;13570:74;;13653:93;13742:3;13653:93;:::i;:::-;13771:2;13766:3;13762:12;13755:19;;13414:366;;;:::o;13786:419::-;13952:4;13990:2;13979:9;13975:18;13967:26;;14039:9;14033:4;14029:20;14025:1;14014:9;14010:17;14003:47;14067:131;14193:4;14067:131;:::i;:::-;14059:139;;13786:419;;;:::o;14211:224::-;14351:34;14347:1;14339:6;14335:14;14328:58;14420:7;14415:2;14407:6;14403:15;14396:32;14211:224;:::o;14441:366::-;14583:3;14604:67;14668:2;14663:3;14604:67;:::i;:::-;14597:74;;14680:93;14769:3;14680:93;:::i;:::-;14798:2;14793:3;14789:12;14782:19;;14441:366;;;:::o;14813:419::-;14979:4;15017:2;15006:9;15002:18;14994:26;;15066:9;15060:4;15056:20;15052:1;15041:9;15037:17;15030:47;15094:131;15220:4;15094:131;:::i;:::-;15086:139;;14813:419;;;:::o;15238:222::-;15378:34;15374:1;15366:6;15362:14;15355:58;15447:5;15442:2;15434:6;15430:15;15423:30;15238:222;:::o;15466:366::-;15608:3;15629:67;15693:2;15688:3;15629:67;:::i;:::-;15622:74;;15705:93;15794:3;15705:93;:::i;:::-;15823:2;15818:3;15814:12;15807:19;;15466:366;;;:::o;15838:419::-;16004:4;16042:2;16031:9;16027:18;16019:26;;16091:9;16085:4;16081:20;16077:1;16066:9;16062:17;16055:47;16119:131;16245:4;16119:131;:::i;:::-;16111:139;;15838:419;;;:::o;16263:225::-;16403:34;16399:1;16391:6;16387:14;16380:58;16472:8;16467:2;16459:6;16455:15;16448:33;16263:225;:::o;16494:366::-;16636:3;16657:67;16721:2;16716:3;16657:67;:::i;:::-;16650:74;;16733:93;16822:3;16733:93;:::i;:::-;16851:2;16846:3;16842:12;16835:19;;16494:366;;;:::o;16866:419::-;17032:4;17070:2;17059:9;17055:18;17047:26;;17119:9;17113:4;17109:20;17105:1;17094:9;17090:17;17083:47;17147:131;17273:4;17147:131;:::i;:::-;17139:139;;16866:419;;;:::o
Swarm Source
ipfs://917a2b47f41ae7c51b7ed6ee0cfab6d75bee029a68a8b7b6ea384db1ff53aad8
[ 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.