gitextract_g_2gvmm3/ ├── .circleci/ │ └── config.yml ├── .editorconfig ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── _config.yml ├── albiondata-client.go ├── client/ │ ├── albion_state.go │ ├── albion_watcher.go │ ├── client.go │ ├── config.go │ ├── decode.go │ ├── dispatcher.go │ ├── event_player_online_status.go │ ├── event_skill_data.go │ ├── events.go │ ├── eventtype_string.go │ ├── listener.go │ ├── net_interface_filter.go │ ├── net_interface_filter_nix_darw.go │ ├── net_interface_filter_win.go │ ├── offline.go │ ├── operation_auction_get_item_average_stats.go │ ├── operation_auction_get_offers.go │ ├── operation_auction_get_requests.go │ ├── operation_get_cluster_map_info.go │ ├── operation_get_game_server_by_cluster.go │ ├── operation_get_mail_infos.go │ ├── operation_gold_market_get_average_info.go │ ├── operation_join.go │ ├── operation_read_mail.go │ ├── operation_real_estate_bid_on_auction.go │ ├── operation_real_estate_get_auction_data.go │ ├── operations.go │ ├── operationtype_string.go │ ├── router.go │ ├── uploader.go │ ├── uploader_http.go │ ├── uploader_http_pow.go │ ├── uploader_nats.go │ ├── ws_client.go │ └── ws_hub.go ├── config.yaml.example ├── go.mod ├── go.sum ├── icon/ │ ├── albiondata-client.psd │ ├── iconwin.go │ ├── make_icon.bat │ └── make_icon.sh ├── lib/ │ ├── README.md │ ├── common.go │ ├── gold.go │ ├── map.go │ ├── market.go │ ├── marketHistory.go │ ├── nats.go │ └── skills.go ├── log/ │ └── logger.go ├── notification/ │ ├── notification_nix_darw.go │ └── notification_win.go ├── pkg/ │ └── nsis/ │ ├── Makefile │ └── albiondata-client.nsi ├── scripts/ │ ├── build-darwin.sh │ ├── build-linux.sh │ ├── build-windows.sh │ ├── fmt.sh │ ├── run.command │ ├── run.sh │ └── validate-fmt.sh ├── systray/ │ ├── systray_others.go │ └── systray_win.go └── thirdparty/ ├── WpdPack/ │ ├── Include/ │ │ ├── Packet32.h │ │ ├── Win32-Extensions.h │ │ ├── bittypes.h │ │ ├── ip6_misc.h │ │ ├── pcap/ │ │ │ ├── bluetooth.h │ │ │ ├── bpf.h │ │ │ ├── namedb.h │ │ │ ├── pcap.h │ │ │ ├── sll.h │ │ │ ├── usb.h │ │ │ └── vlan.h │ │ ├── pcap-bpf.h │ │ ├── pcap-namedb.h │ │ ├── pcap-stdinc.h │ │ ├── pcap.h │ │ └── remote-ext.h │ └── Lib/ │ ├── Packet.lib │ ├── libpacket.a │ ├── libwpcap.a │ ├── wpcap.lib │ └── x64/ │ ├── Packet.lib │ └── wpcap.lib └── rcedit/ └── LICENSE