Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- AlphaDAO
- Optimization enabled
- false
- Compiler version
- v0.8.0+commit.c7dfd78e
- EVM Version
- default
- Verified at
- 2021-12-15T18:23:33.783496Z
Constructor Arguments
000000000000000000000000000000000000000000000000000079997501a80000000000000000000000000003a324301408ee074048a6f266a0efdc760123d0000000000000000000000000000000000000000000000000000014df7698fc00
Arg [0] (uint256) : 133700000000000
Arg [1] (address) : 0x03a324301408ee074048a6f266a0efdc760123d0
Arg [2] (uint256) : 22950000000000
Contract source code
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 9;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// File: AlphaDAO.sol
pragma solidity ^0.8.0;
contract AlphaDAO is ERC20 {
//Variable Initilizers
address public treasuryAddress;
address public ownerAddress;
uint256 public lockAmount;
mapping (address => bool) public isLocked;
//Ende Variable Initializing
//Modifiers
modifier isOwner() {
require(msg.sender == ownerAddress);
require(msg.sender != address(0));
_;
}
modifier isTreasury() {
require(msg.sender == treasuryAddress);
_;
}
//End Modifiers
//Events
event OwnerChange(address indexed _previousOwner, address indexed _newOwner);
event TreasuryChange(address indexed _previousTreasury, address indexed _newTreasury);
event LockAmountChange(uint256 _previousLockAmount, uint256 _newLockAmount);
event TokensLocked(address indexed _walletAddress, uint256 _lockAmount);
event UnlockTokens(address indexed _walletAddress, uint256 _lockAmount);
//End Events
//Constructor
constructor(uint256 _initialSupply, address _treasuryAddress, uint256 _lockAmount) ERC20("AlphaDAO Token", "ALPHA") {
treasuryAddress = _treasuryAddress;
ownerAddress = _treasuryAddress;
lockAmount = _lockAmount;
_mint(msg.sender, _initialSupply);
}
//End Constructor
//Public Utility Functions
function changeOwner(address _newOwner) public isOwner returns (bool success){
emit OwnerChange(ownerAddress, _newOwner);
ownerAddress = _newOwner;
return true;
}
function changeTreasury(address _newTreasury) public isOwner returns (bool success){
emit TreasuryChange(treasuryAddress, _newTreasury);
treasuryAddress = _newTreasury;
return true;
}
function changeLockAmount(uint256 _newLockAmount) public isOwner returns (bool success){
emit LockAmountChange(lockAmount, _newLockAmount);
lockAmount = _newLockAmount;
return true;
}
function lockTokens() public returns (bool success){
require(_lockTokens());
isLocked[msg.sender] = true;
emit TokensLocked(msg.sender, lockAmount);
return true;
}
function unlockTokens(address _address) public isTreasury returns (bool succes){
require(_unlockTokens(_address));
isLocked[msg.sender] = false;
emit UnlockTokens(msg.sender, lockAmount);
return true;
}
//End Public Utility Functions
//Private Internal Functions
function _lockTokens() private returns (bool success){
require(msg.sender != treasuryAddress);
require(isLocked[msg.sender] == false);
require(balanceOf(msg.sender) >= lockAmount);
_transfer(msg.sender, treasuryAddress, lockAmount);
return true;
}
function _unlockTokens(address _address) private returns (bool success){
require(isLocked[_address] == true);
require(balanceOf(treasuryAddress) >= lockAmount);
_transfer(treasuryAddress, _address, lockAmount);
return true;
}
//End Private Internal Functions
}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint256","name":"_initialSupply","internalType":"uint256"},{"type":"address","name":"_treasuryAddress","internalType":"address"},{"type":"uint256","name":"_lockAmount","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"LockAmountChange","inputs":[{"type":"uint256","name":"_previousLockAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"_newLockAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnerChange","inputs":[{"type":"address","name":"_previousOwner","internalType":"address","indexed":true},{"type":"address","name":"_newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"TokensLocked","inputs":[{"type":"address","name":"_walletAddress","internalType":"address","indexed":true},{"type":"uint256","name":"_lockAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"TreasuryChange","inputs":[{"type":"address","name":"_previousTreasury","internalType":"address","indexed":true},{"type":"address","name":"_newTreasury","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"UnlockTokens","inputs":[{"type":"address","name":"_walletAddress","internalType":"address","indexed":true},{"type":"uint256","name":"_lockAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"success","internalType":"bool"}],"name":"changeLockAmount","inputs":[{"type":"uint256","name":"_newLockAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"success","internalType":"bool"}],"name":"changeOwner","inputs":[{"type":"address","name":"_newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"success","internalType":"bool"}],"name":"changeTreasury","inputs":[{"type":"address","name":"_newTreasury","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isLocked","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lockAmount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"success","internalType":"bool"}],"name":"lockTokens","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasuryAddress","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"succes","internalType":"bool"}],"name":"unlockTokens","inputs":[{"type":"address","name":"_address","internalType":"address"}]}]
Contract Creation Code
0x60806040523480156200001157600080fd5b50604051620023b3380380620023b38339818101604052810190620000379190620003dc565b6040518060400160405280600e81526020017f416c70686144414f20546f6b656e0000000000000000000000000000000000008152506040518060400160405280600581526020017f414c5048410000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb929190620002fe565b508060049080519060200190620000d4929190620002fe565b50505081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055506200017233846200017b60201b60201c565b50505062000638565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e59062000485565b60405180910390fd5b6200020260008383620002f460201b60201c565b8060026000828254620002169190620004d5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200026d9190620004d5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002d49190620004a7565b60405180910390a3620002f060008383620002f960201b60201c565b5050565b505050565b505050565b8280546200030c9062000570565b90600052602060002090601f0160209004810192826200033057600085556200037c565b82601f106200034b57805160ff19168380011785556200037c565b828001600101855582156200037c579182015b828111156200037b5782518255916020019190600101906200035e565b5b5090506200038b91906200038f565b5090565b5b80821115620003aa57600081600090555060010162000390565b5090565b600081519050620003bf8162000604565b92915050565b600081519050620003d6816200061e565b92915050565b600080600060608486031215620003f257600080fd5b60006200040286828701620003c5565b93505060206200041586828701620003ae565b92505060406200042886828701620003c5565b9150509250925092565b600062000441601f83620004c4565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200047f8162000566565b82525050565b60006020820190508181036000830152620004a08162000432565b9050919050565b6000602082019050620004be600083018462000474565b92915050565b600082825260208201905092915050565b6000620004e28262000566565b9150620004ef8362000566565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005275762000526620005a6565b5b828201905092915050565b60006200053f8262000546565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200058957607f821691505b60208210811415620005a0576200059f620005d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200060f8162000532565b81146200061b57600080fd5b50565b620006298162000566565b81146200063557600080fd5b50565b611d6b80620006486000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063c187385011610071578063c187385014610395578063c5f956af146103c5578063cb67f948146103e3578063d8df5dc114610413578063dd62ed3e146104315761012c565b806395d89b41146102b7578063a457c2d7146102d5578063a6f9dae114610305578063a9059cbb14610335578063b14f2a39146103655761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780634a4fbeec1461023957806370a08231146102695780638f84aa09146102995761012c565b806306fdde0314610131578063095ea7b31461014f5780630a56293d1461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b610139610461565b6040516101469190611a0b565b60405180910390f35b61016960048036038101906101649190611631565b6104f3565b60405161017691906119f0565b60405180910390f35b610187610511565b60405161019491906119f0565b60405180910390f35b6101a56105d3565b6040516101b29190611b0d565b60405180910390f35b6101d560048036038101906101d091906115e2565b6105dd565b6040516101e291906119f0565b60405180910390f35b6101f36106d5565b6040516102009190611b51565b60405180910390f35b610223600480360381019061021e9190611631565b6106de565b60405161023091906119f0565b60405180910390f35b610253600480360381019061024e919061157d565b61078a565b60405161026091906119f0565b60405180910390f35b610283600480360381019061027e919061157d565b6107aa565b6040516102909190611b0d565b60405180910390f35b6102a16107f2565b6040516102ae91906119d5565b60405180910390f35b6102bf610818565b6040516102cc9190611a0b565b60405180910390f35b6102ef60048036038101906102ea9190611631565b6108aa565b6040516102fc91906119f0565b60405180910390f35b61031f600480360381019061031a919061157d565b610995565b60405161032c91906119f0565b60405180910390f35b61034f600480360381019061034a9190611631565b610af1565b60405161035c91906119f0565b60405180910390f35b61037f600480360381019061037a919061157d565b610b0f565b60405161038c91906119f0565b60405180910390f35b6103af60048036038101906103aa919061166d565b610c6b565b6040516103bc91906119f0565b60405180910390f35b6103cd610d4c565b6040516103da91906119d5565b60405180910390f35b6103fd60048036038101906103f8919061157d565b610d72565b60405161040a91906119f0565b60405180910390f35b61041b610e91565b6040516104289190611b0d565b60405180910390f35b61044b600480360381019061044691906115a6565b610e97565b6040516104589190611b0d565b60405180910390f35b60606003805461047090611c66565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90611c66565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610507610500610f1e565b8484610f26565b6001905092915050565b600061051b6110f1565b61052457600080fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167fac87f20a77d28ee8bbb58ec87ea8fa968b3393efae1a368fd50b767c2847391c6007546040516105c49190611b0d565b60405180910390a26001905090565b6000600254905090565b60006105ea8484846111f8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610635610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611a8d565b60405180910390fd5b6106c9856106c1610f1e565b858403610f26565b60019150509392505050565b60006009905090565b60006107806106eb610f1e565b8484600160006106f9610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461077b9190611b88565b610f26565b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461082790611c66565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611c66565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b600080600160006108b9610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90611aed565b60405180910390fd5b61098a610981610f1e565b85858403610f26565b600191505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109f157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610a2b57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f95b86f3e58bda963f355a8ee21a04376776a456ed6416bf5144202906bdc639760405160405180910390a381600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610b05610afe610f1e565b84846111f8565b6001905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b6b57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610ba557600080fd5b8173ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f803605f0e28534cba577fd3b24b497857b9d8fd1b4105ce6b37c5c33b83ef76b60405160405180910390a381600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cc757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d0157600080fd5b7fe82bf30f96b152ecac414affca8bd2e8533e6392a5dcc5b9dfb08dd8c2aabb2760075483604051610d34929190611b28565b60405180910390a18160078190555060019050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dce57600080fd5b610dd782611479565b610de057600080fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f55aaef8fd8c07238c3618a93c8a1627194187d3b0952908e58f2ab0f944fb407600754604051610e809190611b0d565b60405180910390a260019050919050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90611acd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90611a4d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e49190611b0d565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561114e57600080fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111ab57600080fd5b6007546111b7336107aa565b10156111c257600080fd5b6111f133600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007546111f8565b6001905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90611aad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90611a2d565b60405180910390fd5b6112e3838383611549565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090611a6d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fc9190611b88565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114609190611b0d565b60405180910390a361147384848461154e565b50505050565b600060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146114d857600080fd5b600754611506600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107aa565b101561151157600080fd5b611540600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836007546111f8565b60019050919050565b505050565b505050565b60008135905061156281611d07565b92915050565b60008135905061157781611d1e565b92915050565b60006020828403121561158f57600080fd5b600061159d84828501611553565b91505092915050565b600080604083850312156115b957600080fd5b60006115c785828601611553565b92505060206115d885828601611553565b9150509250929050565b6000806000606084860312156115f757600080fd5b600061160586828701611553565b935050602061161686828701611553565b925050604061162786828701611568565b9150509250925092565b6000806040838503121561164457600080fd5b600061165285828601611553565b925050602061166385828601611568565b9150509250929050565b60006020828403121561167f57600080fd5b600061168d84828501611568565b91505092915050565b61169f81611bde565b82525050565b6116ae81611bf0565b82525050565b60006116bf82611b6c565b6116c98185611b77565b93506116d9818560208601611c33565b6116e281611cf6565b840191505092915050565b60006116fa602383611b77565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611760602283611b77565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117c6602683611b77565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182c602883611b77565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611892602583611b77565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118f8602483611b77565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061195e602583611b77565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6119c081611c1c565b82525050565b6119cf81611c26565b82525050565b60006020820190506119ea6000830184611696565b92915050565b6000602082019050611a0560008301846116a5565b92915050565b60006020820190508181036000830152611a2581846116b4565b905092915050565b60006020820190508181036000830152611a46816116ed565b9050919050565b60006020820190508181036000830152611a6681611753565b9050919050565b60006020820190508181036000830152611a86816117b9565b9050919050565b60006020820190508181036000830152611aa68161181f565b9050919050565b60006020820190508181036000830152611ac681611885565b9050919050565b60006020820190508181036000830152611ae6816118eb565b9050919050565b60006020820190508181036000830152611b0681611951565b9050919050565b6000602082019050611b2260008301846119b7565b92915050565b6000604082019050611b3d60008301856119b7565b611b4a60208301846119b7565b9392505050565b6000602082019050611b6660008301846119c6565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b9382611c1c565b9150611b9e83611c1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bd357611bd2611c98565b5b828201905092915050565b6000611be982611bfc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c51578082015181840152602081019050611c36565b83811115611c60576000848401525b50505050565b60006002820490506001821680611c7e57607f821691505b60208210811415611c9257611c91611cc7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d1081611bde565b8114611d1b57600080fd5b50565b611d2781611c1c565b8114611d3257600080fd5b5056fea26469706673582212201255402c8eb5c850093b7b2f607c8e385cd5b6003be5d52e83ce8034ad0333c864736f6c63430008000033000000000000000000000000000000000000000000000000000079997501a80000000000000000000000000003a324301408ee074048a6f266a0efdc760123d0000000000000000000000000000000000000000000000000000014df7698fc00
Deployed ByteCode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063c187385011610071578063c187385014610395578063c5f956af146103c5578063cb67f948146103e3578063d8df5dc114610413578063dd62ed3e146104315761012c565b806395d89b41146102b7578063a457c2d7146102d5578063a6f9dae114610305578063a9059cbb14610335578063b14f2a39146103655761012c565b8063313ce567116100f4578063313ce567146101eb57806339509351146102095780634a4fbeec1461023957806370a08231146102695780638f84aa09146102995761012c565b806306fdde0314610131578063095ea7b31461014f5780630a56293d1461017f57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b610139610461565b6040516101469190611a0b565b60405180910390f35b61016960048036038101906101649190611631565b6104f3565b60405161017691906119f0565b60405180910390f35b610187610511565b60405161019491906119f0565b60405180910390f35b6101a56105d3565b6040516101b29190611b0d565b60405180910390f35b6101d560048036038101906101d091906115e2565b6105dd565b6040516101e291906119f0565b60405180910390f35b6101f36106d5565b6040516102009190611b51565b60405180910390f35b610223600480360381019061021e9190611631565b6106de565b60405161023091906119f0565b60405180910390f35b610253600480360381019061024e919061157d565b61078a565b60405161026091906119f0565b60405180910390f35b610283600480360381019061027e919061157d565b6107aa565b6040516102909190611b0d565b60405180910390f35b6102a16107f2565b6040516102ae91906119d5565b60405180910390f35b6102bf610818565b6040516102cc9190611a0b565b60405180910390f35b6102ef60048036038101906102ea9190611631565b6108aa565b6040516102fc91906119f0565b60405180910390f35b61031f600480360381019061031a919061157d565b610995565b60405161032c91906119f0565b60405180910390f35b61034f600480360381019061034a9190611631565b610af1565b60405161035c91906119f0565b60405180910390f35b61037f600480360381019061037a919061157d565b610b0f565b60405161038c91906119f0565b60405180910390f35b6103af60048036038101906103aa919061166d565b610c6b565b6040516103bc91906119f0565b60405180910390f35b6103cd610d4c565b6040516103da91906119d5565b60405180910390f35b6103fd60048036038101906103f8919061157d565b610d72565b60405161040a91906119f0565b60405180910390f35b61041b610e91565b6040516104289190611b0d565b60405180910390f35b61044b600480360381019061044691906115a6565b610e97565b6040516104589190611b0d565b60405180910390f35b60606003805461047090611c66565b80601f016020809104026020016040519081016040528092919081815260200182805461049c90611c66565b80156104e95780601f106104be576101008083540402835291602001916104e9565b820191906000526020600020905b8154815290600101906020018083116104cc57829003601f168201915b5050505050905090565b6000610507610500610f1e565b8484610f26565b6001905092915050565b600061051b6110f1565b61052457600080fd5b6001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167fac87f20a77d28ee8bbb58ec87ea8fa968b3393efae1a368fd50b767c2847391c6007546040516105c49190611b0d565b60405180910390a26001905090565b6000600254905090565b60006105ea8484846111f8565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610635610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90611a8d565b60405180910390fd5b6106c9856106c1610f1e565b858403610f26565b60019150509392505050565b60006009905090565b60006107806106eb610f1e565b8484600160006106f9610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461077b9190611b88565b610f26565b6001905092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461082790611c66565b80601f016020809104026020016040519081016040528092919081815260200182805461085390611c66565b80156108a05780601f10610875576101008083540402835291602001916108a0565b820191906000526020600020905b81548152906001019060200180831161088357829003601f168201915b5050505050905090565b600080600160006108b9610f1e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90611aed565b60405180910390fd5b61098a610981610f1e565b85858403610f26565b600191505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109f157600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610a2b57600080fd5b8173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f95b86f3e58bda963f355a8ee21a04376776a456ed6416bf5144202906bdc639760405160405180910390a381600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610b05610afe610f1e565b84846111f8565b6001905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b6b57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610ba557600080fd5b8173ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f803605f0e28534cba577fd3b24b497857b9d8fd1b4105ce6b37c5c33b83ef76b60405160405180910390a381600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cc757600080fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415610d0157600080fd5b7fe82bf30f96b152ecac414affca8bd2e8533e6392a5dcc5b9dfb08dd8c2aabb2760075483604051610d34929190611b28565b60405180910390a18160078190555060019050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dce57600080fd5b610dd782611479565b610de057600080fd5b6000600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503373ffffffffffffffffffffffffffffffffffffffff167f55aaef8fd8c07238c3618a93c8a1627194187d3b0952908e58f2ab0f944fb407600754604051610e809190611b0d565b60405180910390a260019050919050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90611acd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90611a4d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e49190611b0d565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561114e57600080fd5b60001515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111ab57600080fd5b6007546111b7336107aa565b10156111c257600080fd5b6111f133600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007546111f8565b6001905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90611aad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf90611a2d565b60405180910390fd5b6112e3838383611549565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090611a6d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113fc9190611b88565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114609190611b0d565b60405180910390a361147384848461154e565b50505050565b600060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146114d857600080fd5b600754611506600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166107aa565b101561151157600080fd5b611540600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836007546111f8565b60019050919050565b505050565b505050565b60008135905061156281611d07565b92915050565b60008135905061157781611d1e565b92915050565b60006020828403121561158f57600080fd5b600061159d84828501611553565b91505092915050565b600080604083850312156115b957600080fd5b60006115c785828601611553565b92505060206115d885828601611553565b9150509250929050565b6000806000606084860312156115f757600080fd5b600061160586828701611553565b935050602061161686828701611553565b925050604061162786828701611568565b9150509250925092565b6000806040838503121561164457600080fd5b600061165285828601611553565b925050602061166385828601611568565b9150509250929050565b60006020828403121561167f57600080fd5b600061168d84828501611568565b91505092915050565b61169f81611bde565b82525050565b6116ae81611bf0565b82525050565b60006116bf82611b6c565b6116c98185611b77565b93506116d9818560208601611c33565b6116e281611cf6565b840191505092915050565b60006116fa602383611b77565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611760602283611b77565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117c6602683611b77565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061182c602883611b77565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611892602583611b77565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118f8602483611b77565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061195e602583611b77565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6119c081611c1c565b82525050565b6119cf81611c26565b82525050565b60006020820190506119ea6000830184611696565b92915050565b6000602082019050611a0560008301846116a5565b92915050565b60006020820190508181036000830152611a2581846116b4565b905092915050565b60006020820190508181036000830152611a46816116ed565b9050919050565b60006020820190508181036000830152611a6681611753565b9050919050565b60006020820190508181036000830152611a86816117b9565b9050919050565b60006020820190508181036000830152611aa68161181f565b9050919050565b60006020820190508181036000830152611ac681611885565b9050919050565b60006020820190508181036000830152611ae6816118eb565b9050919050565b60006020820190508181036000830152611b0681611951565b9050919050565b6000602082019050611b2260008301846119b7565b92915050565b6000604082019050611b3d60008301856119b7565b611b4a60208301846119b7565b9392505050565b6000602082019050611b6660008301846119c6565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b9382611c1c565b9150611b9e83611c1c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bd357611bd2611c98565b5b828201905092915050565b6000611be982611bfc565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c51578082015181840152602081019050611c36565b83811115611c60576000848401525b50505050565b60006002820490506001821680611c7e57607f821691505b60208210811415611c9257611c91611cc7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611d1081611bde565b8114611d1b57600080fd5b50565b611d2781611c1c565b8114611d3257600080fd5b5056fea26469706673582212201255402c8eb5c850093b7b2f607c8e385cd5b6003be5d52e83ce8034ad0333c864736f6c63430008000033