Feature Tip: Add private address tag to any address under My Name Tag !
Overview
Max Total Supply
1,000,000,000 ATHENA
Holders
415 ( 1.928%)
Market
Price
$0.00 @ 0.000000 ETH (+13.64%)
Onchain Market Cap
$501,870.00
Circulating Supply Market Cap
$501,871.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.025488108739379901 ATHENAValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
AthenaContract
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-09-20 */ // SPDX-License-Identifier: MIT /* Project Athena All links: https://linktr.ee/ProjectAthena Website: https://athena.foo/ Twitter: https://x.com/athena_foo/ This contract implements some level of redundancy for user safety: - maximum 10% tax for all taxes combined - liquidity threshold that auto shuts off max tokens per wallet limit - liquidity threshold that auto shuts off the liquidity tax - contract function that's used to add liquidity will NOT return LP tokens to the caller instead, it will be deposited into the contract address & ownership renounced essentially burning LP tokens */ // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 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); } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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 _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `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 _allowances[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 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 `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); } /** * @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 _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } 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 Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), 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)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, 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); } } } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: Athena-Token/ProjectAthena.sol pragma solidity ^0.8.20; contract AthenaContract is ERC20, Ownable, ReentrancyGuard { struct TaxInfo { uint16 marketingTax; uint16 teamTax; uint16 communityTax; uint16 liquidityTax; } IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool public isUniswapV2RouterSet; TaxInfo public taxInfo; address public teamWallet; uint16 public constant MAX_TOTAL_TAX = 100; // 10% max total tax uint16 public constant TAX_DENOMINATOR = 1000; // Now 10 = 1% uint128 public maxTokensPerWallet; bool public maxWalletLimitEnabled = true; mapping(address => bool) private _isExcludedFromMaxWallet; mapping(address => bool) private _isExcludedFromFees; uint128 public totalEthAddedToLiquidity; uint256 public constant WALLET_LIMIT_THRESHOLD = 5 ether; uint256 public constant LIQUIDITY_TAX_THRESHOLD = 15 ether; event LiquidityAdded( uint256 tokensSwapped, uint256 ethAdded, uint256 tokensIntoLiquidity, uint256 liquidityTokens ); event TaxCollected( uint256 marketingTax, uint256 teamTax, uint256 communityTax, uint256 liquidityTax ); constructor( string memory name, string memory symbol, uint256 initialSupply, address _teamWallet, TaxInfo memory _taxInfo, uint128 _maxTokensPerWallet ) ERC20(name, symbol) Ownable(msg.sender) { require(_teamWallet != address(0), "Team wallet address cannot be zero"); require( _taxInfo.marketingTax + _taxInfo.teamTax + _taxInfo.communityTax + _taxInfo.liquidityTax <= MAX_TOTAL_TAX, "Total tax exceeds maximum 10%" ); teamWallet = _teamWallet; taxInfo = _taxInfo; maxTokensPerWallet = _maxTokensPerWallet; _mint(msg.sender, initialSupply); _isExcludedFromMaxWallet[owner()] = true; _isExcludedFromMaxWallet[address(this)] = true; // remove this _isExcludedFromMaxWallet[_teamWallet] = true; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[address(this)] = true; // remove this _isExcludedFromFees[_teamWallet] = true; } function setUniswapV2Router(address _routerAddress) external onlyOwner { require(!isUniswapV2RouterSet, "Uniswap V2 Router already set"); require(_routerAddress != address(0), "Invalid router address"); uniswapV2Router = IUniswapV2Router02(_routerAddress); isUniswapV2RouterSet = true; } function setUniswapV2Pair(address _pair) external onlyOwner { require(uniswapV2Pair == address(0), "Pair already set"); uniswapV2Pair = _pair; _isExcludedFromMaxWallet[uniswapV2Pair] = true; } function getUniswapV2PairAddress() public view returns (address) { require(isUniswapV2RouterSet, "Uniswap V2 Router not set"); return IUniswapV2Factory(uniswapV2Router.factory()).getPair( address(this), uniswapV2Router.WETH() ); } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { return _transferWithTax(_msgSender(), recipient, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(sender, spender, amount); return _transferWithTax(sender, recipient, amount); } function _transferWithTax( address sender, address recipient, uint256 amount ) internal returns (bool) { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); uint256 senderBalance = balanceOf(sender); require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); if ( maxWalletLimitEnabled && !_isExcludedFromMaxWallet[recipient] && recipient != uniswapV2Pair ) { require( balanceOf(recipient) + amount <= maxTokensPerWallet, "Exceeds max wallet limit" ); } uint256 transferAmount = amount; if (!_isExcludedFromFees[sender] && !_isExcludedFromFees[recipient]) { uint256 taxAmount = _calculateTotalTax(amount); unchecked { transferAmount = amount - taxAmount; } _transfer(sender, teamWallet, taxAmount); _emitTaxCollectedEvent(taxAmount); } _transfer(sender, recipient, transferAmount); return true; } function _calculateTotalTax(uint256 amount) internal view returns (uint256) { uint16 totalTax = taxInfo.marketingTax + taxInfo.teamTax + taxInfo.communityTax + taxInfo.liquidityTax; return (amount * totalTax) / TAX_DENOMINATOR; } function _emitTaxCollectedEvent(uint256 taxAmount) internal { uint16 totalTax = taxInfo.marketingTax + taxInfo.teamTax + taxInfo.communityTax + taxInfo.liquidityTax; uint256 marketingAmount = (taxAmount * taxInfo.marketingTax) / totalTax; uint256 teamAmount = (taxAmount * taxInfo.teamTax) / totalTax; uint256 communityAmount = (taxAmount * taxInfo.communityTax) / totalTax; uint256 liquidityAmount = (taxAmount * taxInfo.liquidityTax) / totalTax; emit TaxCollected(marketingAmount, teamAmount, communityAmount, liquidityAmount); } // Helper function to swap tokens for ETH function _swapTokensForEth(uint256 tokenAmount, uint256 minEthAmount) private returns (uint256) { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uint256 initialEthBalance = address(this).balance; uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, minEthAmount, path, address(this), block.timestamp ); return address(this).balance - initialEthBalance; } // Helper function to add liquidity function _addLiquidity( uint256 tokenAmount, uint256 ethAmount ) private returns ( uint256, uint256, uint256 ) { _approve(address(this), address(uniswapV2Router), tokenAmount); ( uint256 tokenUsed, uint256 ethUsed, uint256 liquidity ) = uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); return (tokenUsed, ethUsed, liquidity); } function addLiquidityManually(uint256 tokenAmount) external { require(isUniswapV2RouterSet, "Uniswap V2 Router not set"); require(tokenAmount > 0, "Must provide tokens for liquidity"); require(balanceOf(msg.sender) >= tokenAmount, "Insufficient balance"); uint256 half = tokenAmount / 2; // Get the expected ETH amount uint256 expectedEth = getExpectedEthForTokens(half); // Set acceptable slippage (e.g., 5%) uint256 minEthAmount = expectedEth * 95 / 100; uint256 initialTokenBalance = balanceOf(address(this)); uint256 initialEthBalance = address(this).balance; _transfer(msg.sender, address(this), tokenAmount); uint256 ethForLiquidity = _swapTokensForEth(half, minEthAmount); (uint256 tokenUsed, uint256 ethUsed, uint256 liquidity) = _addLiquidity( tokenAmount - half, ethForLiquidity ); totalEthAddedToLiquidity += uint128(ethUsed); if (totalEthAddedToLiquidity >= WALLET_LIMIT_THRESHOLD && maxWalletLimitEnabled) { maxWalletLimitEnabled = false; } if (totalEthAddedToLiquidity >= LIQUIDITY_TAX_THRESHOLD && taxInfo.liquidityTax > 0) { taxInfo.liquidityTax = 0; } // Return leftover tokens uint256 leftoverTokens = balanceOf(address(this)) - initialTokenBalance; if (leftoverTokens > 0) { _transfer(address(this), msg.sender, leftoverTokens); } // Return leftover ETH uint256 leftoverEth = address(this).balance - initialEthBalance; if (leftoverEth > 0) { (bool success, ) = msg.sender.call{value: leftoverEth}(""); require(success, "ETH transfer failed"); } emit LiquidityAdded(half, ethUsed, tokenUsed, liquidity); } function getExpectedEthForTokens(uint256 tokenAmount) public view returns (uint256) { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256[] memory amounts = uniswapV2Router.getAmountsOut( tokenAmount, path ); return amounts[1]; } function setTaxes(TaxInfo memory _taxInfo) external onlyOwner { require( _taxInfo.marketingTax + _taxInfo.teamTax + _taxInfo.communityTax + _taxInfo.liquidityTax <= MAX_TOTAL_TAX, "Total tax exceeds maximum 10%" ); taxInfo = _taxInfo; } function setTeamWallet(address _teamWallet) external onlyOwner { require(_teamWallet != address(0), "Team wallet address cannot be zero"); teamWallet = _teamWallet; _isExcludedFromMaxWallet[_teamWallet] = true; _isExcludedFromFees[_teamWallet] = true; } function setMaxTokensPerWallet(uint128 _maxTokensPerWallet) external onlyOwner { maxTokensPerWallet = _maxTokensPerWallet; } function excludeFromMaxWallet(address account, bool excluded) external onlyOwner { _isExcludedFromMaxWallet[account] = excluded; } function excludeFromFees(address account, bool excluded) external onlyOwner { _isExcludedFromFees[account] = excluded; } function isExcludedFromMaxWallet(address account) public view returns (bool) { return _isExcludedFromMaxWallet[account]; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } receive() external payable {} }
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":"_teamWallet","type":"address"},{"components":[{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"communityTax","type":"uint16"},{"internalType":"uint16","name":"liquidityTax","type":"uint16"}],"internalType":"struct AthenaContract.TaxInfo","name":"_taxInfo","type":"tuple"},{"internalType":"uint128","name":"_maxTokensPerWallet","type":"uint128"}],"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAdded","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityTokens","type":"uint256"}],"name":"LiquidityAdded","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":false,"internalType":"uint256","name":"marketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"teamTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"communityTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"name":"TaxCollected","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":"LIQUIDITY_TAX_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOTAL_TAX","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TAX_DENOMINATOR","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLET_LIMIT_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidityManually","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"getExpectedEthForTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapV2PairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUniswapV2RouterSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWallet","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"_maxTokensPerWallet","type":"uint128"}],"name":"setMaxTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"communityTax","type":"uint16"},{"internalType":"uint16","name":"liquidityTax","type":"uint16"}],"internalType":"struct AthenaContract.TaxInfo","name":"_taxInfo","type":"tuple"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"name":"setUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxInfo","outputs":[{"internalType":"uint16","name":"marketingTax","type":"uint16"},{"internalType":"uint16","name":"teamTax","type":"uint16"},{"internalType":"uint16","name":"communityTax","type":"uint16"},{"internalType":"uint16","name":"liquidityTax","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEthAddedToLiquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600b60106101000a81548160ff02191690831515021790555034801561002a575f80fd5b50604051614f5b380380614f5b833981810160405281019061004c9190610b72565b338686816003908161005e9190610e39565b50806004908161006e9190610e39565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100e1575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100d89190610f17565b60405180910390fd5b6100f08161051a60201b60201c565b5060016006819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015e90610fb0565b60405180910390fd5b606461ffff16826060015183604001518460200151855f015161018a9190610ffb565b6101949190610ffb565b61019e9190610ffb565b61ffff1611156101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061107a565b60405180910390fd5b82600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160095f820151815f015f6101000a81548161ffff021916908361ffff1602179055506020820151815f0160026101000a81548161ffff021916908361ffff1602179055506040820151815f0160046101000a81548161ffff021916908361ffff1602179055506060820151815f0160066101000a81548161ffff021916908361ffff16021790555090505080600b5f6101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506102f733856105dd60201b60201c565b6001600c5f61030a61066260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f61041661066260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050505050611128565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361064d575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016106449190610f17565b60405180910390fd5b61065e5f838361068a60201b60201c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036106da578060025f8282546106ce9190611098565b925050819055506107a8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610763578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161075a939291906110da565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ef578060025f8282540392505081905550610839565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610896919061110f565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610902826108bc565b810181811067ffffffffffffffff82111715610921576109206108cc565b5b80604052505050565b5f6109336108a3565b905061093f82826108f9565b919050565b5f67ffffffffffffffff82111561095e5761095d6108cc565b5b610967826108bc565b9050602081019050919050565b8281835e5f83830152505050565b5f61099461098f84610944565b61092a565b9050828152602081018484840111156109b0576109af6108b8565b5b6109bb848285610974565b509392505050565b5f82601f8301126109d7576109d66108b4565b5b81516109e7848260208601610982565b91505092915050565b5f819050919050565b610a02816109f0565b8114610a0c575f80fd5b50565b5f81519050610a1d816109f9565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a4c82610a23565b9050919050565b610a5c81610a42565b8114610a66575f80fd5b50565b5f81519050610a7781610a53565b92915050565b5f80fd5b5f61ffff82169050919050565b610a9781610a81565b8114610aa1575f80fd5b50565b5f81519050610ab281610a8e565b92915050565b5f60808284031215610acd57610acc610a7d565b5b610ad7608061092a565b90505f610ae684828501610aa4565b5f830152506020610af984828501610aa4565b6020830152506040610b0d84828501610aa4565b6040830152506060610b2184828501610aa4565b60608301525092915050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b610b5181610b2d565b8114610b5b575f80fd5b50565b5f81519050610b6c81610b48565b92915050565b5f805f805f806101208789031215610b8d57610b8c6108ac565b5b5f87015167ffffffffffffffff811115610baa57610ba96108b0565b5b610bb689828a016109c3565b965050602087015167ffffffffffffffff811115610bd757610bd66108b0565b5b610be389828a016109c3565b9550506040610bf489828a01610a0f565b9450506060610c0589828a01610a69565b9350506080610c1689828a01610ab8565b925050610100610c2889828a01610b5e565b9150509295509295509295565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610c8357607f821691505b602082108103610c9657610c95610c3f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610cf87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610cbd565b610d028683610cbd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610d3d610d38610d33846109f0565b610d1a565b6109f0565b9050919050565b5f819050919050565b610d5683610d23565b610d6a610d6282610d44565b848454610cc9565b825550505050565b5f90565b610d7e610d72565b610d89818484610d4d565b505050565b5b81811015610dac57610da15f82610d76565b600181019050610d8f565b5050565b601f821115610df157610dc281610c9c565b610dcb84610cae565b81016020851015610dda578190505b610dee610de685610cae565b830182610d8e565b50505b505050565b5f82821c905092915050565b5f610e115f1984600802610df6565b1980831691505092915050565b5f610e298383610e02565b9150826002028217905092915050565b610e4282610c35565b67ffffffffffffffff811115610e5b57610e5a6108cc565b5b610e658254610c6c565b610e70828285610db0565b5f60209050601f831160018114610ea1575f8415610e8f578287015190505b610e998582610e1e565b865550610f00565b601f198416610eaf86610c9c565b5f5b82811015610ed657848901518255600182019150602085019450602081019050610eb1565b86831015610ef35784890151610eef601f891682610e02565b8355505b6001600288020188555050505b505050505050565b610f1181610a42565b82525050565b5f602082019050610f2a5f830184610f08565b92915050565b5f82825260208201905092915050565b7f5465616d2077616c6c657420616464726573732063616e6e6f74206265207a655f8201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b5f610f9a602283610f30565b9150610fa582610f40565b604082019050919050565b5f6020820190508181035f830152610fc781610f8e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61100582610a81565b915061101083610a81565b9250828201905061ffff81111561102a57611029610fce565b5b92915050565b7f546f74616c207461782065786365656473206d6178696d756d203130250000005f82015250565b5f611064601d83610f30565b915061106f82611030565b602082019050919050565b5f6020820190508181035f83015261109181611058565b9050919050565b5f6110a2826109f0565b91506110ad836109f0565b92508282019050808211156110c5576110c4610fce565b5b92915050565b6110d4816109f0565b82525050565b5f6060820190506110ed5f830186610f08565b6110fa60208301856110cb565b61110760408301846110cb565b949350505050565b5f6020820190506111225f8301846110cb565b92915050565b613e26806111355f395ff3fe608060405260043610610212575f3560e01c8063715018a611610117578063ab968c071161009f578063d2fcc0011161006e578063d2fcc0011461078f578063dd62ed3e146107b7578063e934da8c146107f3578063f2fde38b14610820578063fe39e4491461084857610219565b8063ab968c07146106d9578063b130197a14610715578063bd5f2b0f1461073d578063c02466681461076757610219565b8063976cde3a116100e6578063976cde3a146105f9578063a29a608914610621578063a51c9ace14610649578063a9059cbb14610673578063aab01fd6146106af57610219565b8063715018a614610567578063852fb8581461057d5780638da5cb5b146105a557806395d89b41146105cf57610219565b80633e29b9ad1161019a57806349bd5a5e1161016957806349bd5a5e1461045f5780634fbee1931461048957806359927044146104c55780636dd3d39f146104ef57806370a082311461052b57610219565b80633e29b9ad146103b75780633f7b34ee146103e157806340348b4d1461040b578063469132ce1461043557610219565b80631694505e116101e15780631694505e146102d357806318160ddd146102fd57806321a9d82a1461032757806323b872dd14610351578063313ce5671461038d57610219565b806306fdde031461021d578063095ea7b3146102475780631419841d146102835780631525ff7d146102ab57610219565b3661021957005b5f80fd5b348015610228575f80fd5b50610231610872565b60405161023e9190612b87565b60405180910390f35b348015610252575f80fd5b5061026d60048036038101906102689190612c45565b610902565b60405161027a9190612c9d565b60405180910390f35b34801561028e575f80fd5b506102a960048036038101906102a49190612cb6565b610924565b005b3480156102b6575f80fd5b506102d160048036038101906102cc9190612cb6565b610a48565b005b3480156102de575f80fd5b506102e7610bab565b6040516102f49190612d3c565b60405180910390f35b348015610308575f80fd5b50610311610bd0565b60405161031e9190612d64565b60405180910390f35b348015610332575f80fd5b5061033b610bd9565b6040516103489190612c9d565b60405180910390f35b34801561035c575f80fd5b5061037760048036038101906103729190612d7d565b610bec565b6040516103849190612c9d565b60405180910390f35b348015610398575f80fd5b506103a1610c18565b6040516103ae9190612de8565b60405180910390f35b3480156103c2575f80fd5b506103cb610c20565b6040516103d89190612e10565b60405180910390f35b3480156103ec575f80fd5b506103f5610e09565b6040516104029190612e53565b60405180910390f35b348015610416575f80fd5b5061041f610e2a565b60405161042c9190612d64565b60405180910390f35b348015610440575f80fd5b50610449610e36565b6040516104569190612e53565b60405180910390f35b34801561046a575f80fd5b50610473610e57565b6040516104809190612e10565b60405180910390f35b348015610494575f80fd5b506104af60048036038101906104aa9190612cb6565b610e7c565b6040516104bc9190612c9d565b60405180910390f35b3480156104d0575f80fd5b506104d9610ece565b6040516104e69190612e10565b60405180910390f35b3480156104fa575f80fd5b5061051560048036038101906105109190612cb6565b610ef3565b6040516105229190612c9d565b60405180910390f35b348015610536575f80fd5b50610551600480360381019061054c9190612cb6565b610f45565b60405161055e9190612d64565b60405180910390f35b348015610572575f80fd5b5061057b610f8a565b005b348015610588575f80fd5b506105a3600480360381019061059e9190612e6c565b610f9d565b005b3480156105b0575f80fd5b506105b9611384565b6040516105c69190612e10565b60405180910390f35b3480156105da575f80fd5b506105e36113ac565b6040516105f09190612b87565b60405180910390f35b348015610604575f80fd5b5061061f600480360381019061061a9190612fbf565b61143c565b005b34801561062c575f80fd5b5061064760048036038101906106429190612cb6565b61154f565b005b348015610654575f80fd5b5061065d61169f565b60405161066a9190612ff9565b60405180910390f35b34801561067e575f80fd5b5061069960048036038101906106949190612c45565b6116a5565b6040516106a69190612c9d565b60405180910390f35b3480156106ba575f80fd5b506106c36116c0565b6040516106d09190612c9d565b60405180910390f35b3480156106e4575f80fd5b506106ff60048036038101906106fa9190612e6c565b6116d3565b60405161070c9190612d64565b60405180910390f35b348015610720575f80fd5b5061073b6004803603810190610736919061303c565b611911565b005b348015610748575f80fd5b50610751611954565b60405161075e9190612ff9565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190613091565b611959565b005b34801561079a575f80fd5b506107b560048036038101906107b09190613091565b6119b9565b005b3480156107c2575f80fd5b506107dd60048036038101906107d891906130cf565b611a19565b6040516107ea9190612d64565b60405180910390f35b3480156107fe575f80fd5b50610807611a9b565b604051610817949392919061310d565b60405180910390f35b34801561082b575f80fd5b5061084660048036038101906108419190612cb6565b611aec565b005b348015610853575f80fd5b5061085c611b70565b6040516108699190612d64565b60405180910390f35b6060600380546108819061317d565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad9061317d565b80156108f85780601f106108cf576101008083540402835291602001916108f8565b820191905f5260205f20905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b5f8061090c611b7c565b9050610919818585611b83565b600191505092915050565b61092c611b95565b600860149054906101000a900460ff161561097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906131f7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e19061325f565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860146101000a81548160ff02191690831515021790555050565b610a50611b95565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab5906132ed565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b600b60109054906101000a900460ff1681565b5f80610bf6611b7c565b9050610c03858285611c1c565b610c0e858585611cae565b9150509392505050565b5f6012905090565b5f600860149054906101000a900460ff16610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613355565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfe9190613387565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610da89190613387565b6040518363ffffffff1660e01b8152600401610dc59291906133b2565b602060405180830381865afa158015610de0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e049190613387565b905090565b600e5f9054906101000a90046fffffffffffffffffffffffffffffffff1681565b67d02ab486cedc000081565b600b5f9054906101000a90046fffffffffffffffffffffffffffffffff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f92611b95565b610f9b5f612028565b565b600860149054906101000a900460ff16610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613355565b60405180910390fd5b5f811161102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613449565b60405180910390fd5b8061103833610f45565b1015611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906134b1565b60405180910390fd5b5f6002826110879190613529565b90505f611093826116d3565b90505f6064605f836110a59190613559565b6110af9190613529565b90505f6110bb30610f45565b90505f4790506110cc3330886120eb565b5f6110d786856121db565b90505f805f6110f1898b6110eb919061359a565b85612428565b92509250925081600e5f8282829054906101000a90046fffffffffffffffffffffffffffffffff1661112391906135cd565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550674563918244f40000600e5f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16101580156111ac5750600b60109054906101000a900460ff165b156111cc575f600b60106101000a81548160ff0219169083151502179055505b67d02ab486cedc0000600e5f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161015801561122857505f60095f0160069054906101000a900461ffff1661ffff16115b1561124d575f60095f0160066101000a81548161ffff021916908361ffff1602179055505b5f8661125830610f45565b611262919061359a565b90505f811115611278576112773033836120eb565b5b5f8647611285919061359a565b90505f811115611339575f3373ffffffffffffffffffffffffffffffffffffffff16826040516112b49061363d565b5f6040518083038185875af1925050503d805f81146112ee576040519150601f19603f3d011682016040523d82523d5f602084013e6112f3565b606091505b5050905080611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e9061369b565b60405180910390fd5b505b7f59af97c63758a02bfe06cf264fb416eba51db5020c6b61c1604d2fa1afafed618b85878660405161136e94939291906136b9565b60405180910390a1505050505050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113bb9061317d565b80601f01602080910402602001604051908101604052809291908181526020018280546113e79061317d565b80156114325780601f1061140957610100808354040283529160200191611432565b820191905f5260205f20905b81548152906001019060200180831161141557829003601f168201915b5050505050905090565b611444611b95565b606461ffff16816060015182604001518360200151845f015161146791906136fc565b61147191906136fc565b61147b91906136fc565b61ffff1611156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b79061377b565b60405180910390fd5b8060095f820151815f015f6101000a81548161ffff021916908361ffff1602179055506020820151815f0160026101000a81548161ffff021916908361ffff1602179055506040820151815f0160046101000a81548161ffff021916908361ffff1602179055506060820151815f0160066101000a81548161ffff021916908361ffff16021790555090505050565b611557611b95565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906137e3565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6103e881565b5f6116b86116b1611b7c565b8484611cae565b905092915050565b600860149054906101000a900460ff1681565b5f80600267ffffffffffffffff8111156116f0576116ef612e9b565b5b60405190808252806020026020018201604052801561171e5781602001602082028036833780820191505090505b50905030815f8151811061173557611734613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117fd9190613387565b8160018151811061181157611810613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f85846040518363ffffffff1660e01b81526004016118a89291906138e5565b5f60405180830381865afa1580156118c2573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906118ea91906139ef565b905080600181518110611900576118ff613801565b5b602002602001015192505050919050565b611919611b95565b80600b5f6101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b606481565b611961611b95565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6119c1611b95565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6009805f015f9054906101000a900461ffff1690805f0160029054906101000a900461ffff1690805f0160049054906101000a900461ffff1690805f0160069054906101000a900461ffff16905084565b611af4611b95565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b64575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611b5b9190612e10565b60405180910390fd5b611b6d81612028565b50565b674563918244f4000081565b5f33905090565b611b908383836001612519565b505050565b611b9d611b7c565b73ffffffffffffffffffffffffffffffffffffffff16611bbb611384565b73ffffffffffffffffffffffffffffffffffffffff1614611c1a57611bde611b7c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611c119190612e10565b60405180910390fd5b565b5f611c278484611a19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ca85781811015611c99578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611c9093929190613a36565b60405180910390fd5b611ca784848484035f612519565b5b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490613adb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613b69565b60405180910390fd5b5f611d9585610f45565b905082811015611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613bf7565b60405180910390fd5b600b60109054906101000a900460ff168015611e3d5750600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e96575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611f2157600b5f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1683611ed586610f45565b611edf9190613c15565b1115611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613c92565b60405180910390fd5b5b5f839050600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611fc35750600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612010575f611fd2856126e8565b9050808503915061200587600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836120eb565b61200e8161277e565b505b61201b8686836120eb565b6001925050509392505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361215b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016121529190612e10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121cb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016121c29190612e10565b60405180910390fd5b6121d68383836128fe565b505050565b5f80600267ffffffffffffffff8111156121f8576121f7612e9b565b5b6040519080825280602002602001820160405280156122265781602001602082028036833780820191505090505b50905030815f8151811061223d5761223c613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123059190613387565b8160018151811061231957612318613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061237f3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611b83565b5f47905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94786868530426040518663ffffffff1660e01b81526004016123e5959493929190613cb0565b5f604051808303815f87803b1580156123fc575f80fd5b505af115801561240e573d5f803e3d5ffd5b50505050804761241e919061359a565b9250505092915050565b5f805f6124573060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687611b83565b5f805f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71988308b5f8030426040518863ffffffff1660e01b81526004016124bf96959493929190613d41565b60606040518083038185885af11580156124db573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906125009190613da0565b9250925092508282829550955095505050509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612589575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125809190612e10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125f9575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016125f09190612e10565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156126e2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516126d99190612d64565b60405180910390a35b50505050565b5f8060095f0160069054906101000a900461ffff1660095f0160049054906101000a900461ffff1660095f0160029054906101000a900461ffff1660095f015f9054906101000a900461ffff1661273f91906136fc565b61274991906136fc565b61275391906136fc565b90506103e861ffff168161ffff168461276c9190613559565b6127769190613529565b915050919050565b5f60095f0160069054906101000a900461ffff1660095f0160049054906101000a900461ffff1660095f0160029054906101000a900461ffff1660095f015f9054906101000a900461ffff166127d491906136fc565b6127de91906136fc565b6127e891906136fc565b90505f8161ffff1660095f015f9054906101000a900461ffff1661ffff16846128119190613559565b61281b9190613529565b90505f8261ffff1660095f0160029054906101000a900461ffff1661ffff16856128459190613559565b61284f9190613529565b90505f8361ffff1660095f0160049054906101000a900461ffff1661ffff16866128799190613559565b6128839190613529565b90505f8461ffff1660095f0160069054906101000a900461ffff1661ffff16876128ad9190613559565b6128b79190613529565b90507f3b16e63d8dedd802cbe63c525997d175d4dd90f3927e6c231f7e52949a2944ae848484846040516128ee94939291906136b9565b60405180910390a1505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361294e578060025f8282546129429190613c15565b92505081905550612a1c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156129d7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016129ce93929190613a36565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a63578060025f8282540392505081905550612aad565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b0a9190612d64565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612b5982612b17565b612b638185612b21565b9350612b73818560208601612b31565b612b7c81612b3f565b840191505092915050565b5f6020820190508181035f830152612b9f8184612b4f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612be182612bb8565b9050919050565b612bf181612bd7565b8114612bfb575f80fd5b50565b5f81359050612c0c81612be8565b92915050565b5f819050919050565b612c2481612c12565b8114612c2e575f80fd5b50565b5f81359050612c3f81612c1b565b92915050565b5f8060408385031215612c5b57612c5a612bb0565b5b5f612c6885828601612bfe565b9250506020612c7985828601612c31565b9150509250929050565b5f8115159050919050565b612c9781612c83565b82525050565b5f602082019050612cb05f830184612c8e565b92915050565b5f60208284031215612ccb57612cca612bb0565b5b5f612cd884828501612bfe565b91505092915050565b5f819050919050565b5f612d04612cff612cfa84612bb8565b612ce1565b612bb8565b9050919050565b5f612d1582612cea565b9050919050565b5f612d2682612d0b565b9050919050565b612d3681612d1c565b82525050565b5f602082019050612d4f5f830184612d2d565b92915050565b612d5e81612c12565b82525050565b5f602082019050612d775f830184612d55565b92915050565b5f805f60608486031215612d9457612d93612bb0565b5b5f612da186828701612bfe565b9350506020612db286828701612bfe565b9250506040612dc386828701612c31565b9150509250925092565b5f60ff82169050919050565b612de281612dcd565b82525050565b5f602082019050612dfb5f830184612dd9565b92915050565b612e0a81612bd7565b82525050565b5f602082019050612e235f830184612e01565b92915050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b612e4d81612e29565b82525050565b5f602082019050612e665f830184612e44565b92915050565b5f60208284031215612e8157612e80612bb0565b5b5f612e8e84828501612c31565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612ed182612b3f565b810181811067ffffffffffffffff82111715612ef057612eef612e9b565b5b80604052505050565b5f612f02612ba7565b9050612f0e8282612ec8565b919050565b5f61ffff82169050919050565b612f2981612f13565b8114612f33575f80fd5b50565b5f81359050612f4481612f20565b92915050565b5f60808284031215612f5f57612f5e612e97565b5b612f696080612ef9565b90505f612f7884828501612f36565b5f830152506020612f8b84828501612f36565b6020830152506040612f9f84828501612f36565b6040830152506060612fb384828501612f36565b60608301525092915050565b5f60808284031215612fd457612fd3612bb0565b5b5f612fe184828501612f4a565b91505092915050565b612ff381612f13565b82525050565b5f60208201905061300c5f830184612fea565b92915050565b61301b81612e29565b8114613025575f80fd5b50565b5f8135905061303681613012565b92915050565b5f6020828403121561305157613050612bb0565b5b5f61305e84828501613028565b91505092915050565b61307081612c83565b811461307a575f80fd5b50565b5f8135905061308b81613067565b92915050565b5f80604083850312156130a7576130a6612bb0565b5b5f6130b485828601612bfe565b92505060206130c58582860161307d565b9150509250929050565b5f80604083850312156130e5576130e4612bb0565b5b5f6130f285828601612bfe565b925050602061310385828601612bfe565b9150509250929050565b5f6080820190506131205f830187612fea565b61312d6020830186612fea565b61313a6040830185612fea565b6131476060830184612fea565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061319457607f821691505b6020821081036131a7576131a6613150565b5b50919050565b7f556e697377617020563220526f7574657220616c7265616479207365740000005f82015250565b5f6131e1601d83612b21565b91506131ec826131ad565b602082019050919050565b5f6020820190508181035f83015261320e816131d5565b9050919050565b7f496e76616c696420726f757465722061646472657373000000000000000000005f82015250565b5f613249601683612b21565b915061325482613215565b602082019050919050565b5f6020820190508181035f8301526132768161323d565b9050919050565b7f5465616d2077616c6c657420616464726573732063616e6e6f74206265207a655f8201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132d7602283612b21565b91506132e28261327d565b604082019050919050565b5f6020820190508181035f830152613304816132cb565b9050919050565b7f556e697377617020563220526f75746572206e6f7420736574000000000000005f82015250565b5f61333f601983612b21565b915061334a8261330b565b602082019050919050565b5f6020820190508181035f83015261336c81613333565b9050919050565b5f8151905061338181612be8565b92915050565b5f6020828403121561339c5761339b612bb0565b5b5f6133a984828501613373565b91505092915050565b5f6040820190506133c55f830185612e01565b6133d26020830184612e01565b9392505050565b7f4d7573742070726f7669646520746f6b656e7320666f72206c697175696469745f8201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b5f613433602183612b21565b915061343e826133d9565b604082019050919050565b5f6020820190508181035f83015261346081613427565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f61349b601483612b21565b91506134a682613467565b602082019050919050565b5f6020820190508181035f8301526134c88161348f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61353382612c12565b915061353e83612c12565b92508261354e5761354d6134cf565b5b828204905092915050565b5f61356382612c12565b915061356e83612c12565b925082820261357c81612c12565b91508282048414831517613593576135926134fc565b5b5092915050565b5f6135a482612c12565b91506135af83612c12565b92508282039050818111156135c7576135c66134fc565b5b92915050565b5f6135d782612e29565b91506135e283612e29565b925082820190506fffffffffffffffffffffffffffffffff81111561360a576136096134fc565b5b92915050565b5f81905092915050565b50565b5f6136285f83613610565b91506136338261361a565b5f82019050919050565b5f6136478261361d565b9150819050919050565b7f455448207472616e73666572206661696c6564000000000000000000000000005f82015250565b5f613685601383612b21565b915061369082613651565b602082019050919050565b5f6020820190508181035f8301526136b281613679565b9050919050565b5f6080820190506136cc5f830187612d55565b6136d96020830186612d55565b6136e66040830185612d55565b6136f36060830184612d55565b95945050505050565b5f61370682612f13565b915061371183612f13565b9250828201905061ffff81111561372b5761372a6134fc565b5b92915050565b7f546f74616c207461782065786365656473206d6178696d756d203130250000005f82015250565b5f613765601d83612b21565b915061377082613731565b602082019050919050565b5f6020820190508181035f83015261379281613759565b9050919050565b7f5061697220616c726561647920736574000000000000000000000000000000005f82015250565b5f6137cd601083612b21565b91506137d882613799565b602082019050919050565b5f6020820190508181035f8301526137fa816137c1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61386081612bd7565b82525050565b5f6138718383613857565b60208301905092915050565b5f602082019050919050565b5f6138938261382e565b61389d8185613838565b93506138a883613848565b805f5b838110156138d85781516138bf8882613866565b97506138ca8361387d565b9250506001810190506138ab565b5085935050505092915050565b5f6040820190506138f85f830185612d55565b818103602083015261390a8184613889565b90509392505050565b5f80fd5b5f67ffffffffffffffff82111561393157613930612e9b565b5b602082029050602081019050919050565b5f80fd5b5f8151905061395481612c1b565b92915050565b5f61396c61396784613917565b612ef9565b9050808382526020820190506020840283018581111561398f5761398e613942565b5b835b818110156139b857806139a48882613946565b845260208401935050602081019050613991565b5050509392505050565b5f82601f8301126139d6576139d5613913565b5b81516139e684826020860161395a565b91505092915050565b5f60208284031215613a0457613a03612bb0565b5b5f82015167ffffffffffffffff811115613a2157613a20612bb4565b5b613a2d848285016139c2565b91505092915050565b5f606082019050613a495f830186612e01565b613a566020830185612d55565b613a636040830184612d55565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613ac5602583612b21565b9150613ad082613a6b565b604082019050919050565b5f6020820190508181035f830152613af281613ab9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613b53602383612b21565b9150613b5e82613af9565b604082019050919050565b5f6020820190508181035f830152613b8081613b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613be1602683612b21565b9150613bec82613b87565b604082019050919050565b5f6020820190508181035f830152613c0e81613bd5565b9050919050565b5f613c1f82612c12565b9150613c2a83612c12565b9250828201905080821115613c4257613c416134fc565b5b92915050565b7f45786365656473206d61782077616c6c6574206c696d697400000000000000005f82015250565b5f613c7c601883612b21565b9150613c8782613c48565b602082019050919050565b5f6020820190508181035f830152613ca981613c70565b9050919050565b5f60a082019050613cc35f830188612d55565b613cd06020830187612d55565b8181036040830152613ce28186613889565b9050613cf16060830185612e01565b613cfe6080830184612d55565b9695505050505050565b5f819050919050565b5f613d2b613d26613d2184613d08565b612ce1565b612c12565b9050919050565b613d3b81613d11565b82525050565b5f60c082019050613d545f830189612e01565b613d616020830188612d55565b613d6e6040830187613d32565b613d7b6060830186613d32565b613d886080830185612e01565b613d9560a0830184612d55565b979650505050505050565b5f805f60608486031215613db757613db6612bb0565b5b5f613dc486828701613946565b9350506020613dd586828701613946565b9250506040613de686828701613946565b915050925092509256fea2646970667358221220cab8667b3c6190dac2a40013f5375fba7dfac56290afe94b2ae91e2e81c41a9b64736f6c634300081a0033000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000650921fbbbfadb71de6bdb8bd1de7c255578c602000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000108b2a2c28029094000000000000000000000000000000000000000000000000000000000000000000000e50726f6a65637420417468656e610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006415448454e410000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610212575f3560e01c8063715018a611610117578063ab968c071161009f578063d2fcc0011161006e578063d2fcc0011461078f578063dd62ed3e146107b7578063e934da8c146107f3578063f2fde38b14610820578063fe39e4491461084857610219565b8063ab968c07146106d9578063b130197a14610715578063bd5f2b0f1461073d578063c02466681461076757610219565b8063976cde3a116100e6578063976cde3a146105f9578063a29a608914610621578063a51c9ace14610649578063a9059cbb14610673578063aab01fd6146106af57610219565b8063715018a614610567578063852fb8581461057d5780638da5cb5b146105a557806395d89b41146105cf57610219565b80633e29b9ad1161019a57806349bd5a5e1161016957806349bd5a5e1461045f5780634fbee1931461048957806359927044146104c55780636dd3d39f146104ef57806370a082311461052b57610219565b80633e29b9ad146103b75780633f7b34ee146103e157806340348b4d1461040b578063469132ce1461043557610219565b80631694505e116101e15780631694505e146102d357806318160ddd146102fd57806321a9d82a1461032757806323b872dd14610351578063313ce5671461038d57610219565b806306fdde031461021d578063095ea7b3146102475780631419841d146102835780631525ff7d146102ab57610219565b3661021957005b5f80fd5b348015610228575f80fd5b50610231610872565b60405161023e9190612b87565b60405180910390f35b348015610252575f80fd5b5061026d60048036038101906102689190612c45565b610902565b60405161027a9190612c9d565b60405180910390f35b34801561028e575f80fd5b506102a960048036038101906102a49190612cb6565b610924565b005b3480156102b6575f80fd5b506102d160048036038101906102cc9190612cb6565b610a48565b005b3480156102de575f80fd5b506102e7610bab565b6040516102f49190612d3c565b60405180910390f35b348015610308575f80fd5b50610311610bd0565b60405161031e9190612d64565b60405180910390f35b348015610332575f80fd5b5061033b610bd9565b6040516103489190612c9d565b60405180910390f35b34801561035c575f80fd5b5061037760048036038101906103729190612d7d565b610bec565b6040516103849190612c9d565b60405180910390f35b348015610398575f80fd5b506103a1610c18565b6040516103ae9190612de8565b60405180910390f35b3480156103c2575f80fd5b506103cb610c20565b6040516103d89190612e10565b60405180910390f35b3480156103ec575f80fd5b506103f5610e09565b6040516104029190612e53565b60405180910390f35b348015610416575f80fd5b5061041f610e2a565b60405161042c9190612d64565b60405180910390f35b348015610440575f80fd5b50610449610e36565b6040516104569190612e53565b60405180910390f35b34801561046a575f80fd5b50610473610e57565b6040516104809190612e10565b60405180910390f35b348015610494575f80fd5b506104af60048036038101906104aa9190612cb6565b610e7c565b6040516104bc9190612c9d565b60405180910390f35b3480156104d0575f80fd5b506104d9610ece565b6040516104e69190612e10565b60405180910390f35b3480156104fa575f80fd5b5061051560048036038101906105109190612cb6565b610ef3565b6040516105229190612c9d565b60405180910390f35b348015610536575f80fd5b50610551600480360381019061054c9190612cb6565b610f45565b60405161055e9190612d64565b60405180910390f35b348015610572575f80fd5b5061057b610f8a565b005b348015610588575f80fd5b506105a3600480360381019061059e9190612e6c565b610f9d565b005b3480156105b0575f80fd5b506105b9611384565b6040516105c69190612e10565b60405180910390f35b3480156105da575f80fd5b506105e36113ac565b6040516105f09190612b87565b60405180910390f35b348015610604575f80fd5b5061061f600480360381019061061a9190612fbf565b61143c565b005b34801561062c575f80fd5b5061064760048036038101906106429190612cb6565b61154f565b005b348015610654575f80fd5b5061065d61169f565b60405161066a9190612ff9565b60405180910390f35b34801561067e575f80fd5b5061069960048036038101906106949190612c45565b6116a5565b6040516106a69190612c9d565b60405180910390f35b3480156106ba575f80fd5b506106c36116c0565b6040516106d09190612c9d565b60405180910390f35b3480156106e4575f80fd5b506106ff60048036038101906106fa9190612e6c565b6116d3565b60405161070c9190612d64565b60405180910390f35b348015610720575f80fd5b5061073b6004803603810190610736919061303c565b611911565b005b348015610748575f80fd5b50610751611954565b60405161075e9190612ff9565b60405180910390f35b348015610772575f80fd5b5061078d60048036038101906107889190613091565b611959565b005b34801561079a575f80fd5b506107b560048036038101906107b09190613091565b6119b9565b005b3480156107c2575f80fd5b506107dd60048036038101906107d891906130cf565b611a19565b6040516107ea9190612d64565b60405180910390f35b3480156107fe575f80fd5b50610807611a9b565b604051610817949392919061310d565b60405180910390f35b34801561082b575f80fd5b5061084660048036038101906108419190612cb6565b611aec565b005b348015610853575f80fd5b5061085c611b70565b6040516108699190612d64565b60405180910390f35b6060600380546108819061317d565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad9061317d565b80156108f85780601f106108cf576101008083540402835291602001916108f8565b820191905f5260205f20905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b5f8061090c611b7c565b9050610919818585611b83565b600191505092915050565b61092c611b95565b600860149054906101000a900460ff161561097c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610973906131f7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e19061325f565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860146101000a81548160ff02191690831515021790555050565b610a50611b95565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab5906132ed565b60405180910390fd5b80600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600254905090565b600b60109054906101000a900460ff1681565b5f80610bf6611b7c565b9050610c03858285611c1c565b610c0e858585611cae565b9150509392505050565b5f6012905090565b5f600860149054906101000a900460ff16610c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6790613355565b60405180910390fd5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cda573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfe9190613387565b73ffffffffffffffffffffffffffffffffffffffff1663e6a439053060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610da89190613387565b6040518363ffffffff1660e01b8152600401610dc59291906133b2565b602060405180830381865afa158015610de0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e049190613387565b905090565b600e5f9054906101000a90046fffffffffffffffffffffffffffffffff1681565b67d02ab486cedc000081565b600b5f9054906101000a90046fffffffffffffffffffffffffffffffff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f92611b95565b610f9b5f612028565b565b600860149054906101000a900460ff16610fec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe390613355565b60405180910390fd5b5f811161102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590613449565b60405180910390fd5b8061103833610f45565b1015611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906134b1565b60405180910390fd5b5f6002826110879190613529565b90505f611093826116d3565b90505f6064605f836110a59190613559565b6110af9190613529565b90505f6110bb30610f45565b90505f4790506110cc3330886120eb565b5f6110d786856121db565b90505f805f6110f1898b6110eb919061359a565b85612428565b92509250925081600e5f8282829054906101000a90046fffffffffffffffffffffffffffffffff1661112391906135cd565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550674563918244f40000600e5f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16101580156111ac5750600b60109054906101000a900460ff165b156111cc575f600b60106101000a81548160ff0219169083151502179055505b67d02ab486cedc0000600e5f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161015801561122857505f60095f0160069054906101000a900461ffff1661ffff16115b1561124d575f60095f0160066101000a81548161ffff021916908361ffff1602179055505b5f8661125830610f45565b611262919061359a565b90505f811115611278576112773033836120eb565b5b5f8647611285919061359a565b90505f811115611339575f3373ffffffffffffffffffffffffffffffffffffffff16826040516112b49061363d565b5f6040518083038185875af1925050503d805f81146112ee576040519150601f19603f3d011682016040523d82523d5f602084013e6112f3565b606091505b5050905080611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e9061369b565b60405180910390fd5b505b7f59af97c63758a02bfe06cf264fb416eba51db5020c6b61c1604d2fa1afafed618b85878660405161136e94939291906136b9565b60405180910390a1505050505050505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546113bb9061317d565b80601f01602080910402602001604051908101604052809291908181526020018280546113e79061317d565b80156114325780601f1061140957610100808354040283529160200191611432565b820191905f5260205f20905b81548152906001019060200180831161141557829003601f168201915b5050505050905090565b611444611b95565b606461ffff16816060015182604001518360200151845f015161146791906136fc565b61147191906136fc565b61147b91906136fc565b61ffff1611156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b79061377b565b60405180910390fd5b8060095f820151815f015f6101000a81548161ffff021916908361ffff1602179055506020820151815f0160026101000a81548161ffff021916908361ffff1602179055506040820151815f0160046101000a81548161ffff021916908361ffff1602179055506060820151815f0160066101000a81548161ffff021916908361ffff16021790555090505050565b611557611b95565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906137e3565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6103e881565b5f6116b86116b1611b7c565b8484611cae565b905092915050565b600860149054906101000a900460ff1681565b5f80600267ffffffffffffffff8111156116f0576116ef612e9b565b5b60405190808252806020026020018201604052801561171e5781602001602082028036833780820191505090505b50905030815f8151811061173557611734613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117fd9190613387565b8160018151811061181157611810613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f85846040518363ffffffff1660e01b81526004016118a89291906138e5565b5f60405180830381865afa1580156118c2573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f820116820180604052508101906118ea91906139ef565b905080600181518110611900576118ff613801565b5b602002602001015192505050919050565b611919611b95565b80600b5f6101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050565b606481565b611961611b95565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6119c1611b95565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6009805f015f9054906101000a900461ffff1690805f0160029054906101000a900461ffff1690805f0160049054906101000a900461ffff1690805f0160069054906101000a900461ffff16905084565b611af4611b95565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b64575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401611b5b9190612e10565b60405180910390fd5b611b6d81612028565b50565b674563918244f4000081565b5f33905090565b611b908383836001612519565b505050565b611b9d611b7c565b73ffffffffffffffffffffffffffffffffffffffff16611bbb611384565b73ffffffffffffffffffffffffffffffffffffffff1614611c1a57611bde611b7c565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401611c119190612e10565b60405180910390fd5b565b5f611c278484611a19565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ca85781811015611c99578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611c9093929190613a36565b60405180910390fd5b611ca784848484035f612519565b5b50505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490613adb565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613b69565b60405180910390fd5b5f611d9585610f45565b905082811015611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190613bf7565b60405180910390fd5b600b60109054906101000a900460ff168015611e3d5750600c5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e96575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611f2157600b5f9054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1683611ed586610f45565b611edf9190613c15565b1115611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790613c92565b60405180910390fd5b5b5f839050600d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611fc35750600d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612010575f611fd2856126e8565b9050808503915061200587600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836120eb565b61200e8161277e565b505b61201b8686836120eb565b6001925050509392505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361215b575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016121529190612e10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121cb575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016121c29190612e10565b60405180910390fd5b6121d68383836128fe565b505050565b5f80600267ffffffffffffffff8111156121f8576121f7612e9b565b5b6040519080825280602002602001820160405280156122265781602001602082028036833780820191505090505b50905030815f8151811061223d5761223c613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122e1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123059190613387565b8160018151811061231957612318613801565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061237f3060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611b83565b5f47905060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94786868530426040518663ffffffff1660e01b81526004016123e5959493929190613cb0565b5f604051808303815f87803b1580156123fc575f80fd5b505af115801561240e573d5f803e3d5ffd5b50505050804761241e919061359a565b9250505092915050565b5f805f6124573060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687611b83565b5f805f60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71988308b5f8030426040518863ffffffff1660e01b81526004016124bf96959493929190613d41565b60606040518083038185885af11580156124db573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906125009190613da0565b9250925092508282829550955095505050509250925092565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612589575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016125809190612e10565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125f9575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016125f09190612e10565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156126e2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516126d99190612d64565b60405180910390a35b50505050565b5f8060095f0160069054906101000a900461ffff1660095f0160049054906101000a900461ffff1660095f0160029054906101000a900461ffff1660095f015f9054906101000a900461ffff1661273f91906136fc565b61274991906136fc565b61275391906136fc565b90506103e861ffff168161ffff168461276c9190613559565b6127769190613529565b915050919050565b5f60095f0160069054906101000a900461ffff1660095f0160049054906101000a900461ffff1660095f0160029054906101000a900461ffff1660095f015f9054906101000a900461ffff166127d491906136fc565b6127de91906136fc565b6127e891906136fc565b90505f8161ffff1660095f015f9054906101000a900461ffff1661ffff16846128119190613559565b61281b9190613529565b90505f8261ffff1660095f0160029054906101000a900461ffff1661ffff16856128459190613559565b61284f9190613529565b90505f8361ffff1660095f0160049054906101000a900461ffff1661ffff16866128799190613559565b6128839190613529565b90505f8461ffff1660095f0160069054906101000a900461ffff1661ffff16876128ad9190613559565b6128b79190613529565b90507f3b16e63d8dedd802cbe63c525997d175d4dd90f3927e6c231f7e52949a2944ae848484846040516128ee94939291906136b9565b60405180910390a1505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361294e578060025f8282546129429190613c15565b92505081905550612a1c565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156129d7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016129ce93929190613a36565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a63578060025f8282540392505081905550612aad565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612b0a9190612d64565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612b5982612b17565b612b638185612b21565b9350612b73818560208601612b31565b612b7c81612b3f565b840191505092915050565b5f6020820190508181035f830152612b9f8184612b4f565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612be182612bb8565b9050919050565b612bf181612bd7565b8114612bfb575f80fd5b50565b5f81359050612c0c81612be8565b92915050565b5f819050919050565b612c2481612c12565b8114612c2e575f80fd5b50565b5f81359050612c3f81612c1b565b92915050565b5f8060408385031215612c5b57612c5a612bb0565b5b5f612c6885828601612bfe565b9250506020612c7985828601612c31565b9150509250929050565b5f8115159050919050565b612c9781612c83565b82525050565b5f602082019050612cb05f830184612c8e565b92915050565b5f60208284031215612ccb57612cca612bb0565b5b5f612cd884828501612bfe565b91505092915050565b5f819050919050565b5f612d04612cff612cfa84612bb8565b612ce1565b612bb8565b9050919050565b5f612d1582612cea565b9050919050565b5f612d2682612d0b565b9050919050565b612d3681612d1c565b82525050565b5f602082019050612d4f5f830184612d2d565b92915050565b612d5e81612c12565b82525050565b5f602082019050612d775f830184612d55565b92915050565b5f805f60608486031215612d9457612d93612bb0565b5b5f612da186828701612bfe565b9350506020612db286828701612bfe565b9250506040612dc386828701612c31565b9150509250925092565b5f60ff82169050919050565b612de281612dcd565b82525050565b5f602082019050612dfb5f830184612dd9565b92915050565b612e0a81612bd7565b82525050565b5f602082019050612e235f830184612e01565b92915050565b5f6fffffffffffffffffffffffffffffffff82169050919050565b612e4d81612e29565b82525050565b5f602082019050612e665f830184612e44565b92915050565b5f60208284031215612e8157612e80612bb0565b5b5f612e8e84828501612c31565b91505092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612ed182612b3f565b810181811067ffffffffffffffff82111715612ef057612eef612e9b565b5b80604052505050565b5f612f02612ba7565b9050612f0e8282612ec8565b919050565b5f61ffff82169050919050565b612f2981612f13565b8114612f33575f80fd5b50565b5f81359050612f4481612f20565b92915050565b5f60808284031215612f5f57612f5e612e97565b5b612f696080612ef9565b90505f612f7884828501612f36565b5f830152506020612f8b84828501612f36565b6020830152506040612f9f84828501612f36565b6040830152506060612fb384828501612f36565b60608301525092915050565b5f60808284031215612fd457612fd3612bb0565b5b5f612fe184828501612f4a565b91505092915050565b612ff381612f13565b82525050565b5f60208201905061300c5f830184612fea565b92915050565b61301b81612e29565b8114613025575f80fd5b50565b5f8135905061303681613012565b92915050565b5f6020828403121561305157613050612bb0565b5b5f61305e84828501613028565b91505092915050565b61307081612c83565b811461307a575f80fd5b50565b5f8135905061308b81613067565b92915050565b5f80604083850312156130a7576130a6612bb0565b5b5f6130b485828601612bfe565b92505060206130c58582860161307d565b9150509250929050565b5f80604083850312156130e5576130e4612bb0565b5b5f6130f285828601612bfe565b925050602061310385828601612bfe565b9150509250929050565b5f6080820190506131205f830187612fea565b61312d6020830186612fea565b61313a6040830185612fea565b6131476060830184612fea565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061319457607f821691505b6020821081036131a7576131a6613150565b5b50919050565b7f556e697377617020563220526f7574657220616c7265616479207365740000005f82015250565b5f6131e1601d83612b21565b91506131ec826131ad565b602082019050919050565b5f6020820190508181035f83015261320e816131d5565b9050919050565b7f496e76616c696420726f757465722061646472657373000000000000000000005f82015250565b5f613249601683612b21565b915061325482613215565b602082019050919050565b5f6020820190508181035f8301526132768161323d565b9050919050565b7f5465616d2077616c6c657420616464726573732063616e6e6f74206265207a655f8201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132d7602283612b21565b91506132e28261327d565b604082019050919050565b5f6020820190508181035f830152613304816132cb565b9050919050565b7f556e697377617020563220526f75746572206e6f7420736574000000000000005f82015250565b5f61333f601983612b21565b915061334a8261330b565b602082019050919050565b5f6020820190508181035f83015261336c81613333565b9050919050565b5f8151905061338181612be8565b92915050565b5f6020828403121561339c5761339b612bb0565b5b5f6133a984828501613373565b91505092915050565b5f6040820190506133c55f830185612e01565b6133d26020830184612e01565b9392505050565b7f4d7573742070726f7669646520746f6b656e7320666f72206c697175696469745f8201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b5f613433602183612b21565b915061343e826133d9565b604082019050919050565b5f6020820190508181035f83015261346081613427565b9050919050565b7f496e73756666696369656e742062616c616e63650000000000000000000000005f82015250565b5f61349b601483612b21565b91506134a682613467565b602082019050919050565b5f6020820190508181035f8301526134c88161348f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61353382612c12565b915061353e83612c12565b92508261354e5761354d6134cf565b5b828204905092915050565b5f61356382612c12565b915061356e83612c12565b925082820261357c81612c12565b91508282048414831517613593576135926134fc565b5b5092915050565b5f6135a482612c12565b91506135af83612c12565b92508282039050818111156135c7576135c66134fc565b5b92915050565b5f6135d782612e29565b91506135e283612e29565b925082820190506fffffffffffffffffffffffffffffffff81111561360a576136096134fc565b5b92915050565b5f81905092915050565b50565b5f6136285f83613610565b91506136338261361a565b5f82019050919050565b5f6136478261361d565b9150819050919050565b7f455448207472616e73666572206661696c6564000000000000000000000000005f82015250565b5f613685601383612b21565b915061369082613651565b602082019050919050565b5f6020820190508181035f8301526136b281613679565b9050919050565b5f6080820190506136cc5f830187612d55565b6136d96020830186612d55565b6136e66040830185612d55565b6136f36060830184612d55565b95945050505050565b5f61370682612f13565b915061371183612f13565b9250828201905061ffff81111561372b5761372a6134fc565b5b92915050565b7f546f74616c207461782065786365656473206d6178696d756d203130250000005f82015250565b5f613765601d83612b21565b915061377082613731565b602082019050919050565b5f6020820190508181035f83015261379281613759565b9050919050565b7f5061697220616c726561647920736574000000000000000000000000000000005f82015250565b5f6137cd601083612b21565b91506137d882613799565b602082019050919050565b5f6020820190508181035f8301526137fa816137c1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61386081612bd7565b82525050565b5f6138718383613857565b60208301905092915050565b5f602082019050919050565b5f6138938261382e565b61389d8185613838565b93506138a883613848565b805f5b838110156138d85781516138bf8882613866565b97506138ca8361387d565b9250506001810190506138ab565b5085935050505092915050565b5f6040820190506138f85f830185612d55565b818103602083015261390a8184613889565b90509392505050565b5f80fd5b5f67ffffffffffffffff82111561393157613930612e9b565b5b602082029050602081019050919050565b5f80fd5b5f8151905061395481612c1b565b92915050565b5f61396c61396784613917565b612ef9565b9050808382526020820190506020840283018581111561398f5761398e613942565b5b835b818110156139b857806139a48882613946565b845260208401935050602081019050613991565b5050509392505050565b5f82601f8301126139d6576139d5613913565b5b81516139e684826020860161395a565b91505092915050565b5f60208284031215613a0457613a03612bb0565b5b5f82015167ffffffffffffffff811115613a2157613a20612bb4565b5b613a2d848285016139c2565b91505092915050565b5f606082019050613a495f830186612e01565b613a566020830185612d55565b613a636040830184612d55565b949350505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613ac5602583612b21565b9150613ad082613a6b565b604082019050919050565b5f6020820190508181035f830152613af281613ab9565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613b53602383612b21565b9150613b5e82613af9565b604082019050919050565b5f6020820190508181035f830152613b8081613b47565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613be1602683612b21565b9150613bec82613b87565b604082019050919050565b5f6020820190508181035f830152613c0e81613bd5565b9050919050565b5f613c1f82612c12565b9150613c2a83612c12565b9250828201905080821115613c4257613c416134fc565b5b92915050565b7f45786365656473206d61782077616c6c6574206c696d697400000000000000005f82015250565b5f613c7c601883612b21565b9150613c8782613c48565b602082019050919050565b5f6020820190508181035f830152613ca981613c70565b9050919050565b5f60a082019050613cc35f830188612d55565b613cd06020830187612d55565b8181036040830152613ce28186613889565b9050613cf16060830185612e01565b613cfe6080830184612d55565b9695505050505050565b5f819050919050565b5f613d2b613d26613d2184613d08565b612ce1565b612c12565b9050919050565b613d3b81613d11565b82525050565b5f60c082019050613d545f830189612e01565b613d616020830188612d55565b613d6e6040830187613d32565b613d7b6060830186613d32565b613d886080830185612e01565b613d9560a0830184612d55565b979650505050505050565b5f805f60608486031215613db757613db6612bb0565b5b5f613dc486828701613946565b9350506020613dd586828701613946565b9250506040613de686828701613946565b915050925092509256fea2646970667358221220cab8667b3c6190dac2a40013f5375fba7dfac56290afe94b2ae91e2e81c41a9b64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000650921fbbbfadb71de6bdb8bd1de7c255578c602000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000108b2a2c28029094000000000000000000000000000000000000000000000000000000000000000000000e50726f6a65637420417468656e610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006415448454e410000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Project Athena
Arg [1] : symbol (string): ATHENA
Arg [2] : initialSupply (uint256): 1000000000000000000000000000
Arg [3] : _teamWallet (address): 0x650921fBBbFAdb71dE6BDb8bD1De7c255578c602
Arg [4] : _taxInfo (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [5] : _maxTokensPerWallet (uint128): 20000000000000000000000000
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 000000000000000000000000650921fbbbfadb71de6bdb8bd1de7c255578c602
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [8] : 000000000000000000000000000000000000000000108b2a2c28029094000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [10] : 50726f6a65637420417468656e61000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 415448454e410000000000000000000000000000000000000000000000000000
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.