├── .env_empty ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── calendar ├── calendar.go └── calendar_test.go ├── camunda_connect ├── camunda_connect.go └── camunda_connect_test.go ├── camunda_connect2 ├── camunda_connect2.go └── camunda_connect2_test.go ├── chatgpt_connect ├── chatgpt_connect.go └── chatgpt_connect_test.go ├── chatgpt_proxy ├── chatgpt_proxy.go └── chatgpt_proxy_test.go ├── config_main ├── config_main.go └── config_main_test.go ├── constants_starter └── constants_starter.go ├── constraints └── constraints.go ├── contextmain ├── contextmain.go └── contextmain_test.go ├── docs ├── lines_count.txt ├── packages.graphml └── packages.jpg ├── email ├── email.go └── email_test.go ├── email_imap ├── email_imap.go └── email_imap_test.go ├── fiber_connect ├── fiber_connect.go └── fiber_connect_test.go ├── folders ├── folders.go └── folders_test.go ├── git ├── git.go └── git_test.go ├── go.mod ├── go.sum ├── graph.svg ├── http_connect └── http_connect.go ├── humanize ├── humanize.go └── humanize_test.go ├── kafka_connect ├── kafka_connect.go └── kafka_connect_test.go ├── liveness ├── liveness.go └── liveness_test.go ├── log ├── logger.go ├── logger_proxy.go └── logger_test.go ├── logger ├── logger.go ├── logger_proxy.go └── logger_test.go ├── make_version.sh ├── micro ├── microfunctions.go └── microfunctions_test.go ├── microl ├── microl.go └── microl_test.go ├── micros └── micros.go ├── minio_connect ├── minio_connect.go └── minio_connect_test.go ├── mssql_connect ├── mssql_connect.go └── mssql_connect_test.go ├── mssql_func ├── mssql_func.go └── mssql_func_test.go ├── mssql_gorm ├── mssql_gorm.go └── mssql_gorm_test.go ├── mssql_stek └── mssql_stek.zip ├── nats_connect ├── nats_connect.go └── nats_connect_test.go ├── pkg └── version │ ├── version.go │ ├── version.txt │ └── version_test.go ├── port_checker ├── port_checker.go └── port_checker_test.go ├── postgres_func ├── postgres_func.go └── postgres_func_test.go ├── postgres_gorm ├── postgres_gorm.go └── postgres_gorm_test.go ├── postgres_gorm2 ├── postgres_gorm2.go └── postgres_gorm2_test.go ├── postgres_pgtype ├── builtin_wrappers.go ├── date.go ├── interval.go ├── numeric.go ├── pgtype.go ├── pgtype_default.go ├── sanek.go ├── time.go ├── timestamp.go ├── timestamptz.go └── write.go ├── postgres_pgx ├── postgres_pgx.go └── postgres_pgx_test.go ├── postgres_pgxpool ├── postgres_pgxpool.go └── postgres_pgxpool_test.go ├── postgres_pgxpool2 ├── postgres_pgxpool2.go └── postgres_pgxpool2_test.go ├── postgres_sqlx ├── postgres_sqlx.go └── postgres_sqlx_test.go ├── postgres_stek └── postgres_stek.zip ├── readme.eng ├── stopapp ├── stopapp.go └── stopapp_test.go ├── sync_exchange_connect └── sync_exchange_connect.zip ├── telegram_bot ├── telegram_bot.go └── telegram_bot_test.go ├── telegram_client ├── telegram_client.go └── telegram_client_test.go ├── test.sh ├── tinkoff_connect ├── tinkoff_connect.go └── tinkoff_connect_test.go ├── vendor ├── cloud.google.com │ └── go │ │ └── compute │ │ └── metadata │ │ ├── CHANGES.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.go │ │ ├── metadata.go │ │ ├── retry.go │ │ ├── retry_linux.go │ │ ├── syscheck.go │ │ ├── syscheck_linux.go │ │ └── syscheck_windows.go ├── filippo.io │ └── edwards25519 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── edwards25519.go │ │ ├── extra.go │ │ ├── field │ │ ├── fe.go │ │ ├── fe_amd64.go │ │ ├── fe_amd64.s │ │ ├── fe_amd64_noasm.go │ │ ├── fe_arm64.go │ │ ├── fe_arm64.s │ │ ├── fe_arm64_noasm.go │ │ ├── fe_extra.go │ │ └── fe_generic.go │ │ ├── scalar.go │ │ ├── scalar_fiat.go │ │ ├── scalarmult.go │ │ └── tables.go ├── github.com │ ├── DataDog │ │ └── zstd │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ZSTD_LICENSE │ │ │ ├── allocations.h │ │ │ ├── bits.h │ │ │ ├── bitstream.h │ │ │ ├── clevels.h │ │ │ ├── compiler.h │ │ │ ├── cover.c │ │ │ ├── cover.h │ │ │ ├── cpu.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── divsufsort.c │ │ │ ├── divsufsort.h │ │ │ ├── entropy_common.c │ │ │ ├── error_private.c │ │ │ ├── error_private.h │ │ │ ├── errors.go │ │ │ ├── external_zstd.go │ │ │ ├── fastcover.c │ │ │ ├── fse.h │ │ │ ├── fse_compress.c │ │ │ ├── fse_decompress.c │ │ │ ├── hist.c │ │ │ ├── hist.h │ │ │ ├── huf.h │ │ │ ├── huf_compress.c │ │ │ ├── huf_decompress.c │ │ │ ├── huf_decompress_amd64.S │ │ │ ├── mem.h │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── portability_macros.h │ │ │ ├── threading.c │ │ │ ├── threading.h │ │ │ ├── travis_test_32.sh │ │ │ ├── update.txt │ │ │ ├── xxhash.c │ │ │ ├── xxhash.h │ │ │ ├── zbuff.h │ │ │ ├── zbuff_common.c │ │ │ ├── zbuff_compress.c │ │ │ ├── zbuff_decompress.c │ │ │ ├── zdict.c │ │ │ ├── zdict.h │ │ │ ├── zstd.go │ │ │ ├── zstd.h │ │ │ ├── zstd_bulk.go │ │ │ ├── zstd_common.c │ │ │ ├── zstd_compress.c │ │ │ ├── zstd_compress_internal.h │ │ │ ├── zstd_compress_literals.c │ │ │ ├── zstd_compress_literals.h │ │ │ ├── zstd_compress_sequences.c │ │ │ ├── zstd_compress_sequences.h │ │ │ ├── zstd_compress_superblock.c │ │ │ ├── zstd_compress_superblock.h │ │ │ ├── zstd_ctx.go │ │ │ ├── zstd_cwksp.h │ │ │ ├── zstd_ddict.c │ │ │ ├── zstd_ddict.h │ │ │ ├── zstd_decompress.c │ │ │ ├── zstd_decompress_block.c │ │ │ ├── zstd_decompress_block.h │ │ │ ├── zstd_decompress_internal.h │ │ │ ├── zstd_deps.h │ │ │ ├── zstd_double_fast.c │ │ │ ├── zstd_double_fast.h │ │ │ ├── zstd_errors.h │ │ │ ├── zstd_fast.c │ │ │ ├── zstd_fast.h │ │ │ ├── zstd_internal.h │ │ │ ├── zstd_lazy.c │ │ │ ├── zstd_lazy.h │ │ │ ├── zstd_ldm.c │ │ │ ├── zstd_ldm.h │ │ │ ├── zstd_ldm_geartab.h │ │ │ ├── zstd_legacy.h │ │ │ ├── zstd_opt.c │ │ │ ├── zstd_opt.h │ │ │ ├── zstd_preSplit.c │ │ │ ├── zstd_preSplit.h │ │ │ ├── zstd_stream.go │ │ │ ├── zstd_trace.h │ │ │ ├── zstd_v01.c │ │ │ ├── zstd_v01.h │ │ │ ├── zstd_v02.c │ │ │ ├── zstd_v02.h │ │ │ ├── zstd_v03.c │ │ │ ├── zstd_v03.h │ │ │ ├── zstd_v04.c │ │ │ ├── zstd_v04.h │ │ │ ├── zstd_v05.c │ │ │ ├── zstd_v05.h │ │ │ ├── zstd_v06.c │ │ │ ├── zstd_v06.h │ │ │ ├── zstd_v07.c │ │ │ ├── zstd_v07.h │ │ │ ├── zstdmt_compress.c │ │ │ └── zstdmt_compress.h │ ├── ManyakRus │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── appveyor.yml │ │ │ ├── buffer_pool.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_check_appengine.go │ │ │ ├── terminal_check_bsd.go │ │ │ ├── terminal_check_js.go │ │ │ ├── terminal_check_no_terminal.go │ │ │ ├── terminal_check_notappengine.go │ │ │ ├── terminal_check_solaris.go │ │ │ ├── terminal_check_unix.go │ │ │ ├── terminal_check_wasi.go │ │ │ ├── terminal_check_wasip1.go │ │ │ ├── terminal_check_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── andybalholm │ │ └── brotli │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backward_references.go │ │ │ ├── backward_references_hq.go │ │ │ ├── bit_cost.go │ │ │ ├── bit_reader.go │ │ │ ├── bitwriter.go │ │ │ ├── block_splitter.go │ │ │ ├── block_splitter_command.go │ │ │ ├── block_splitter_distance.go │ │ │ ├── block_splitter_literal.go │ │ │ ├── brotli_bit_stream.go │ │ │ ├── cluster.go │ │ │ ├── cluster_command.go │ │ │ ├── cluster_distance.go │ │ │ ├── cluster_literal.go │ │ │ ├── command.go │ │ │ ├── compress_fragment.go │ │ │ ├── compress_fragment_two_pass.go │ │ │ ├── constants.go │ │ │ ├── context.go │ │ │ ├── decode.go │ │ │ ├── dictionary.go │ │ │ ├── dictionary_hash.go │ │ │ ├── encode.go │ │ │ ├── encoder.go │ │ │ ├── encoder_dict.go │ │ │ ├── entropy_encode.go │ │ │ ├── entropy_encode_static.go │ │ │ ├── fast_log.go │ │ │ ├── find_match_length.go │ │ │ ├── h10.go │ │ │ ├── h5.go │ │ │ ├── h6.go │ │ │ ├── hash.go │ │ │ ├── hash_composite.go │ │ │ ├── hash_forgetful_chain.go │ │ │ ├── hash_longest_match_quickly.go │ │ │ ├── hash_rolling.go │ │ │ ├── histogram.go │ │ │ ├── http.go │ │ │ ├── huffman.go │ │ │ ├── literal_cost.go │ │ │ ├── matchfinder │ │ │ ├── emitter.go │ │ │ ├── m0.go │ │ │ ├── m4.go │ │ │ ├── matchfinder.go │ │ │ ├── pathfinder.go │ │ │ └── textencoder.go │ │ │ ├── memory.go │ │ │ ├── metablock.go │ │ │ ├── metablock_command.go │ │ │ ├── metablock_distance.go │ │ │ ├── metablock_literal.go │ │ │ ├── params.go │ │ │ ├── platform.go │ │ │ ├── prefix.go │ │ │ ├── prefix_dec.go │ │ │ ├── quality.go │ │ │ ├── reader.go │ │ │ ├── ringbuffer.go │ │ │ ├── state.go │ │ │ ├── static_dict.go │ │ │ ├── static_dict_lut.go │ │ │ ├── symbol_list.go │ │ │ ├── transform.go │ │ │ ├── utf8_util.go │ │ │ ├── util.go │ │ │ ├── write_bits.go │ │ │ └── writer.go │ ├── asaskevich │ │ └── govalidator │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arrays.go │ │ │ ├── converter.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── numerics.go │ │ │ ├── patterns.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── validator.go │ │ │ └── wercker.yml │ ├── beeper │ │ └── argo-go │ │ │ ├── LICENSE │ │ │ ├── block │ │ │ ├── blockreader.go │ │ │ └── blockwriter.go │ │ │ ├── codec │ │ │ ├── decoder.go │ │ │ └── encoder.go │ │ │ ├── header │ │ │ └── header.go │ │ │ ├── internal │ │ │ └── util │ │ │ │ └── util.go │ │ │ ├── label │ │ │ ├── label.go │ │ │ └── wiremarkers.go │ │ │ ├── pkg │ │ │ ├── bitset │ │ │ │ └── bitset.go │ │ │ ├── buf │ │ │ │ └── buf.go │ │ │ └── varint │ │ │ │ └── varint.go │ │ │ ├── wire │ │ │ └── wire.go │ │ │ └── wirecodec │ │ │ └── decode.go │ ├── beorn7 │ │ └── perks │ │ │ ├── LICENSE │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── camunda │ │ └── zeebe │ │ │ └── clients │ │ │ └── go │ │ │ └── v8 │ │ │ ├── LICENSE │ │ │ ├── internal │ │ │ ├── embedded │ │ │ │ ├── data │ │ │ │ │ └── VERSION │ │ │ │ └── version.go │ │ │ └── utils │ │ │ │ ├── jobStreamActuator.go │ │ │ │ ├── jsonString_mixin.go │ │ │ │ ├── structmap.go │ │ │ │ └── test_utils.go │ │ │ └── pkg │ │ │ ├── commands │ │ │ ├── activate_jobs.go │ │ │ ├── broadcast_signal.go │ │ │ ├── cancel_instance.go │ │ │ ├── command.go │ │ │ ├── complete_job.go │ │ │ ├── create_instance.go │ │ │ ├── delete_resource.go │ │ │ ├── deploy.go │ │ │ ├── deploy_resource.go │ │ │ ├── evaluate_decision.go │ │ │ ├── fail_job.go │ │ │ ├── publish_message.go │ │ │ ├── resolve_incident.go │ │ │ ├── set_variables.go │ │ │ ├── stream_jobs.go │ │ │ ├── throw_error.go │ │ │ ├── topology.go │ │ │ ├── update_job_retries.go │ │ │ └── update_job_timeout.go │ │ │ ├── entities │ │ │ ├── entities.go │ │ │ └── job.go │ │ │ ├── pb │ │ │ └── gateway.pb.go │ │ │ ├── worker │ │ │ ├── backoffSupplier.go │ │ │ ├── exponentialBackoffSupplier.go │ │ │ ├── jobDispatcher.go │ │ │ ├── jobPoller.go │ │ │ ├── jobStreamer.go │ │ │ ├── jobWorker.go │ │ │ ├── jobWorkerMetrics.go │ │ │ └── jobWorker_builder.go │ │ │ └── zbc │ │ │ ├── api.go │ │ │ ├── callCredentials.go │ │ │ ├── client.go │ │ │ ├── credentialsProvider.go │ │ │ ├── envWrapper.go │ │ │ ├── oauthCredentialsCache.go │ │ │ └── oauthCredentialsProvider.go │ ├── cenkalti │ │ └── backoff │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── context.go │ │ │ ├── exponential.go │ │ │ ├── retry.go │ │ │ ├── ticker.go │ │ │ ├── timer.go │ │ │ └── tries.go │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── testall.sh │ │ │ ├── xxhash.go │ │ │ ├── xxhash_amd64.s │ │ │ ├── xxhash_arm64.s │ │ │ ├── xxhash_asm.go │ │ │ ├── xxhash_other.go │ │ │ ├── xxhash_safe.go │ │ │ └── xxhash_unsafe.go │ ├── clipperhouse │ │ ├── stringish │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── interface.go │ │ └── uax29 │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── graphemes │ │ │ ├── README.md │ │ │ ├── iterator.go │ │ │ ├── reader.go │ │ │ ├── splitfunc.go │ │ │ └── trie.go │ │ │ └── internal │ │ │ └── iterators │ │ │ └── iterator.go │ ├── cockroachdb │ │ ├── errors │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile.update-protos │ │ │ ├── README.md │ │ │ ├── assert │ │ │ │ └── assert.go │ │ │ ├── assert_api.go │ │ │ ├── barriers │ │ │ │ └── barriers.go │ │ │ ├── barriers_api.go │ │ │ ├── contexttags │ │ │ │ ├── contexttags.go │ │ │ │ └── with_context.go │ │ │ ├── contexttags_api.go │ │ │ ├── domains │ │ │ │ ├── domains.go │ │ │ │ └── with_domain.go │ │ │ ├── domains_api.go │ │ │ ├── errbase │ │ │ │ ├── adapters.go │ │ │ │ ├── adapters_errno.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── format_error.go │ │ │ │ ├── formatter.go │ │ │ │ ├── migrations.go │ │ │ │ ├── opaque.go │ │ │ │ ├── oserror_go116.go │ │ │ │ ├── oserror_pre116.go │ │ │ │ ├── safe_details.go │ │ │ │ └── unwrap.go │ │ │ ├── errbase_api.go │ │ │ ├── errorspb │ │ │ │ ├── errors.go │ │ │ │ ├── errors.pb.go │ │ │ │ ├── errors.proto │ │ │ │ ├── hintdetail.pb.go │ │ │ │ ├── hintdetail.proto │ │ │ │ ├── markers.go │ │ │ │ ├── markers.pb.go │ │ │ │ ├── markers.proto │ │ │ │ ├── tags.pb.go │ │ │ │ ├── tags.proto │ │ │ │ ├── testing.go │ │ │ │ ├── testing.pb.go │ │ │ │ └── testing.proto │ │ │ ├── errutil │ │ │ │ ├── as.go │ │ │ │ ├── assertions.go │ │ │ │ ├── doc.go │ │ │ │ ├── format_error_special.go │ │ │ │ ├── message.go │ │ │ │ ├── redactable.go │ │ │ │ └── utilities.go │ │ │ ├── errutil_api.go │ │ │ ├── hintdetail │ │ │ │ ├── hintdetail.go │ │ │ │ ├── with_detail.go │ │ │ │ └── with_hint.go │ │ │ ├── hintdetail_api.go │ │ │ ├── issuelink │ │ │ │ ├── issuelink.go │ │ │ │ ├── unimplemented_error.go │ │ │ │ └── with_issuelink.go │ │ │ ├── issuelink_api.go │ │ │ ├── join │ │ │ │ └── join.go │ │ │ ├── markers │ │ │ │ └── markers.go │ │ │ ├── markers_api.go │ │ │ ├── oserror │ │ │ │ └── oserror.go │ │ │ ├── report │ │ │ │ ├── report.go │ │ │ │ └── reportables.go │ │ │ ├── report_api.go │ │ │ ├── safedetails │ │ │ │ ├── redact.go │ │ │ │ ├── safedetails.go │ │ │ │ └── with_safedetails.go │ │ │ ├── safedetails_api.go │ │ │ ├── secondary │ │ │ │ ├── secondary.go │ │ │ │ └── with_secondary.go │ │ │ ├── secondary_api.go │ │ │ ├── stdstrings │ │ │ │ └── strings.go │ │ │ ├── telemetrykeys │ │ │ │ ├── telemetrykeys.go │ │ │ │ └── with_telemetry.go │ │ │ ├── telemetrykeys_api.go │ │ │ ├── withstack │ │ │ │ ├── one_line_source.go │ │ │ │ ├── reportable.go │ │ │ │ ├── stack.go │ │ │ │ └── withstack.go │ │ │ └── withstack_api.go │ │ ├── fifo │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── invariants_off.go │ │ │ ├── invariants_on.go │ │ │ ├── queue.go │ │ │ └── semaphore.go │ │ ├── logtags │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── buffer.go │ │ │ ├── context.go │ │ │ └── tag.go │ │ ├── pebble │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── batch.go │ │ │ ├── cache.go │ │ │ ├── checkpoint.go │ │ │ ├── cleaner.go │ │ │ ├── commit.go │ │ │ ├── compaction.go │ │ │ ├── compaction_iter.go │ │ │ ├── compaction_picker.go │ │ │ ├── comparer.go │ │ │ ├── db.go │ │ │ ├── error_iter.go │ │ │ ├── event.go │ │ │ ├── external_iterator.go │ │ │ ├── filenames.go │ │ │ ├── flushable.go │ │ │ ├── format_major_version.go │ │ │ ├── get_iter.go │ │ │ ├── ingest.go │ │ │ ├── internal.go │ │ │ ├── internal │ │ │ │ ├── arenaskl │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── arena.go │ │ │ │ │ ├── flush_iterator.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── node.go │ │ │ │ │ └── skl.go │ │ │ │ ├── base │ │ │ │ │ ├── cleaner.go │ │ │ │ │ ├── comparer.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── filenames.go │ │ │ │ │ ├── internal.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── lazy_value.go │ │ │ │ │ ├── logger.go │ │ │ │ │ ├── merger.go │ │ │ │ │ ├── metrics.go │ │ │ │ │ └── options.go │ │ │ │ ├── batchskl │ │ │ │ │ ├── README.md │ │ │ │ │ ├── iterator.go │ │ │ │ │ └── skl.go │ │ │ │ ├── bytealloc │ │ │ │ │ └── bytealloc.go │ │ │ │ ├── cache │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── cgo_disabled.go │ │ │ │ │ ├── cgo_enabled.go │ │ │ │ │ ├── clockpro.go │ │ │ │ │ ├── clockpro_normal.go │ │ │ │ │ ├── clockpro_tracing.go │ │ │ │ │ ├── entry.go │ │ │ │ │ ├── entry_invariants.go │ │ │ │ │ ├── entry_normal.go │ │ │ │ │ ├── refcnt_normal.go │ │ │ │ │ ├── refcnt_tracing.go │ │ │ │ │ ├── robin_hood.go │ │ │ │ │ ├── value.go │ │ │ │ │ ├── value_invariants.go │ │ │ │ │ └── value_normal.go │ │ │ │ ├── constants │ │ │ │ │ └── constants.go │ │ │ │ ├── crc │ │ │ │ │ └── crc.go │ │ │ │ ├── fastrand │ │ │ │ │ └── fastrand.go │ │ │ │ ├── humanize │ │ │ │ │ └── humanize.go │ │ │ │ ├── intern │ │ │ │ │ └── intern.go │ │ │ │ ├── invalidating │ │ │ │ │ └── iter.go │ │ │ │ ├── invariants │ │ │ │ │ ├── finalizer_off.go │ │ │ │ │ ├── finalizer_on.go │ │ │ │ │ ├── off.go │ │ │ │ │ ├── on.go │ │ │ │ │ ├── race_off.go │ │ │ │ │ └── race_on.go │ │ │ │ ├── keyspan │ │ │ │ │ ├── bounded.go │ │ │ │ │ ├── defragment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── fragmenter.go │ │ │ │ │ ├── get.go │ │ │ │ │ ├── interleaving_iter.go │ │ │ │ │ ├── internal_iter_shim.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── level_iter.go │ │ │ │ │ ├── merging_iter.go │ │ │ │ │ ├── seek.go │ │ │ │ │ ├── span.go │ │ │ │ │ ├── transformer.go │ │ │ │ │ └── truncate.go │ │ │ │ ├── manifest │ │ │ │ │ ├── btree.go │ │ │ │ │ ├── l0_sublevels.go │ │ │ │ │ ├── level.go │ │ │ │ │ ├── level_metadata.go │ │ │ │ │ ├── version.go │ │ │ │ │ └── version_edit.go │ │ │ │ ├── manual │ │ │ │ │ ├── manual.go │ │ │ │ │ ├── manual_32bit.go │ │ │ │ │ ├── manual_64bit.go │ │ │ │ │ ├── manual_mips.go │ │ │ │ │ └── manual_nocgo.go │ │ │ │ ├── private │ │ │ │ │ ├── batch.go │ │ │ │ │ └── sstable.go │ │ │ │ ├── rangedel │ │ │ │ │ └── rangedel.go │ │ │ │ ├── rangekey │ │ │ │ │ ├── coalesce.go │ │ │ │ │ └── rangekey.go │ │ │ │ ├── rawalloc │ │ │ │ │ ├── rawalloc.go │ │ │ │ │ ├── rawalloc_32bit.go │ │ │ │ │ ├── rawalloc_64bit.go │ │ │ │ │ ├── rawalloc_gccgo.go │ │ │ │ │ ├── rawalloc_go1.9.go │ │ │ │ │ └── rawalloc_mips.go │ │ │ │ └── testkeys │ │ │ │ │ ├── strconv.go │ │ │ │ │ └── testkeys.go │ │ │ ├── iterator.go │ │ │ ├── level_checker.go │ │ │ ├── level_iter.go │ │ │ ├── log_recycler.go │ │ │ ├── logger.go │ │ │ ├── mem_table.go │ │ │ ├── merger.go │ │ │ ├── merging_iter.go │ │ │ ├── merging_iter_heap.go │ │ │ ├── metrics.go │ │ │ ├── objstorage │ │ │ │ ├── noop_readahead.go │ │ │ │ ├── objstorage.go │ │ │ │ ├── objstorageprovider │ │ │ │ │ ├── objiotracing │ │ │ │ │ │ ├── obj_io_tracing.go │ │ │ │ │ │ ├── obj_io_tracing_off.go │ │ │ │ │ │ └── obj_io_tracing_on.go │ │ │ │ │ ├── provider.go │ │ │ │ │ ├── readahead.go │ │ │ │ │ ├── remote.go │ │ │ │ │ ├── remote_backing.go │ │ │ │ │ ├── remote_obj_name.go │ │ │ │ │ ├── remote_readable.go │ │ │ │ │ ├── remoteobjcat │ │ │ │ │ │ ├── catalog.go │ │ │ │ │ │ └── version_edit.go │ │ │ │ │ ├── shared_writable.go │ │ │ │ │ ├── sharedcache │ │ │ │ │ │ └── shared_cache.go │ │ │ │ │ ├── vfs.go │ │ │ │ │ ├── vfs_readable.go │ │ │ │ │ └── vfs_writable.go │ │ │ │ └── remote │ │ │ │ │ ├── factory.go │ │ │ │ │ ├── localfs.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── mem.go │ │ │ │ │ └── storage.go │ │ │ ├── open.go │ │ │ ├── options.go │ │ │ ├── pacer.go │ │ │ ├── range_keys.go │ │ │ ├── rangekey │ │ │ │ └── rangekey.go │ │ │ ├── read_compaction_queue.go │ │ │ ├── read_state.go │ │ │ ├── record │ │ │ │ ├── log_writer.go │ │ │ │ ├── record.go │ │ │ │ └── rotation.go │ │ │ ├── scan_internal.go │ │ │ ├── snapshot.go │ │ │ ├── sstable │ │ │ │ ├── block.go │ │ │ │ ├── block_property.go │ │ │ │ ├── block_property_test_utils.go │ │ │ │ ├── buffer_pool.go │ │ │ │ ├── comparer.go │ │ │ │ ├── compression.go │ │ │ │ ├── compression_cgo.go │ │ │ │ ├── compression_nocgo.go │ │ │ │ ├── filter.go │ │ │ │ ├── format.go │ │ │ │ ├── internal.go │ │ │ │ ├── layout.go │ │ │ │ ├── options.go │ │ │ │ ├── properties.go │ │ │ │ ├── raw_block.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_iter.go │ │ │ │ ├── reader_iter_single_lvl.go │ │ │ │ ├── reader_iter_two_lvl.go │ │ │ │ ├── reader_virtual.go │ │ │ │ ├── suffix_rewriter.go │ │ │ │ ├── table.go │ │ │ │ ├── unsafe.go │ │ │ │ ├── value_block.go │ │ │ │ ├── write_queue.go │ │ │ │ └── writer.go │ │ │ ├── table_cache.go │ │ │ ├── table_stats.go │ │ │ ├── version_set.go │ │ │ └── vfs │ │ │ │ ├── atomicfs │ │ │ │ └── marker.go │ │ │ │ ├── clone.go │ │ │ │ ├── default_linux.go │ │ │ │ ├── default_unix.go │ │ │ │ ├── default_windows.go │ │ │ │ ├── disk_full.go │ │ │ │ ├── disk_health.go │ │ │ │ ├── disk_usage_linux.go │ │ │ │ ├── disk_usage_netbsd.go │ │ │ │ ├── disk_usage_openbsd.go │ │ │ │ ├── disk_usage_unix.go │ │ │ │ ├── disk_usage_windows.go │ │ │ │ ├── errors_unix.go │ │ │ │ ├── errors_windows.go │ │ │ │ ├── fadvise_generic.go │ │ │ │ ├── fadvise_linux.go │ │ │ │ ├── file_lock_generic.go │ │ │ │ ├── file_lock_unix.go │ │ │ │ ├── file_lock_windows.go │ │ │ │ ├── logging_fs.go │ │ │ │ ├── mem_fs.go │ │ │ │ ├── syncing_file.go │ │ │ │ └── vfs.go │ │ ├── redact │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── builder │ │ │ │ └── builder.go │ │ │ ├── doc.go │ │ │ ├── interfaces │ │ │ │ └── interfaces.go │ │ │ ├── internal │ │ │ │ ├── buffer │ │ │ │ │ └── buffer.go │ │ │ │ ├── escape │ │ │ │ │ └── escape.go │ │ │ │ ├── fmtforward │ │ │ │ │ └── make_format.go │ │ │ │ ├── markers │ │ │ │ │ ├── constants.go │ │ │ │ │ └── markers.go │ │ │ │ ├── redact │ │ │ │ │ ├── doc.go │ │ │ │ │ └── wrappers.go │ │ │ │ └── rfmt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── fmtsort │ │ │ │ │ └── sort.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── format.go.diff │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── print.go │ │ │ │ │ ├── print.go.diff │ │ │ │ │ ├── printer_adapter.go │ │ │ │ │ ├── refresh.sh │ │ │ │ │ └── registry.go │ │ │ ├── markers_print.go │ │ │ └── util.go │ │ └── tokenbucket │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── token_bucket.go │ ├── coder │ │ └── websocket │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── accept.go │ │ │ ├── close.go │ │ │ ├── compress.go │ │ │ ├── conn.go │ │ │ ├── dial.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── frame.go │ │ │ ├── hijack.go │ │ │ ├── internal │ │ │ ├── bpool │ │ │ │ └── bpool.go │ │ │ ├── errd │ │ │ │ └── wrap.go │ │ │ ├── util │ │ │ │ └── util.go │ │ │ └── wsjs │ │ │ │ └── wsjs_js.go │ │ │ ├── mask.go │ │ │ ├── mask_amd64.s │ │ │ ├── mask_arm64.s │ │ │ ├── mask_asm.go │ │ │ ├── mask_go.go │ │ │ ├── netconn.go │ │ │ ├── netconn_js.go │ │ │ ├── netconn_notjs.go │ │ │ ├── read.go │ │ │ ├── stringer.go │ │ │ ├── write.go │ │ │ └── ws_js.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── denisenkom │ │ └── go-mssqldb │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── accesstokenconnector.go │ │ │ ├── appveyor.yml │ │ │ ├── buf.go │ │ │ ├── bulkcopy.go │ │ │ ├── bulkcopy_sql.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── fedauth.go │ │ │ ├── internal │ │ │ ├── cp │ │ │ │ ├── charset.go │ │ │ │ ├── collation.go │ │ │ │ ├── cp1250.go │ │ │ │ ├── cp1251.go │ │ │ │ ├── cp1252.go │ │ │ │ ├── cp1253.go │ │ │ │ ├── cp1254.go │ │ │ │ ├── cp1255.go │ │ │ │ ├── cp1256.go │ │ │ │ ├── cp1257.go │ │ │ │ ├── cp1258.go │ │ │ │ ├── cp437.go │ │ │ │ ├── cp850.go │ │ │ │ ├── cp874.go │ │ │ │ ├── cp932.go │ │ │ │ ├── cp936.go │ │ │ │ ├── cp949.go │ │ │ │ └── cp950.go │ │ │ ├── decimal │ │ │ │ └── decimal.go │ │ │ └── querytext │ │ │ │ └── parser.go │ │ │ ├── log.go │ │ │ ├── msdsn │ │ │ ├── conn_str.go │ │ │ ├── conn_str_go115.go │ │ │ ├── conn_str_go115pre.go │ │ │ ├── conn_str_go118.go │ │ │ └── conn_str_go118pre.go │ │ │ ├── mssql.go │ │ │ ├── mssql_go110.go │ │ │ ├── mssql_go110pre.go │ │ │ ├── mssql_go118.go │ │ │ ├── mssql_go118pre.go │ │ │ ├── mssql_go19.go │ │ │ ├── mssql_go19pre.go │ │ │ ├── net.go │ │ │ ├── ntlm.go │ │ │ ├── rpc.go │ │ │ ├── sspi_windows.go │ │ │ ├── tds.go │ │ │ ├── token.go │ │ │ ├── token_string.go │ │ │ ├── tran.go │ │ │ ├── tvp_go19.go │ │ │ ├── types.go │ │ │ └── uniqueidentifier.go │ ├── dlclark │ │ └── regexp2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ATTRIB │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fastclock.go │ │ │ ├── match.go │ │ │ ├── regexp.go │ │ │ ├── replace.go │ │ │ ├── runner.go │ │ │ ├── syntax │ │ │ ├── charclass.go │ │ │ ├── code.go │ │ │ ├── escape.go │ │ │ ├── fuzz.go │ │ │ ├── parser.go │ │ │ ├── prefix.go │ │ │ ├── replacerdata.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ └── testoutput1 │ ├── dromara │ │ └── carbon │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.cn.md │ │ │ ├── README.ja.md │ │ │ ├── README.ko.md │ │ │ ├── README.md │ │ │ ├── boundary.go │ │ │ ├── calendar.go │ │ │ ├── calendar │ │ │ ├── gregorian.go │ │ │ ├── hebrew │ │ │ │ ├── hebrew.go │ │ │ │ ├── hebrew_test_data.json │ │ │ │ ├── test_report.cn.md │ │ │ │ └── test_report.en.md │ │ │ ├── julian │ │ │ │ ├── julian.go │ │ │ │ ├── julian_test_data.json │ │ │ │ ├── test_report.cn.md │ │ │ │ └── test_report.en.md │ │ │ ├── lunar │ │ │ │ ├── lunar.go │ │ │ │ ├── lunar_test_data.json │ │ │ │ ├── test_report.cn.md │ │ │ │ └── test_report.en.md │ │ │ └── persian │ │ │ │ ├── persian.go │ │ │ │ ├── persian_test_data.json │ │ │ │ ├── test_report.cn.md │ │ │ │ └── test_report.en.md │ │ │ ├── carbon.go │ │ │ ├── comparer.go │ │ │ ├── constants.go │ │ │ ├── constellation.go │ │ │ ├── creator.go │ │ │ ├── default.go │ │ │ ├── difference.go │ │ │ ├── errors.go │ │ │ ├── extremum.go │ │ │ ├── frozen.go │ │ │ ├── getter.go │ │ │ ├── helper.go │ │ │ ├── lang │ │ │ ├── af.json │ │ │ ├── ar.json │ │ │ ├── bg.json │ │ │ ├── da.json │ │ │ ├── de.json │ │ │ ├── el.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fa.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── hi.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── mn.json │ │ │ ├── ms-MY.json │ │ │ ├── my.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── ro.json │ │ │ ├── ru.json │ │ │ ├── se.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── uk.json │ │ │ ├── vi.json │ │ │ ├── zh-CN.json │ │ │ └── zh-TW.json │ │ │ ├── language.go │ │ │ ├── outputer.go │ │ │ ├── parser.go │ │ │ ├── season.go │ │ │ ├── setter.go │ │ │ ├── traveler.go │ │ │ ├── type_builtin.go │ │ │ ├── type_carbon.go │ │ │ ├── type_format.go │ │ │ ├── type_interface.go │ │ │ ├── type_layout.go │ │ │ └── type_timestamp.go │ ├── dustin │ │ └── go-humanize │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── big.go │ │ │ ├── bigbytes.go │ │ │ ├── bytes.go │ │ │ ├── comma.go │ │ │ ├── commaf.go │ │ │ ├── ftoa.go │ │ │ ├── humanize.go │ │ │ ├── number.go │ │ │ ├── ordinals.go │ │ │ ├── si.go │ │ │ └── times.go │ ├── elliotchance │ │ └── orderedmap │ │ │ └── v3 │ │ │ ├── LICENSE │ │ │ ├── list.go │ │ │ └── orderedmap.go │ ├── emersion │ │ ├── go-imap │ │ │ ├── .build.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client │ │ │ │ ├── client.go │ │ │ │ ├── cmd_any.go │ │ │ │ ├── cmd_auth.go │ │ │ │ ├── cmd_noauth.go │ │ │ │ ├── cmd_selected.go │ │ │ │ └── tag.go │ │ │ ├── command.go │ │ │ ├── commands │ │ │ │ ├── append.go │ │ │ │ ├── authenticate.go │ │ │ │ ├── capability.go │ │ │ │ ├── check.go │ │ │ │ ├── close.go │ │ │ │ ├── commands.go │ │ │ │ ├── copy.go │ │ │ │ ├── create.go │ │ │ │ ├── delete.go │ │ │ │ ├── enable.go │ │ │ │ ├── expunge.go │ │ │ │ ├── fetch.go │ │ │ │ ├── idle.go │ │ │ │ ├── list.go │ │ │ │ ├── login.go │ │ │ │ ├── logout.go │ │ │ │ ├── move.go │ │ │ │ ├── noop.go │ │ │ │ ├── rename.go │ │ │ │ ├── search.go │ │ │ │ ├── select.go │ │ │ │ ├── starttls.go │ │ │ │ ├── status.go │ │ │ │ ├── store.go │ │ │ │ ├── subscribe.go │ │ │ │ ├── uid.go │ │ │ │ └── unselect.go │ │ │ ├── conn.go │ │ │ ├── date.go │ │ │ ├── imap.go │ │ │ ├── literal.go │ │ │ ├── logger.go │ │ │ ├── mailbox.go │ │ │ ├── message.go │ │ │ ├── read.go │ │ │ ├── response.go │ │ │ ├── responses │ │ │ │ ├── authenticate.go │ │ │ │ ├── capability.go │ │ │ │ ├── enabled.go │ │ │ │ ├── expunge.go │ │ │ │ ├── fetch.go │ │ │ │ ├── idle.go │ │ │ │ ├── list.go │ │ │ │ ├── responses.go │ │ │ │ ├── search.go │ │ │ │ ├── select.go │ │ │ │ └── status.go │ │ │ ├── search.go │ │ │ ├── seqset.go │ │ │ ├── status.go │ │ │ ├── utf7 │ │ │ │ ├── decoder.go │ │ │ │ ├── encoder.go │ │ │ │ └── utf7.go │ │ │ └── write.go │ │ ├── go-message │ │ │ ├── .build.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── charset.go │ │ │ ├── encoding.go │ │ │ ├── entity.go │ │ │ ├── header.go │ │ │ ├── mail │ │ │ │ ├── address.go │ │ │ │ ├── attachment.go │ │ │ │ ├── header.go │ │ │ │ ├── inline.go │ │ │ │ ├── mail.go │ │ │ │ ├── reader.go │ │ │ │ └── writer.go │ │ │ ├── message.go │ │ │ ├── multipart.go │ │ │ ├── textproto │ │ │ │ ├── header.go │ │ │ │ ├── multipart.go │ │ │ │ └── textproto.go │ │ │ └── writer.go │ │ └── go-sasl │ │ │ ├── .build.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── anonymous.go │ │ │ ├── external.go │ │ │ ├── login.go │ │ │ ├── oauthbearer.go │ │ │ ├── plain.go │ │ │ └── sasl.go │ ├── fatih │ │ └── color │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── color.go │ │ │ ├── color_windows.go │ │ │ └── doc.go │ ├── getsentry │ │ └── sentry-go │ │ │ ├── .codecov.yml │ │ │ ├── .craft.yml │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MIGRATION.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── attribute │ │ │ ├── builder.go │ │ │ ├── rawhelpers.go │ │ │ └── value.go │ │ │ ├── batch_logger.go │ │ │ ├── check_in.go │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── dsn.go │ │ │ ├── dynamic_sampling_context.go │ │ │ ├── exception.go │ │ │ ├── hub.go │ │ │ ├── integrations.go │ │ │ ├── interfaces.go │ │ │ ├── internal │ │ │ ├── debug │ │ │ │ └── transport.go │ │ │ ├── debuglog │ │ │ │ └── log.go │ │ │ ├── http │ │ │ │ └── transport.go │ │ │ ├── otel │ │ │ │ └── baggage │ │ │ │ │ ├── README.md │ │ │ │ │ ├── baggage.go │ │ │ │ │ └── internal │ │ │ │ │ └── baggage │ │ │ │ │ └── baggage.go │ │ │ ├── protocol │ │ │ │ ├── dsn.go │ │ │ │ ├── envelope.go │ │ │ │ ├── interfaces.go │ │ │ │ └── types.go │ │ │ └── ratelimit │ │ │ │ ├── category.go │ │ │ │ ├── deadline.go │ │ │ │ ├── doc.go │ │ │ │ ├── map.go │ │ │ │ ├── rate_limits.go │ │ │ │ └── retry_after.go │ │ │ ├── log.go │ │ │ ├── log_fallback.go │ │ │ ├── mocks.go │ │ │ ├── propagation_context.go │ │ │ ├── scope.go │ │ │ ├── sentry.go │ │ │ ├── sourcereader.go │ │ │ ├── span_recorder.go │ │ │ ├── stacktrace.go │ │ │ ├── traces_sampler.go │ │ │ ├── tracing.go │ │ │ ├── transport.go │ │ │ └── util.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-faster │ │ ├── errors │ │ │ ├── .codecov.yml │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── adaptor.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── format.go │ │ │ ├── frame.go │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ ├── into.go │ │ │ ├── join_go120.go │ │ │ ├── must.go │ │ │ ├── noerrtrace.go │ │ │ ├── trace.go │ │ │ └── wrap.go │ │ ├── jx │ │ │ ├── .codecov.yml │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── dec.go │ │ │ ├── dec_arr.go │ │ │ ├── dec_arr_iter.go │ │ │ ├── dec_b64.go │ │ │ ├── dec_bool.go │ │ │ ├── dec_capture.go │ │ │ ├── dec_depth.go │ │ │ ├── dec_error.go │ │ │ ├── dec_float.go │ │ │ ├── dec_float_big.go │ │ │ ├── dec_int.gen.go │ │ │ ├── dec_int.go │ │ │ ├── dec_null.go │ │ │ ├── dec_num.go │ │ │ ├── dec_obj.go │ │ │ ├── dec_obj_iter.go │ │ │ ├── dec_raw.go │ │ │ ├── dec_read.go │ │ │ ├── dec_skip.go │ │ │ ├── dec_str.go │ │ │ ├── dec_validate.go │ │ │ ├── enc.go │ │ │ ├── enc_b64.go │ │ │ ├── enc_comma.go │ │ │ ├── enc_float.go │ │ │ ├── enc_int.go │ │ │ ├── enc_num.go │ │ │ ├── enc_str.go │ │ │ ├── enc_str_escape.go │ │ │ ├── enc_stream.go │ │ │ ├── generate.go │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ ├── internal │ │ │ │ └── byteseq │ │ │ │ │ └── byteseq.go │ │ │ ├── jx.go │ │ │ ├── num.go │ │ │ ├── w.go │ │ │ ├── w_b64.go │ │ │ ├── w_float.go │ │ │ ├── w_float_bits.go │ │ │ ├── w_int.gen.go │ │ │ ├── w_int.go │ │ │ ├── w_num.go │ │ │ ├── w_str.go │ │ │ ├── w_str_escape.go │ │ │ └── w_stream.go │ │ ├── xor │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ ├── xor.go │ │ │ ├── xor_amd64.go │ │ │ ├── xor_amd64.s │ │ │ ├── xor_arm64.go │ │ │ ├── xor_arm64.s │ │ │ ├── xor_generic.go │ │ │ ├── xor_ppc64x.go │ │ │ └── xor_ppc64x.s │ │ └── yaml │ │ │ ├── .codecov.yml │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE-APACHE │ │ │ ├── LICENSE-MIT │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── decode_pool.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── encode_pool.go │ │ │ ├── equal_key.go │ │ │ ├── errors.go │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ ├── json.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── unmarshal.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ ├── yamlprivateh.go │ │ │ └── zero.go │ ├── go-ini │ │ └── ini │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── codecov.yml │ │ │ ├── data_source.go │ │ │ ├── deprecated.go │ │ │ ├── error.go │ │ │ ├── file.go │ │ │ ├── helper.go │ │ │ ├── ini.go │ │ │ ├── key.go │ │ │ ├── parser.go │ │ │ ├── section.go │ │ │ └── struct.go │ ├── go-ozzo │ │ └── ozzo-validation │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADE.md │ │ │ ├── absent.go │ │ │ ├── date.go │ │ │ ├── each.go │ │ │ ├── error.go │ │ │ ├── in.go │ │ │ ├── is │ │ │ └── rules.go │ │ │ ├── length.go │ │ │ ├── map.go │ │ │ ├── match.go │ │ │ ├── minmax.go │ │ │ ├── multipleof.go │ │ │ ├── not_in.go │ │ │ ├── not_nil.go │ │ │ ├── required.go │ │ │ ├── string.go │ │ │ ├── struct.go │ │ │ ├── util.go │ │ │ ├── validation.go │ │ │ └── when.go │ ├── go-telegram-bot-api │ │ └── telegram-bot-api │ │ │ └── v5 │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── book.toml │ │ │ ├── bot.go │ │ │ ├── configs.go │ │ │ ├── helpers.go │ │ │ ├── log.go │ │ │ ├── params.go │ │ │ ├── passport.go │ │ │ └── types.go │ ├── gofiber │ │ └── fiber │ │ │ └── v2 │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── AGENTS.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── app.go │ │ │ ├── client.go │ │ │ ├── color.go │ │ │ ├── ctx.go │ │ │ ├── error.go │ │ │ ├── group.go │ │ │ ├── helpers.go │ │ │ ├── hooks.go │ │ │ ├── internal │ │ │ └── schema │ │ │ │ ├── LICENSE │ │ │ │ ├── cache.go │ │ │ │ ├── converter.go │ │ │ │ ├── decoder.go │ │ │ │ ├── doc.go │ │ │ │ └── encoder.go │ │ │ ├── listen.go │ │ │ ├── log │ │ │ ├── default.go │ │ │ ├── fiberlog.go │ │ │ └── log.go │ │ │ ├── mount.go │ │ │ ├── path.go │ │ │ ├── prefork.go │ │ │ ├── router.go │ │ │ └── utils │ │ │ ├── README.md │ │ │ ├── assertions.go │ │ │ ├── bytes.go │ │ │ ├── common.go │ │ │ ├── convert.go │ │ │ ├── convert_b2s_new.go │ │ │ ├── convert_b2s_old.go │ │ │ ├── convert_s2b_new.go │ │ │ ├── convert_s2b_old.go │ │ │ ├── deprecated.go │ │ │ ├── http.go │ │ │ ├── ips.go │ │ │ ├── json.go │ │ │ ├── strings.go │ │ │ ├── time.go │ │ │ └── xml.go │ ├── gogo │ │ └── protobuf │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── custom_gogo.go │ │ │ ├── decode.go │ │ │ ├── deprecated.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── table_marshal.go │ │ │ ├── table_marshal_gogo.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── table_unmarshal_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gogo.go │ │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── types │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── api.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── protosize.go │ │ │ ├── source_context.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── type.pb.go │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers_gogo.go │ ├── golang-sql │ │ ├── civil │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── civil.go │ │ └── sqlexp │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── messages.go │ │ │ ├── mssql.go │ │ │ ├── namer.go │ │ │ ├── pg.go │ │ │ ├── querier.go │ │ │ ├── quoter.go │ │ │ ├── registry.go │ │ │ └── savepoint.go │ ├── golang │ │ └── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_arm64.s │ │ │ ├── decode_asm.go │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_arm64.s │ │ │ ├── encode_asm.go │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ ├── google │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── cmpopts │ │ │ │ ├── equate.go │ │ │ │ ├── ignore.go │ │ │ │ ├── sort.go │ │ │ │ ├── struct_filter.go │ │ │ │ └── xform.go │ │ │ │ ├── compare.go │ │ │ │ ├── export.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── flags │ │ │ │ │ └── flags.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── name.go │ │ │ │ │ ├── pointer.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── report.go │ │ │ │ ├── report_compare.go │ │ │ │ ├── report_references.go │ │ │ │ ├── report_reflect.go │ │ │ │ ├── report_slices.go │ │ │ │ ├── report_text.go │ │ │ │ └── report_value.go │ │ └── uuid │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── node_js.go │ │ │ ├── node_net.go │ │ │ ├── null.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ ├── version4.go │ │ │ ├── version6.go │ │ │ └── version7.go │ ├── gotd │ │ ├── contrib │ │ │ ├── LICENSE │ │ │ ├── auth │ │ │ │ └── kv │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── kv.go │ │ │ │ │ └── session.go │ │ │ ├── bbolt │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── peer_storage.go │ │ │ │ ├── session.go │ │ │ │ └── state_storage.go │ │ │ ├── bg │ │ │ │ └── connect.go │ │ │ ├── pebble │ │ │ │ ├── auth.go │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── peer_storage.go │ │ │ │ └── session.go │ │ │ └── storage │ │ │ │ ├── collector.go │ │ │ │ ├── doc.go │ │ │ │ ├── find.go │ │ │ │ ├── hook.go │ │ │ │ ├── key.go │ │ │ │ ├── peer.go │ │ │ │ ├── peer_as.go │ │ │ │ ├── peer_storage.go │ │ │ │ └── resolver_cache.go │ │ ├── ige │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decrypt.go │ │ │ ├── encrypt.go │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ └── ige.go │ │ ├── neo │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ ├── moment.go │ │ │ ├── neo.go │ │ │ ├── net.go │ │ │ ├── ticker.go │ │ │ ├── time.go │ │ │ └── timer.go │ │ └── td │ │ │ ├── LICENSE │ │ │ ├── ascii │ │ │ └── ascii.go │ │ │ ├── bin │ │ │ ├── bin.go │ │ │ ├── buffer.go │ │ │ ├── bytes.go │ │ │ ├── const.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── errors.go │ │ │ ├── fields.go │ │ │ ├── int128.go │ │ │ ├── int256.go │ │ │ ├── pool.go │ │ │ └── string.go │ │ │ ├── clock │ │ │ ├── clock.go │ │ │ └── system.go │ │ │ ├── constant │ │ │ ├── credentials.go │ │ │ ├── doc.go │ │ │ ├── ids.go │ │ │ ├── tdlib_ids.go │ │ │ └── uploads.go │ │ │ ├── crypto │ │ │ ├── check_dh.go │ │ │ ├── check_gp.go │ │ │ ├── cipher.go │ │ │ ├── cipher_decrypt.go │ │ │ ├── cipher_encrypt.go │ │ │ ├── data_with_hash.go │ │ │ ├── dh.go │ │ │ ├── doc.go │ │ │ ├── encrypted_message.go │ │ │ ├── encrypted_message_data.go │ │ │ ├── exchange.go │ │ │ ├── fill_bytes.go │ │ │ ├── key.go │ │ │ ├── keys.go │ │ │ ├── keys_old.go │ │ │ ├── pq.go │ │ │ ├── prime.go │ │ │ ├── public_keys.go │ │ │ ├── rand.go │ │ │ ├── rand_js.go │ │ │ ├── rand_notjs.go │ │ │ ├── rsa.go │ │ │ ├── rsa_fingerprint.go │ │ │ ├── rsa_hashed.go │ │ │ ├── rsa_pad.go │ │ │ ├── salt.go │ │ │ ├── session_id.go │ │ │ ├── sha256.go │ │ │ ├── srp │ │ │ │ ├── hash.go │ │ │ │ ├── new_hash.go │ │ │ │ ├── pad.go │ │ │ │ └── srp.go │ │ │ └── temp_keys.go │ │ │ ├── exchange │ │ │ ├── client.go │ │ │ ├── client_flow.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── generator.go │ │ │ ├── key.go │ │ │ ├── proto.go │ │ │ ├── server.go │ │ │ └── server_flow.go │ │ │ ├── mt │ │ │ ├── mt.go │ │ │ ├── tl_bad_msg_notification_gen.go │ │ │ ├── tl_client_d_h_inner_data_gen.go │ │ │ ├── tl_destroy_session_gen.go │ │ │ ├── tl_destroy_session_res_gen.go │ │ │ ├── tl_future_salt_gen.go │ │ │ ├── tl_future_salts_gen.go │ │ │ ├── tl_get_future_salts_gen.go │ │ │ ├── tl_gzip_packed_gen.go │ │ │ ├── tl_http_wait_gen.go │ │ │ ├── tl_message_gen.go │ │ │ ├── tl_msg_container_gen.go │ │ │ ├── tl_msg_copy_gen.go │ │ │ ├── tl_msg_detailed_info_gen.go │ │ │ ├── tl_msg_resend_req_gen.go │ │ │ ├── tl_msgs_ack_gen.go │ │ │ ├── tl_msgs_all_info_gen.go │ │ │ ├── tl_msgs_state_info_gen.go │ │ │ ├── tl_msgs_state_req_gen.go │ │ │ ├── tl_new_session_created_gen.go │ │ │ ├── tl_p_q_inner_data_gen.go │ │ │ ├── tl_ping_delay_disconnect_gen.go │ │ │ ├── tl_ping_gen.go │ │ │ ├── tl_pong_gen.go │ │ │ ├── tl_registry_gen.go │ │ │ ├── tl_req_d_h_params_gen.go │ │ │ ├── tl_req_pq_gen.go │ │ │ ├── tl_req_pq_multi_gen.go │ │ │ ├── tl_res_p_q_gen.go │ │ │ ├── tl_rpc_drop_answer_const_gen.go │ │ │ ├── tl_rpc_drop_answer_gen.go │ │ │ ├── tl_rpc_error_gen.go │ │ │ ├── tl_rpc_result_gen.go │ │ │ ├── tl_server_d_h_inner_data_gen.go │ │ │ ├── tl_server_d_h_params_gen.go │ │ │ ├── tl_set_client_d_h_params_answer_gen.go │ │ │ └── tl_set_client_d_h_params_gen.go │ │ │ ├── mtproto │ │ │ ├── _data │ │ │ │ └── public_keys.pem │ │ │ ├── ack.go │ │ │ ├── conn.go │ │ │ ├── connect.go │ │ │ ├── doc.go │ │ │ ├── handle_ack.go │ │ │ ├── handle_bad_msg.go │ │ │ ├── handle_container.go │ │ │ ├── handle_future_salts.go │ │ │ ├── handle_gzip.go │ │ │ ├── handle_message.go │ │ │ ├── handle_message_fuzz.go │ │ │ ├── handle_result.go │ │ │ ├── handle_session_created.go │ │ │ ├── message_id.go │ │ │ ├── new_encrypted_msg.go │ │ │ ├── options.go │ │ │ ├── ping.go │ │ │ ├── read.go │ │ │ ├── rpc.go │ │ │ ├── salt.go │ │ │ ├── salts │ │ │ │ └── salts.go │ │ │ ├── session.go │ │ │ ├── vendored_keys.go │ │ │ ├── write.go │ │ │ └── zap.go │ │ │ ├── mtproxy │ │ │ ├── doc.go │ │ │ ├── faketls │ │ │ │ ├── client_hello.go │ │ │ │ ├── doc.go │ │ │ │ ├── faketls.go │ │ │ │ ├── record.go │ │ │ │ ├── server_hello.go │ │ │ │ └── tls.go │ │ │ ├── obfuscated2 │ │ │ │ ├── doc.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_util.go │ │ │ │ ├── obfuscated2.go │ │ │ │ └── server.go │ │ │ ├── obfuscator │ │ │ │ ├── dialer.go │ │ │ │ └── obfuscator.go │ │ │ └── secret.go │ │ │ ├── oteltg │ │ │ ├── keys.go │ │ │ └── otelch.go │ │ │ ├── pool │ │ │ ├── options.go │ │ │ ├── pool.go │ │ │ ├── pool_conn.go │ │ │ ├── req_map.go │ │ │ └── session.go │ │ │ ├── proto │ │ │ ├── codec │ │ │ │ ├── abridged.go │ │ │ │ ├── codec.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── full.go │ │ │ │ ├── intermediate.go │ │ │ │ ├── no_header.go │ │ │ │ └── padded_intermediate.go │ │ │ ├── container.go │ │ │ ├── doc.go │ │ │ ├── gzip.go │ │ │ ├── message_id.go │ │ │ ├── registry.go │ │ │ ├── rpc_result.go │ │ │ └── unencrypted_message.go │ │ │ ├── rpc │ │ │ ├── ack.go │ │ │ ├── doc.go │ │ │ ├── engine.go │ │ │ ├── errors.go │ │ │ ├── external.go │ │ │ └── options.go │ │ │ ├── session │ │ │ ├── session.go │ │ │ ├── storage_file.go │ │ │ ├── storage_js.go │ │ │ ├── storage_mem.go │ │ │ ├── tdesktop.go │ │ │ ├── tdesktop │ │ │ │ ├── constant.go │ │ │ │ ├── dbi.go │ │ │ │ ├── errors.go │ │ │ │ ├── file.go │ │ │ │ ├── key_data.go │ │ │ │ ├── local_key.go │ │ │ │ ├── md5.go │ │ │ │ ├── mtp_authorization.go │ │ │ │ ├── mtp_config.go │ │ │ │ ├── mtp_dcoptions.go │ │ │ │ └── tdesktop.go │ │ │ └── telethon.go │ │ │ ├── syncio │ │ │ ├── doc.go │ │ │ ├── reader.go │ │ │ └── writer_at.go │ │ │ ├── tdjson │ │ │ ├── decoder.go │ │ │ ├── encoder.go │ │ │ ├── errors.go │ │ │ ├── obj.go │ │ │ └── tdjson.go │ │ │ ├── tdp │ │ │ ├── tdp.go │ │ │ └── type.go │ │ │ ├── tdsync │ │ │ ├── backoff.go │ │ │ ├── cancel_group.go │ │ │ ├── log_group.go │ │ │ ├── ready.go │ │ │ ├── reset_ready.go │ │ │ └── supervisor.go │ │ │ ├── telegram │ │ │ ├── auth.go │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── bot.go │ │ │ │ ├── client.go │ │ │ │ ├── flow.go │ │ │ │ ├── password.go │ │ │ │ ├── qrlogin │ │ │ │ │ ├── accept.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── qrlogin.go │ │ │ │ │ └── token.go │ │ │ │ ├── self.go │ │ │ │ ├── signup.go │ │ │ │ ├── status.go │ │ │ │ └── user.go │ │ │ ├── bot.go │ │ │ ├── builder.go │ │ │ ├── cdn.go │ │ │ ├── cfg.go │ │ │ ├── client.go │ │ │ ├── compat.go │ │ │ ├── conn_builder.go │ │ │ ├── connect.go │ │ │ ├── dcs │ │ │ │ ├── dns.go │ │ │ │ ├── doc.go │ │ │ │ ├── find.go │ │ │ │ ├── list.go │ │ │ │ ├── mtproxy.go │ │ │ │ ├── plain.go │ │ │ │ ├── prod.go │ │ │ │ ├── protocol.go │ │ │ │ ├── resolver.go │ │ │ │ ├── resolver_js.go │ │ │ │ ├── resolver_notjs.go │ │ │ │ ├── test.go │ │ │ │ └── websocket.go │ │ │ ├── deeplink │ │ │ │ ├── deeplink.go │ │ │ │ └── domain.go │ │ │ ├── device.go │ │ │ ├── doc.go │ │ │ ├── flood_wait.go │ │ │ ├── handle_updates.go │ │ │ ├── internal │ │ │ │ ├── manager │ │ │ │ │ ├── conn.go │ │ │ │ │ ├── connmode_string.go │ │ │ │ │ ├── create.go │ │ │ │ │ ├── device.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── handler.go │ │ │ │ │ └── sync.go │ │ │ │ ├── upconv │ │ │ │ │ ├── doc.go │ │ │ │ │ └── upconv.go │ │ │ │ └── version │ │ │ │ │ └── version.go │ │ │ ├── invoke.go │ │ │ ├── message │ │ │ │ ├── audio.go │ │ │ │ ├── builder.go │ │ │ │ ├── check.go │ │ │ │ ├── contact.go │ │ │ │ ├── delete.go │ │ │ │ ├── dice.go │ │ │ │ ├── doc.go │ │ │ │ ├── document.go │ │ │ │ ├── draft.go │ │ │ │ ├── edit.go │ │ │ │ ├── entity │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fix.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── options.gen.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── token.go │ │ │ │ │ ├── user_resolver.go │ │ │ │ │ └── write.go │ │ │ │ ├── file.go │ │ │ │ ├── file_promise.go │ │ │ │ ├── format.go │ │ │ │ ├── forward.go │ │ │ │ ├── game.go │ │ │ │ ├── geo_point.go │ │ │ │ ├── gif.go │ │ │ │ ├── inline.go │ │ │ │ ├── inline │ │ │ │ │ ├── article.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── document.go │ │ │ │ │ ├── game.go │ │ │ │ │ ├── inline.go │ │ │ │ │ ├── message_auto_media.go │ │ │ │ │ ├── message_game.go │ │ │ │ │ ├── message_geo.go │ │ │ │ │ ├── message_text.go │ │ │ │ │ ├── option.go │ │ │ │ │ ├── photo.go │ │ │ │ │ └── types.go │ │ │ │ ├── join.go │ │ │ │ ├── markup │ │ │ │ │ ├── button.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── force_reply.go │ │ │ │ │ ├── hide.go │ │ │ │ │ ├── inline.go │ │ │ │ │ └── keyboard.go │ │ │ │ ├── media.go │ │ │ │ ├── mime.go │ │ │ │ ├── multi.go │ │ │ │ ├── peer.go │ │ │ │ ├── peer │ │ │ │ │ ├── constraint.go │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extract.go │ │ │ │ │ ├── list.go │ │ │ │ │ ├── lru.go │ │ │ │ │ ├── resolve.go │ │ │ │ │ ├── resolver.go │ │ │ │ │ └── singleflight.go │ │ │ │ ├── peer_unpack.go │ │ │ │ ├── photo.go │ │ │ │ ├── poll.go │ │ │ │ ├── report.go │ │ │ │ ├── request.go │ │ │ │ ├── scheduled.go │ │ │ │ ├── sender.go │ │ │ │ ├── stickers.go │ │ │ │ ├── style.go │ │ │ │ ├── styling │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── option.go │ │ │ │ │ └── options.gen.go │ │ │ │ ├── text.go │ │ │ │ ├── types.go │ │ │ │ ├── typing.gen.go │ │ │ │ ├── typing.go │ │ │ │ ├── upload.go │ │ │ │ └── video.go │ │ │ ├── middleware.go │ │ │ ├── migrate_to_dc.go │ │ │ ├── options.go │ │ │ ├── ping.go │ │ │ ├── pool.go │ │ │ ├── query │ │ │ │ ├── channels │ │ │ │ │ └── participants │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ ├── queries.gen.go │ │ │ │ │ │ ├── query.go │ │ │ │ │ │ └── specialize.go │ │ │ │ ├── dialogs │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── key.go │ │ │ │ │ ├── queries.gen.go │ │ │ │ │ ├── query.go │ │ │ │ │ └── specialize.go │ │ │ │ ├── messages │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── queries.gen.go │ │ │ │ │ ├── query.go │ │ │ │ │ └── specialize.go │ │ │ │ └── photos │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── queries.gen.go │ │ │ │ │ └── query.go │ │ │ ├── rand_int64.go │ │ │ ├── self.go │ │ │ ├── send_message.go │ │ │ ├── session.go │ │ │ ├── sub_conns.go │ │ │ ├── transfer.go │ │ │ ├── typemap.go │ │ │ ├── updates │ │ │ │ ├── access_hash_feeder.go │ │ │ │ ├── config.go │ │ │ │ ├── conv_shorts.go │ │ │ │ ├── doc.go │ │ │ │ ├── gap_buffer.go │ │ │ │ ├── gap_check.go │ │ │ │ ├── manager.go │ │ │ │ ├── sequence_box.go │ │ │ │ ├── sort_pts.go │ │ │ │ ├── state.go │ │ │ │ ├── state_apply.go │ │ │ │ ├── state_channel.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_mem.go │ │ │ │ ├── update.go │ │ │ │ └── utils.go │ │ │ └── uploader │ │ │ │ ├── big.go │ │ │ │ ├── client.go │ │ │ │ ├── helpers.go │ │ │ │ ├── part.go │ │ │ │ ├── progress.go │ │ │ │ ├── small.go │ │ │ │ ├── source │ │ │ │ ├── doc.go │ │ │ │ ├── http.go │ │ │ │ └── source.go │ │ │ │ ├── upload.go │ │ │ │ └── uploader.go │ │ │ ├── testutil │ │ │ ├── alloc.go │ │ │ ├── date.go │ │ │ ├── doc.go │ │ │ ├── env.go │ │ │ ├── errors.go │ │ │ ├── external.go │ │ │ ├── key.go │ │ │ ├── payloads.go │ │ │ ├── race_disabled.go │ │ │ ├── race_enabled.go │ │ │ ├── rand.go │ │ │ ├── tools.go │ │ │ └── writer.go │ │ │ ├── tg │ │ │ ├── tg.go │ │ │ ├── tl_access_point_rule_gen.go │ │ │ ├── tl_access_point_rule_slices_gen.go │ │ │ ├── tl_account_accept_authorization_gen.go │ │ │ ├── tl_account_accept_authorization_slices_gen.go │ │ │ ├── tl_account_authorization_form_gen.go │ │ │ ├── tl_account_authorization_form_slices_gen.go │ │ │ ├── tl_account_authorizations_gen.go │ │ │ ├── tl_account_authorizations_slices_gen.go │ │ │ ├── tl_account_auto_download_settings_gen.go │ │ │ ├── tl_account_auto_download_settings_slices_gen.go │ │ │ ├── tl_account_auto_save_settings_gen.go │ │ │ ├── tl_account_auto_save_settings_slices_gen.go │ │ │ ├── tl_account_business_chat_links_gen.go │ │ │ ├── tl_account_business_chat_links_slices_gen.go │ │ │ ├── tl_account_cancel_password_email_gen.go │ │ │ ├── tl_account_cancel_password_email_slices_gen.go │ │ │ ├── tl_account_change_authorization_settings_gen.go │ │ │ ├── tl_account_change_authorization_settings_slices_gen.go │ │ │ ├── tl_account_change_phone_gen.go │ │ │ ├── tl_account_change_phone_slices_gen.go │ │ │ ├── tl_account_chat_themes_gen.go │ │ │ ├── tl_account_chat_themes_slices_gen.go │ │ │ ├── tl_account_check_username_gen.go │ │ │ ├── tl_account_check_username_slices_gen.go │ │ │ ├── tl_account_clear_recent_emoji_statuses_gen.go │ │ │ ├── tl_account_clear_recent_emoji_statuses_slices_gen.go │ │ │ ├── tl_account_confirm_password_email_gen.go │ │ │ ├── tl_account_confirm_password_email_slices_gen.go │ │ │ ├── tl_account_confirm_phone_gen.go │ │ │ ├── tl_account_confirm_phone_slices_gen.go │ │ │ ├── tl_account_connected_bots_gen.go │ │ │ ├── tl_account_connected_bots_slices_gen.go │ │ │ ├── tl_account_content_settings_gen.go │ │ │ ├── tl_account_content_settings_slices_gen.go │ │ │ ├── tl_account_create_business_chat_link_gen.go │ │ │ ├── tl_account_create_business_chat_link_slices_gen.go │ │ │ ├── tl_account_create_theme_gen.go │ │ │ ├── tl_account_create_theme_slices_gen.go │ │ │ ├── tl_account_days_ttl_gen.go │ │ │ ├── tl_account_days_ttl_slices_gen.go │ │ │ ├── tl_account_decline_password_reset_gen.go │ │ │ ├── tl_account_decline_password_reset_slices_gen.go │ │ │ ├── tl_account_delete_account_gen.go │ │ │ ├── tl_account_delete_account_slices_gen.go │ │ │ ├── tl_account_delete_auto_save_exceptions_gen.go │ │ │ ├── tl_account_delete_auto_save_exceptions_slices_gen.go │ │ │ ├── tl_account_delete_business_chat_link_gen.go │ │ │ ├── tl_account_delete_business_chat_link_slices_gen.go │ │ │ ├── tl_account_delete_secure_value_gen.go │ │ │ ├── tl_account_delete_secure_value_slices_gen.go │ │ │ ├── tl_account_disable_peer_connected_bot_gen.go │ │ │ ├── tl_account_disable_peer_connected_bot_slices_gen.go │ │ │ ├── tl_account_edit_business_chat_link_gen.go │ │ │ ├── tl_account_edit_business_chat_link_slices_gen.go │ │ │ ├── tl_account_email_verified_gen.go │ │ │ ├── tl_account_email_verified_slices_gen.go │ │ │ ├── tl_account_emoji_statuses_gen.go │ │ │ ├── tl_account_emoji_statuses_slices_gen.go │ │ │ ├── tl_account_finish_takeout_session_gen.go │ │ │ ├── tl_account_finish_takeout_session_slices_gen.go │ │ │ ├── tl_account_get_account_ttl_gen.go │ │ │ ├── tl_account_get_account_ttl_slices_gen.go │ │ │ ├── tl_account_get_all_secure_values_gen.go │ │ │ ├── tl_account_get_all_secure_values_slices_gen.go │ │ │ ├── tl_account_get_authorization_form_gen.go │ │ │ ├── tl_account_get_authorization_form_slices_gen.go │ │ │ ├── tl_account_get_authorizations_gen.go │ │ │ ├── tl_account_get_authorizations_slices_gen.go │ │ │ ├── tl_account_get_auto_download_settings_gen.go │ │ │ ├── tl_account_get_auto_download_settings_slices_gen.go │ │ │ ├── tl_account_get_auto_save_settings_gen.go │ │ │ ├── tl_account_get_auto_save_settings_slices_gen.go │ │ │ ├── tl_account_get_bot_business_connection_gen.go │ │ │ ├── tl_account_get_bot_business_connection_slices_gen.go │ │ │ ├── tl_account_get_business_chat_links_gen.go │ │ │ ├── tl_account_get_business_chat_links_slices_gen.go │ │ │ ├── tl_account_get_channel_default_emoji_statuses_gen.go │ │ │ ├── tl_account_get_channel_default_emoji_statuses_slices_gen.go │ │ │ ├── tl_account_get_channel_restricted_status_emojis_gen.go │ │ │ ├── tl_account_get_channel_restricted_status_emojis_slices_gen.go │ │ │ ├── tl_account_get_chat_themes_gen.go │ │ │ ├── tl_account_get_chat_themes_slices_gen.go │ │ │ ├── tl_account_get_collectible_emoji_statuses_gen.go │ │ │ ├── tl_account_get_collectible_emoji_statuses_slices_gen.go │ │ │ ├── tl_account_get_connected_bots_gen.go │ │ │ ├── tl_account_get_connected_bots_slices_gen.go │ │ │ ├── tl_account_get_contact_sign_up_notification_gen.go │ │ │ ├── tl_account_get_contact_sign_up_notification_slices_gen.go │ │ │ ├── tl_account_get_content_settings_gen.go │ │ │ ├── tl_account_get_content_settings_slices_gen.go │ │ │ ├── tl_account_get_default_background_emojis_gen.go │ │ │ ├── tl_account_get_default_background_emojis_slices_gen.go │ │ │ ├── tl_account_get_default_emoji_statuses_gen.go │ │ │ ├── tl_account_get_default_emoji_statuses_slices_gen.go │ │ │ ├── tl_account_get_default_group_photo_emojis_gen.go │ │ │ ├── tl_account_get_default_group_photo_emojis_slices_gen.go │ │ │ ├── tl_account_get_default_profile_photo_emojis_gen.go │ │ │ ├── tl_account_get_default_profile_photo_emojis_slices_gen.go │ │ │ ├── tl_account_get_global_privacy_settings_gen.go │ │ │ ├── tl_account_get_global_privacy_settings_slices_gen.go │ │ │ ├── tl_account_get_multi_wall_papers_gen.go │ │ │ ├── tl_account_get_multi_wall_papers_slices_gen.go │ │ │ ├── tl_account_get_notify_exceptions_gen.go │ │ │ ├── tl_account_get_notify_exceptions_slices_gen.go │ │ │ ├── tl_account_get_notify_settings_gen.go │ │ │ ├── tl_account_get_notify_settings_slices_gen.go │ │ │ ├── tl_account_get_paid_messages_revenue_gen.go │ │ │ ├── tl_account_get_paid_messages_revenue_slices_gen.go │ │ │ ├── tl_account_get_password_gen.go │ │ │ ├── tl_account_get_password_settings_gen.go │ │ │ ├── tl_account_get_password_settings_slices_gen.go │ │ │ ├── tl_account_get_password_slices_gen.go │ │ │ ├── tl_account_get_privacy_gen.go │ │ │ ├── tl_account_get_privacy_slices_gen.go │ │ │ ├── tl_account_get_reactions_notify_settings_gen.go │ │ │ ├── tl_account_get_reactions_notify_settings_slices_gen.go │ │ │ ├── tl_account_get_recent_emoji_statuses_gen.go │ │ │ ├── tl_account_get_recent_emoji_statuses_slices_gen.go │ │ │ ├── tl_account_get_saved_music_ids_gen.go │ │ │ ├── tl_account_get_saved_music_ids_slices_gen.go │ │ │ ├── tl_account_get_saved_ringtones_gen.go │ │ │ ├── tl_account_get_saved_ringtones_slices_gen.go │ │ │ ├── tl_account_get_secure_value_gen.go │ │ │ ├── tl_account_get_secure_value_slices_gen.go │ │ │ ├── tl_account_get_theme_gen.go │ │ │ ├── tl_account_get_theme_slices_gen.go │ │ │ ├── tl_account_get_themes_gen.go │ │ │ ├── tl_account_get_themes_slices_gen.go │ │ │ ├── tl_account_get_tmp_password_gen.go │ │ │ ├── tl_account_get_tmp_password_slices_gen.go │ │ │ ├── tl_account_get_unique_gift_chat_themes_gen.go │ │ │ ├── tl_account_get_unique_gift_chat_themes_slices_gen.go │ │ │ ├── tl_account_get_wall_paper_gen.go │ │ │ ├── tl_account_get_wall_paper_slices_gen.go │ │ │ ├── tl_account_get_wall_papers_gen.go │ │ │ ├── tl_account_get_wall_papers_slices_gen.go │ │ │ ├── tl_account_get_web_authorizations_gen.go │ │ │ ├── tl_account_get_web_authorizations_slices_gen.go │ │ │ ├── tl_account_init_takeout_session_gen.go │ │ │ ├── tl_account_init_takeout_session_slices_gen.go │ │ │ ├── tl_account_install_theme_gen.go │ │ │ ├── tl_account_install_theme_slices_gen.go │ │ │ ├── tl_account_install_wall_paper_gen.go │ │ │ ├── tl_account_install_wall_paper_slices_gen.go │ │ │ ├── tl_account_invalidate_sign_in_codes_gen.go │ │ │ ├── tl_account_invalidate_sign_in_codes_slices_gen.go │ │ │ ├── tl_account_paid_messages_revenue_gen.go │ │ │ ├── tl_account_paid_messages_revenue_slices_gen.go │ │ │ ├── tl_account_password_gen.go │ │ │ ├── tl_account_password_input_settings_gen.go │ │ │ ├── tl_account_password_input_settings_slices_gen.go │ │ │ ├── tl_account_password_settings_gen.go │ │ │ ├── tl_account_password_settings_slices_gen.go │ │ │ ├── tl_account_password_slices_gen.go │ │ │ ├── tl_account_privacy_rules_gen.go │ │ │ ├── tl_account_privacy_rules_slices_gen.go │ │ │ ├── tl_account_register_device_gen.go │ │ │ ├── tl_account_register_device_slices_gen.go │ │ │ ├── tl_account_reorder_usernames_gen.go │ │ │ ├── tl_account_reorder_usernames_slices_gen.go │ │ │ ├── tl_account_report_peer_gen.go │ │ │ ├── tl_account_report_peer_slices_gen.go │ │ │ ├── tl_account_report_profile_photo_gen.go │ │ │ ├── tl_account_report_profile_photo_slices_gen.go │ │ │ ├── tl_account_resend_password_email_gen.go │ │ │ ├── tl_account_resend_password_email_slices_gen.go │ │ │ ├── tl_account_reset_authorization_gen.go │ │ │ ├── tl_account_reset_authorization_slices_gen.go │ │ │ ├── tl_account_reset_notify_settings_gen.go │ │ │ ├── tl_account_reset_notify_settings_slices_gen.go │ │ │ ├── tl_account_reset_password_gen.go │ │ │ ├── tl_account_reset_password_result_gen.go │ │ │ ├── tl_account_reset_password_result_slices_gen.go │ │ │ ├── tl_account_reset_password_slices_gen.go │ │ │ ├── tl_account_reset_wall_papers_gen.go │ │ │ ├── tl_account_reset_wall_papers_slices_gen.go │ │ │ ├── tl_account_reset_web_authorization_gen.go │ │ │ ├── tl_account_reset_web_authorization_slices_gen.go │ │ │ ├── tl_account_reset_web_authorizations_gen.go │ │ │ ├── tl_account_reset_web_authorizations_slices_gen.go │ │ │ ├── tl_account_resolve_business_chat_link_gen.go │ │ │ ├── tl_account_resolve_business_chat_link_slices_gen.go │ │ │ ├── tl_account_resolved_business_chat_links_gen.go │ │ │ ├── tl_account_resolved_business_chat_links_slices_gen.go │ │ │ ├── tl_account_save_auto_download_settings_gen.go │ │ │ ├── tl_account_save_auto_download_settings_slices_gen.go │ │ │ ├── tl_account_save_auto_save_settings_gen.go │ │ │ ├── tl_account_save_auto_save_settings_slices_gen.go │ │ │ ├── tl_account_save_music_gen.go │ │ │ ├── tl_account_save_music_slices_gen.go │ │ │ ├── tl_account_save_ringtone_gen.go │ │ │ ├── tl_account_save_ringtone_slices_gen.go │ │ │ ├── tl_account_save_secure_value_gen.go │ │ │ ├── tl_account_save_secure_value_slices_gen.go │ │ │ ├── tl_account_save_theme_gen.go │ │ │ ├── tl_account_save_theme_slices_gen.go │ │ │ ├── tl_account_save_wall_paper_gen.go │ │ │ ├── tl_account_save_wall_paper_slices_gen.go │ │ │ ├── tl_account_saved_music_ids_gen.go │ │ │ ├── tl_account_saved_music_ids_slices_gen.go │ │ │ ├── tl_account_saved_ringtone_gen.go │ │ │ ├── tl_account_saved_ringtone_slices_gen.go │ │ │ ├── tl_account_saved_ringtones_gen.go │ │ │ ├── tl_account_saved_ringtones_slices_gen.go │ │ │ ├── tl_account_send_change_phone_code_gen.go │ │ │ ├── tl_account_send_change_phone_code_slices_gen.go │ │ │ ├── tl_account_send_confirm_phone_code_gen.go │ │ │ ├── tl_account_send_confirm_phone_code_slices_gen.go │ │ │ ├── tl_account_send_verify_email_code_gen.go │ │ │ ├── tl_account_send_verify_email_code_slices_gen.go │ │ │ ├── tl_account_send_verify_phone_code_gen.go │ │ │ ├── tl_account_send_verify_phone_code_slices_gen.go │ │ │ ├── tl_account_sent_email_code_gen.go │ │ │ ├── tl_account_sent_email_code_slices_gen.go │ │ │ ├── tl_account_set_account_ttl_gen.go │ │ │ ├── tl_account_set_account_ttl_slices_gen.go │ │ │ ├── tl_account_set_authorization_ttl_gen.go │ │ │ ├── tl_account_set_authorization_ttl_slices_gen.go │ │ │ ├── tl_account_set_contact_sign_up_notification_gen.go │ │ │ ├── tl_account_set_contact_sign_up_notification_slices_gen.go │ │ │ ├── tl_account_set_content_settings_gen.go │ │ │ ├── tl_account_set_content_settings_slices_gen.go │ │ │ ├── tl_account_set_global_privacy_settings_gen.go │ │ │ ├── tl_account_set_global_privacy_settings_slices_gen.go │ │ │ ├── tl_account_set_main_profile_tab_gen.go │ │ │ ├── tl_account_set_main_profile_tab_slices_gen.go │ │ │ ├── tl_account_set_privacy_gen.go │ │ │ ├── tl_account_set_privacy_slices_gen.go │ │ │ ├── tl_account_set_reactions_notify_settings_gen.go │ │ │ ├── tl_account_set_reactions_notify_settings_slices_gen.go │ │ │ ├── tl_account_takeout_gen.go │ │ │ ├── tl_account_takeout_slices_gen.go │ │ │ ├── tl_account_themes_gen.go │ │ │ ├── tl_account_themes_slices_gen.go │ │ │ ├── tl_account_tmp_password_gen.go │ │ │ ├── tl_account_tmp_password_slices_gen.go │ │ │ ├── tl_account_toggle_connected_bot_paused_gen.go │ │ │ ├── tl_account_toggle_connected_bot_paused_slices_gen.go │ │ │ ├── tl_account_toggle_no_paid_messages_exception_gen.go │ │ │ ├── tl_account_toggle_no_paid_messages_exception_slices_gen.go │ │ │ ├── tl_account_toggle_sponsored_messages_gen.go │ │ │ ├── tl_account_toggle_sponsored_messages_slices_gen.go │ │ │ ├── tl_account_toggle_username_gen.go │ │ │ ├── tl_account_toggle_username_slices_gen.go │ │ │ ├── tl_account_unregister_device_gen.go │ │ │ ├── tl_account_unregister_device_slices_gen.go │ │ │ ├── tl_account_update_birthday_gen.go │ │ │ ├── tl_account_update_birthday_slices_gen.go │ │ │ ├── tl_account_update_business_away_message_gen.go │ │ │ ├── tl_account_update_business_away_message_slices_gen.go │ │ │ ├── tl_account_update_business_greeting_message_gen.go │ │ │ ├── tl_account_update_business_greeting_message_slices_gen.go │ │ │ ├── tl_account_update_business_intro_gen.go │ │ │ ├── tl_account_update_business_intro_slices_gen.go │ │ │ ├── tl_account_update_business_location_gen.go │ │ │ ├── tl_account_update_business_location_slices_gen.go │ │ │ ├── tl_account_update_business_work_hours_gen.go │ │ │ ├── tl_account_update_business_work_hours_slices_gen.go │ │ │ ├── tl_account_update_color_gen.go │ │ │ ├── tl_account_update_color_slices_gen.go │ │ │ ├── tl_account_update_connected_bot_gen.go │ │ │ ├── tl_account_update_connected_bot_slices_gen.go │ │ │ ├── tl_account_update_device_locked_gen.go │ │ │ ├── tl_account_update_device_locked_slices_gen.go │ │ │ ├── tl_account_update_emoji_status_gen.go │ │ │ ├── tl_account_update_emoji_status_slices_gen.go │ │ │ ├── tl_account_update_notify_settings_gen.go │ │ │ ├── tl_account_update_notify_settings_slices_gen.go │ │ │ ├── tl_account_update_password_settings_gen.go │ │ │ ├── tl_account_update_password_settings_slices_gen.go │ │ │ ├── tl_account_update_personal_channel_gen.go │ │ │ ├── tl_account_update_personal_channel_slices_gen.go │ │ │ ├── tl_account_update_profile_gen.go │ │ │ ├── tl_account_update_profile_slices_gen.go │ │ │ ├── tl_account_update_status_gen.go │ │ │ ├── tl_account_update_status_slices_gen.go │ │ │ ├── tl_account_update_theme_gen.go │ │ │ ├── tl_account_update_theme_slices_gen.go │ │ │ ├── tl_account_update_username_gen.go │ │ │ ├── tl_account_update_username_slices_gen.go │ │ │ ├── tl_account_upload_ringtone_gen.go │ │ │ ├── tl_account_upload_ringtone_slices_gen.go │ │ │ ├── tl_account_upload_theme_gen.go │ │ │ ├── tl_account_upload_theme_slices_gen.go │ │ │ ├── tl_account_upload_wall_paper_gen.go │ │ │ ├── tl_account_upload_wall_paper_slices_gen.go │ │ │ ├── tl_account_verify_email_gen.go │ │ │ ├── tl_account_verify_email_slices_gen.go │ │ │ ├── tl_account_verify_phone_gen.go │ │ │ ├── tl_account_verify_phone_slices_gen.go │ │ │ ├── tl_account_wall_papers_gen.go │ │ │ ├── tl_account_wall_papers_slices_gen.go │ │ │ ├── tl_account_web_authorizations_gen.go │ │ │ ├── tl_account_web_authorizations_slices_gen.go │ │ │ ├── tl_attach_menu_bot_gen.go │ │ │ ├── tl_attach_menu_bot_icon_color_gen.go │ │ │ ├── tl_attach_menu_bot_icon_color_slices_gen.go │ │ │ ├── tl_attach_menu_bot_icon_gen.go │ │ │ ├── tl_attach_menu_bot_icon_slices_gen.go │ │ │ ├── tl_attach_menu_bot_slices_gen.go │ │ │ ├── tl_attach_menu_bots_bot_gen.go │ │ │ ├── tl_attach_menu_bots_bot_slices_gen.go │ │ │ ├── tl_attach_menu_bots_gen.go │ │ │ ├── tl_attach_menu_bots_slices_gen.go │ │ │ ├── tl_attach_menu_peer_type_gen.go │ │ │ ├── tl_attach_menu_peer_type_slices_gen.go │ │ │ ├── tl_auth_accept_login_token_gen.go │ │ │ ├── tl_auth_accept_login_token_slices_gen.go │ │ │ ├── tl_auth_authorization_gen.go │ │ │ ├── tl_auth_authorization_slices_gen.go │ │ │ ├── tl_auth_bind_temp_auth_key_gen.go │ │ │ ├── tl_auth_bind_temp_auth_key_slices_gen.go │ │ │ ├── tl_auth_cancel_code_gen.go │ │ │ ├── tl_auth_cancel_code_slices_gen.go │ │ │ ├── tl_auth_check_paid_auth_gen.go │ │ │ ├── tl_auth_check_paid_auth_slices_gen.go │ │ │ ├── tl_auth_check_password_gen.go │ │ │ ├── tl_auth_check_password_slices_gen.go │ │ │ ├── tl_auth_check_recovery_password_gen.go │ │ │ ├── tl_auth_check_recovery_password_slices_gen.go │ │ │ ├── tl_auth_code_type_gen.go │ │ │ ├── tl_auth_code_type_slices_gen.go │ │ │ ├── tl_auth_drop_temp_auth_keys_gen.go │ │ │ ├── tl_auth_drop_temp_auth_keys_slices_gen.go │ │ │ ├── tl_auth_export_authorization_gen.go │ │ │ ├── tl_auth_export_authorization_slices_gen.go │ │ │ ├── tl_auth_export_login_token_gen.go │ │ │ ├── tl_auth_export_login_token_slices_gen.go │ │ │ ├── tl_auth_exported_authorization_gen.go │ │ │ ├── tl_auth_exported_authorization_slices_gen.go │ │ │ ├── tl_auth_import_authorization_gen.go │ │ │ ├── tl_auth_import_authorization_slices_gen.go │ │ │ ├── tl_auth_import_bot_authorization_gen.go │ │ │ ├── tl_auth_import_bot_authorization_slices_gen.go │ │ │ ├── tl_auth_import_login_token_gen.go │ │ │ ├── tl_auth_import_login_token_slices_gen.go │ │ │ ├── tl_auth_import_web_token_authorization_gen.go │ │ │ ├── tl_auth_import_web_token_authorization_slices_gen.go │ │ │ ├── tl_auth_log_out_gen.go │ │ │ ├── tl_auth_log_out_slices_gen.go │ │ │ ├── tl_auth_logged_out_gen.go │ │ │ ├── tl_auth_logged_out_slices_gen.go │ │ │ ├── tl_auth_login_token_gen.go │ │ │ ├── tl_auth_login_token_slices_gen.go │ │ │ ├── tl_auth_password_recovery_gen.go │ │ │ ├── tl_auth_password_recovery_slices_gen.go │ │ │ ├── tl_auth_recover_password_gen.go │ │ │ ├── tl_auth_recover_password_slices_gen.go │ │ │ ├── tl_auth_report_missing_code_gen.go │ │ │ ├── tl_auth_report_missing_code_slices_gen.go │ │ │ ├── tl_auth_request_firebase_sms_gen.go │ │ │ ├── tl_auth_request_firebase_sms_slices_gen.go │ │ │ ├── tl_auth_request_password_recovery_gen.go │ │ │ ├── tl_auth_request_password_recovery_slices_gen.go │ │ │ ├── tl_auth_resend_code_gen.go │ │ │ ├── tl_auth_resend_code_slices_gen.go │ │ │ ├── tl_auth_reset_authorizations_gen.go │ │ │ ├── tl_auth_reset_authorizations_slices_gen.go │ │ │ ├── tl_auth_reset_login_email_gen.go │ │ │ ├── tl_auth_reset_login_email_slices_gen.go │ │ │ ├── tl_auth_send_code_gen.go │ │ │ ├── tl_auth_send_code_slices_gen.go │ │ │ ├── tl_auth_sent_code_gen.go │ │ │ ├── tl_auth_sent_code_slices_gen.go │ │ │ ├── tl_auth_sent_code_type_gen.go │ │ │ ├── tl_auth_sent_code_type_slices_gen.go │ │ │ ├── tl_auth_sign_in_gen.go │ │ │ ├── tl_auth_sign_in_slices_gen.go │ │ │ ├── tl_auth_sign_up_gen.go │ │ │ ├── tl_auth_sign_up_slices_gen.go │ │ │ ├── tl_authorization_gen.go │ │ │ ├── tl_authorization_slices_gen.go │ │ │ ├── tl_auto_download_settings_gen.go │ │ │ ├── tl_auto_download_settings_slices_gen.go │ │ │ ├── tl_auto_save_exception_gen.go │ │ │ ├── tl_auto_save_exception_slices_gen.go │ │ │ ├── tl_auto_save_settings_gen.go │ │ │ ├── tl_auto_save_settings_slices_gen.go │ │ │ ├── tl_available_effect_gen.go │ │ │ ├── tl_available_effect_slices_gen.go │ │ │ ├── tl_available_reaction_gen.go │ │ │ ├── tl_available_reaction_slices_gen.go │ │ │ ├── tl_bank_card_open_url_gen.go │ │ │ ├── tl_bank_card_open_url_slices_gen.go │ │ │ ├── tl_base_theme_gen.go │ │ │ ├── tl_base_theme_slices_gen.go │ │ │ ├── tl_birthday_gen.go │ │ │ ├── tl_birthday_slices_gen.go │ │ │ ├── tl_bool_gen.go │ │ │ ├── tl_bool_slices_gen.go │ │ │ ├── tl_boost_gen.go │ │ │ ├── tl_boost_slices_gen.go │ │ │ ├── tl_bot_app_gen.go │ │ │ ├── tl_bot_app_settings_gen.go │ │ │ ├── tl_bot_app_settings_slices_gen.go │ │ │ ├── tl_bot_app_slices_gen.go │ │ │ ├── tl_bot_business_connection_gen.go │ │ │ ├── tl_bot_business_connection_slices_gen.go │ │ │ ├── tl_bot_command_gen.go │ │ │ ├── tl_bot_command_scope_gen.go │ │ │ ├── tl_bot_command_scope_slices_gen.go │ │ │ ├── tl_bot_command_slices_gen.go │ │ │ ├── tl_bot_command_vector_gen.go │ │ │ ├── tl_bot_command_vector_slices_gen.go │ │ │ ├── tl_bot_info_gen.go │ │ │ ├── tl_bot_info_slices_gen.go │ │ │ ├── tl_bot_inline_message_gen.go │ │ │ ├── tl_bot_inline_message_slices_gen.go │ │ │ ├── tl_bot_inline_result_gen.go │ │ │ ├── tl_bot_inline_result_slices_gen.go │ │ │ ├── tl_bot_menu_button_gen.go │ │ │ ├── tl_bot_menu_button_slices_gen.go │ │ │ ├── tl_bot_preview_media_gen.go │ │ │ ├── tl_bot_preview_media_slices_gen.go │ │ │ ├── tl_bot_preview_media_vector_gen.go │ │ │ ├── tl_bot_preview_media_vector_slices_gen.go │ │ │ ├── tl_bot_verification_gen.go │ │ │ ├── tl_bot_verification_slices_gen.go │ │ │ ├── tl_bot_verifier_settings_gen.go │ │ │ ├── tl_bot_verifier_settings_slices_gen.go │ │ │ ├── tl_bots_add_preview_media_gen.go │ │ │ ├── tl_bots_add_preview_media_slices_gen.go │ │ │ ├── tl_bots_allow_send_message_gen.go │ │ │ ├── tl_bots_allow_send_message_slices_gen.go │ │ │ ├── tl_bots_answer_webhook_json_query_gen.go │ │ │ ├── tl_bots_answer_webhook_json_query_slices_gen.go │ │ │ ├── tl_bots_bot_info_gen.go │ │ │ ├── tl_bots_bot_info_slices_gen.go │ │ │ ├── tl_bots_can_send_message_gen.go │ │ │ ├── tl_bots_can_send_message_slices_gen.go │ │ │ ├── tl_bots_check_download_file_params_gen.go │ │ │ ├── tl_bots_check_download_file_params_slices_gen.go │ │ │ ├── tl_bots_delete_preview_media_gen.go │ │ │ ├── tl_bots_delete_preview_media_slices_gen.go │ │ │ ├── tl_bots_edit_preview_media_gen.go │ │ │ ├── tl_bots_edit_preview_media_slices_gen.go │ │ │ ├── tl_bots_get_admined_bots_gen.go │ │ │ ├── tl_bots_get_admined_bots_slices_gen.go │ │ │ ├── tl_bots_get_bot_commands_gen.go │ │ │ ├── tl_bots_get_bot_commands_slices_gen.go │ │ │ ├── tl_bots_get_bot_info_gen.go │ │ │ ├── tl_bots_get_bot_info_slices_gen.go │ │ │ ├── tl_bots_get_bot_menu_button_gen.go │ │ │ ├── tl_bots_get_bot_menu_button_slices_gen.go │ │ │ ├── tl_bots_get_bot_recommendations_gen.go │ │ │ ├── tl_bots_get_bot_recommendations_slices_gen.go │ │ │ ├── tl_bots_get_popular_app_bots_gen.go │ │ │ ├── tl_bots_get_popular_app_bots_slices_gen.go │ │ │ ├── tl_bots_get_preview_info_gen.go │ │ │ ├── tl_bots_get_preview_info_slices_gen.go │ │ │ ├── tl_bots_get_preview_medias_gen.go │ │ │ ├── tl_bots_get_preview_medias_slices_gen.go │ │ │ ├── tl_bots_invoke_web_view_custom_method_gen.go │ │ │ ├── tl_bots_invoke_web_view_custom_method_slices_gen.go │ │ │ ├── tl_bots_popular_app_bots_gen.go │ │ │ ├── tl_bots_popular_app_bots_slices_gen.go │ │ │ ├── tl_bots_preview_info_gen.go │ │ │ ├── tl_bots_preview_info_slices_gen.go │ │ │ ├── tl_bots_reorder_preview_medias_gen.go │ │ │ ├── tl_bots_reorder_preview_medias_slices_gen.go │ │ │ ├── tl_bots_reorder_usernames_gen.go │ │ │ ├── tl_bots_reorder_usernames_slices_gen.go │ │ │ ├── tl_bots_reset_bot_commands_gen.go │ │ │ ├── tl_bots_reset_bot_commands_slices_gen.go │ │ │ ├── tl_bots_send_custom_request_gen.go │ │ │ ├── tl_bots_send_custom_request_slices_gen.go │ │ │ ├── tl_bots_set_bot_broadcast_default_admin_rights_gen.go │ │ │ ├── tl_bots_set_bot_broadcast_default_admin_rights_slices_gen.go │ │ │ ├── tl_bots_set_bot_commands_gen.go │ │ │ ├── tl_bots_set_bot_commands_slices_gen.go │ │ │ ├── tl_bots_set_bot_group_default_admin_rights_gen.go │ │ │ ├── tl_bots_set_bot_group_default_admin_rights_slices_gen.go │ │ │ ├── tl_bots_set_bot_info_gen.go │ │ │ ├── tl_bots_set_bot_info_slices_gen.go │ │ │ ├── tl_bots_set_bot_menu_button_gen.go │ │ │ ├── tl_bots_set_bot_menu_button_slices_gen.go │ │ │ ├── tl_bots_set_custom_verification_gen.go │ │ │ ├── tl_bots_set_custom_verification_slices_gen.go │ │ │ ├── tl_bots_toggle_user_emoji_status_permission_gen.go │ │ │ ├── tl_bots_toggle_user_emoji_status_permission_slices_gen.go │ │ │ ├── tl_bots_toggle_username_gen.go │ │ │ ├── tl_bots_toggle_username_slices_gen.go │ │ │ ├── tl_bots_update_star_ref_program_gen.go │ │ │ ├── tl_bots_update_star_ref_program_slices_gen.go │ │ │ ├── tl_bots_update_user_emoji_status_gen.go │ │ │ ├── tl_bots_update_user_emoji_status_slices_gen.go │ │ │ ├── tl_business_away_message_gen.go │ │ │ ├── tl_business_away_message_schedule_gen.go │ │ │ ├── tl_business_away_message_schedule_slices_gen.go │ │ │ ├── tl_business_away_message_slices_gen.go │ │ │ ├── tl_business_bot_recipients_gen.go │ │ │ ├── tl_business_bot_recipients_slices_gen.go │ │ │ ├── tl_business_bot_rights_gen.go │ │ │ ├── tl_business_bot_rights_slices_gen.go │ │ │ ├── tl_business_chat_link_gen.go │ │ │ ├── tl_business_chat_link_slices_gen.go │ │ │ ├── tl_business_greeting_message_gen.go │ │ │ ├── tl_business_greeting_message_slices_gen.go │ │ │ ├── tl_business_intro_gen.go │ │ │ ├── tl_business_intro_slices_gen.go │ │ │ ├── tl_business_location_gen.go │ │ │ ├── tl_business_location_slices_gen.go │ │ │ ├── tl_business_recipients_gen.go │ │ │ ├── tl_business_recipients_slices_gen.go │ │ │ ├── tl_business_weekly_open_gen.go │ │ │ ├── tl_business_weekly_open_slices_gen.go │ │ │ ├── tl_business_work_hours_gen.go │ │ │ ├── tl_business_work_hours_slices_gen.go │ │ │ ├── tl_bytes_gen.go │ │ │ ├── tl_bytes_slices_gen.go │ │ │ ├── tl_cdn_config_gen.go │ │ │ ├── tl_cdn_config_slices_gen.go │ │ │ ├── tl_cdn_public_key_gen.go │ │ │ ├── tl_cdn_public_key_slices_gen.go │ │ │ ├── tl_channel_admin_log_event_action_gen.go │ │ │ ├── tl_channel_admin_log_event_action_slices_gen.go │ │ │ ├── tl_channel_admin_log_event_gen.go │ │ │ ├── tl_channel_admin_log_event_slices_gen.go │ │ │ ├── tl_channel_admin_log_events_filter_gen.go │ │ │ ├── tl_channel_admin_log_events_filter_slices_gen.go │ │ │ ├── tl_channel_location_gen.go │ │ │ ├── tl_channel_location_slices_gen.go │ │ │ ├── tl_channel_messages_filter_gen.go │ │ │ ├── tl_channel_messages_filter_slices_gen.go │ │ │ ├── tl_channel_participant_gen.go │ │ │ ├── tl_channel_participant_slices_gen.go │ │ │ ├── tl_channel_participants_filter_gen.go │ │ │ ├── tl_channel_participants_filter_slices_gen.go │ │ │ ├── tl_channels_admin_log_results_gen.go │ │ │ ├── tl_channels_admin_log_results_slices_gen.go │ │ │ ├── tl_channels_channel_participant_gen.go │ │ │ ├── tl_channels_channel_participant_slices_gen.go │ │ │ ├── tl_channels_channel_participants_gen.go │ │ │ ├── tl_channels_channel_participants_slices_gen.go │ │ │ ├── tl_channels_check_search_posts_flood_gen.go │ │ │ ├── tl_channels_check_search_posts_flood_slices_gen.go │ │ │ ├── tl_channels_check_username_gen.go │ │ │ ├── tl_channels_check_username_slices_gen.go │ │ │ ├── tl_channels_convert_to_gigagroup_gen.go │ │ │ ├── tl_channels_convert_to_gigagroup_slices_gen.go │ │ │ ├── tl_channels_create_channel_gen.go │ │ │ ├── tl_channels_create_channel_slices_gen.go │ │ │ ├── tl_channels_deactivate_all_usernames_gen.go │ │ │ ├── tl_channels_deactivate_all_usernames_slices_gen.go │ │ │ ├── tl_channels_delete_channel_gen.go │ │ │ ├── tl_channels_delete_channel_slices_gen.go │ │ │ ├── tl_channels_delete_history_gen.go │ │ │ ├── tl_channels_delete_history_slices_gen.go │ │ │ ├── tl_channels_delete_messages_gen.go │ │ │ ├── tl_channels_delete_messages_slices_gen.go │ │ │ ├── tl_channels_delete_participant_history_gen.go │ │ │ ├── tl_channels_delete_participant_history_slices_gen.go │ │ │ ├── tl_channels_edit_admin_gen.go │ │ │ ├── tl_channels_edit_admin_slices_gen.go │ │ │ ├── tl_channels_edit_banned_gen.go │ │ │ ├── tl_channels_edit_banned_slices_gen.go │ │ │ ├── tl_channels_edit_creator_gen.go │ │ │ ├── tl_channels_edit_creator_slices_gen.go │ │ │ ├── tl_channels_edit_location_gen.go │ │ │ ├── tl_channels_edit_location_slices_gen.go │ │ │ ├── tl_channels_edit_photo_gen.go │ │ │ ├── tl_channels_edit_photo_slices_gen.go │ │ │ ├── tl_channels_edit_title_gen.go │ │ │ ├── tl_channels_edit_title_slices_gen.go │ │ │ ├── tl_channels_export_message_link_gen.go │ │ │ ├── tl_channels_export_message_link_slices_gen.go │ │ │ ├── tl_channels_get_admin_log_gen.go │ │ │ ├── tl_channels_get_admin_log_slices_gen.go │ │ │ ├── tl_channels_get_admined_public_channels_gen.go │ │ │ ├── tl_channels_get_admined_public_channels_slices_gen.go │ │ │ ├── tl_channels_get_channel_recommendations_gen.go │ │ │ ├── tl_channels_get_channel_recommendations_slices_gen.go │ │ │ ├── tl_channels_get_channels_gen.go │ │ │ ├── tl_channels_get_channels_slices_gen.go │ │ │ ├── tl_channels_get_full_channel_gen.go │ │ │ ├── tl_channels_get_full_channel_slices_gen.go │ │ │ ├── tl_channels_get_groups_for_discussion_gen.go │ │ │ ├── tl_channels_get_groups_for_discussion_slices_gen.go │ │ │ ├── tl_channels_get_inactive_channels_gen.go │ │ │ ├── tl_channels_get_inactive_channels_slices_gen.go │ │ │ ├── tl_channels_get_left_channels_gen.go │ │ │ ├── tl_channels_get_left_channels_slices_gen.go │ │ │ ├── tl_channels_get_message_author_gen.go │ │ │ ├── tl_channels_get_message_author_slices_gen.go │ │ │ ├── tl_channels_get_messages_gen.go │ │ │ ├── tl_channels_get_messages_slices_gen.go │ │ │ ├── tl_channels_get_participant_gen.go │ │ │ ├── tl_channels_get_participant_slices_gen.go │ │ │ ├── tl_channels_get_participants_gen.go │ │ │ ├── tl_channels_get_participants_slices_gen.go │ │ │ ├── tl_channels_get_send_as_gen.go │ │ │ ├── tl_channels_get_send_as_slices_gen.go │ │ │ ├── tl_channels_invite_to_channel_gen.go │ │ │ ├── tl_channels_invite_to_channel_slices_gen.go │ │ │ ├── tl_channels_join_channel_gen.go │ │ │ ├── tl_channels_join_channel_slices_gen.go │ │ │ ├── tl_channels_leave_channel_gen.go │ │ │ ├── tl_channels_leave_channel_slices_gen.go │ │ │ ├── tl_channels_read_history_gen.go │ │ │ ├── tl_channels_read_history_slices_gen.go │ │ │ ├── tl_channels_read_message_contents_gen.go │ │ │ ├── tl_channels_read_message_contents_slices_gen.go │ │ │ ├── tl_channels_reorder_usernames_gen.go │ │ │ ├── tl_channels_reorder_usernames_slices_gen.go │ │ │ ├── tl_channels_report_anti_spam_false_positive_gen.go │ │ │ ├── tl_channels_report_anti_spam_false_positive_slices_gen.go │ │ │ ├── tl_channels_report_spam_gen.go │ │ │ ├── tl_channels_report_spam_slices_gen.go │ │ │ ├── tl_channels_restrict_sponsored_messages_gen.go │ │ │ ├── tl_channels_restrict_sponsored_messages_slices_gen.go │ │ │ ├── tl_channels_search_posts_gen.go │ │ │ ├── tl_channels_search_posts_slices_gen.go │ │ │ ├── tl_channels_send_as_peers_gen.go │ │ │ ├── tl_channels_send_as_peers_slices_gen.go │ │ │ ├── tl_channels_set_boosts_to_unblock_restrictions_gen.go │ │ │ ├── tl_channels_set_boosts_to_unblock_restrictions_slices_gen.go │ │ │ ├── tl_channels_set_discussion_group_gen.go │ │ │ ├── tl_channels_set_discussion_group_slices_gen.go │ │ │ ├── tl_channels_set_emoji_stickers_gen.go │ │ │ ├── tl_channels_set_emoji_stickers_slices_gen.go │ │ │ ├── tl_channels_set_main_profile_tab_gen.go │ │ │ ├── tl_channels_set_main_profile_tab_slices_gen.go │ │ │ ├── tl_channels_set_stickers_gen.go │ │ │ ├── tl_channels_set_stickers_slices_gen.go │ │ │ ├── tl_channels_sponsored_message_report_result_gen.go │ │ │ ├── tl_channels_sponsored_message_report_result_slices_gen.go │ │ │ ├── tl_channels_toggle_anti_spam_gen.go │ │ │ ├── tl_channels_toggle_anti_spam_slices_gen.go │ │ │ ├── tl_channels_toggle_autotranslation_gen.go │ │ │ ├── tl_channels_toggle_autotranslation_slices_gen.go │ │ │ ├── tl_channels_toggle_forum_gen.go │ │ │ ├── tl_channels_toggle_forum_slices_gen.go │ │ │ ├── tl_channels_toggle_join_request_gen.go │ │ │ ├── tl_channels_toggle_join_request_slices_gen.go │ │ │ ├── tl_channels_toggle_join_to_send_gen.go │ │ │ ├── tl_channels_toggle_join_to_send_slices_gen.go │ │ │ ├── tl_channels_toggle_participants_hidden_gen.go │ │ │ ├── tl_channels_toggle_participants_hidden_slices_gen.go │ │ │ ├── tl_channels_toggle_pre_history_hidden_gen.go │ │ │ ├── tl_channels_toggle_pre_history_hidden_slices_gen.go │ │ │ ├── tl_channels_toggle_signatures_gen.go │ │ │ ├── tl_channels_toggle_signatures_slices_gen.go │ │ │ ├── tl_channels_toggle_slow_mode_gen.go │ │ │ ├── tl_channels_toggle_slow_mode_slices_gen.go │ │ │ ├── tl_channels_toggle_username_gen.go │ │ │ ├── tl_channels_toggle_username_slices_gen.go │ │ │ ├── tl_channels_toggle_view_forum_as_messages_gen.go │ │ │ ├── tl_channels_toggle_view_forum_as_messages_slices_gen.go │ │ │ ├── tl_channels_update_color_gen.go │ │ │ ├── tl_channels_update_color_slices_gen.go │ │ │ ├── tl_channels_update_emoji_status_gen.go │ │ │ ├── tl_channels_update_emoji_status_slices_gen.go │ │ │ ├── tl_channels_update_paid_messages_price_gen.go │ │ │ ├── tl_channels_update_paid_messages_price_slices_gen.go │ │ │ ├── tl_channels_update_username_gen.go │ │ │ ├── tl_channels_update_username_slices_gen.go │ │ │ ├── tl_chat_admin_rights_gen.go │ │ │ ├── tl_chat_admin_rights_slices_gen.go │ │ │ ├── tl_chat_admin_with_invites_gen.go │ │ │ ├── tl_chat_admin_with_invites_slices_gen.go │ │ │ ├── tl_chat_banned_rights_gen.go │ │ │ ├── tl_chat_banned_rights_slices_gen.go │ │ │ ├── tl_chat_full_gen.go │ │ │ ├── tl_chat_full_slices_gen.go │ │ │ ├── tl_chat_gen.go │ │ │ ├── tl_chat_invite_gen.go │ │ │ ├── tl_chat_invite_importer_gen.go │ │ │ ├── tl_chat_invite_importer_slices_gen.go │ │ │ ├── tl_chat_invite_slices_gen.go │ │ │ ├── tl_chat_onlines_gen.go │ │ │ ├── tl_chat_onlines_slices_gen.go │ │ │ ├── tl_chat_participant_gen.go │ │ │ ├── tl_chat_participant_slices_gen.go │ │ │ ├── tl_chat_participants_gen.go │ │ │ ├── tl_chat_participants_slices_gen.go │ │ │ ├── tl_chat_photo_gen.go │ │ │ ├── tl_chat_photo_slices_gen.go │ │ │ ├── tl_chat_reactions_gen.go │ │ │ ├── tl_chat_reactions_slices_gen.go │ │ │ ├── tl_chat_slices_gen.go │ │ │ ├── tl_chat_theme_gen.go │ │ │ ├── tl_chat_theme_slices_gen.go │ │ │ ├── tl_chatlists_chatlist_invite_gen.go │ │ │ ├── tl_chatlists_chatlist_invite_slices_gen.go │ │ │ ├── tl_chatlists_chatlist_updates_gen.go │ │ │ ├── tl_chatlists_chatlist_updates_slices_gen.go │ │ │ ├── tl_chatlists_check_chatlist_invite_gen.go │ │ │ ├── tl_chatlists_check_chatlist_invite_slices_gen.go │ │ │ ├── tl_chatlists_delete_exported_invite_gen.go │ │ │ ├── tl_chatlists_delete_exported_invite_slices_gen.go │ │ │ ├── tl_chatlists_edit_exported_invite_gen.go │ │ │ ├── tl_chatlists_edit_exported_invite_slices_gen.go │ │ │ ├── tl_chatlists_export_chatlist_invite_gen.go │ │ │ ├── tl_chatlists_export_chatlist_invite_slices_gen.go │ │ │ ├── tl_chatlists_exported_chatlist_invite_gen.go │ │ │ ├── tl_chatlists_exported_chatlist_invite_slices_gen.go │ │ │ ├── tl_chatlists_exported_invites_gen.go │ │ │ ├── tl_chatlists_exported_invites_slices_gen.go │ │ │ ├── tl_chatlists_get_chatlist_updates_gen.go │ │ │ ├── tl_chatlists_get_chatlist_updates_slices_gen.go │ │ │ ├── tl_chatlists_get_exported_invites_gen.go │ │ │ ├── tl_chatlists_get_exported_invites_slices_gen.go │ │ │ ├── tl_chatlists_get_leave_chatlist_suggestions_gen.go │ │ │ ├── tl_chatlists_get_leave_chatlist_suggestions_slices_gen.go │ │ │ ├── tl_chatlists_hide_chatlist_updates_gen.go │ │ │ ├── tl_chatlists_hide_chatlist_updates_slices_gen.go │ │ │ ├── tl_chatlists_join_chatlist_invite_gen.go │ │ │ ├── tl_chatlists_join_chatlist_invite_slices_gen.go │ │ │ ├── tl_chatlists_join_chatlist_updates_gen.go │ │ │ ├── tl_chatlists_join_chatlist_updates_slices_gen.go │ │ │ ├── tl_chatlists_leave_chatlist_gen.go │ │ │ ├── tl_chatlists_leave_chatlist_slices_gen.go │ │ │ ├── tl_client_gen.go │ │ │ ├── tl_code_settings_gen.go │ │ │ ├── tl_code_settings_slices_gen.go │ │ │ ├── tl_config_gen.go │ │ │ ├── tl_config_slices_gen.go │ │ │ ├── tl_connected_bot_gen.go │ │ │ ├── tl_connected_bot_slices_gen.go │ │ │ ├── tl_connected_bot_star_ref_gen.go │ │ │ ├── tl_connected_bot_star_ref_slices_gen.go │ │ │ ├── tl_contact_birthday_gen.go │ │ │ ├── tl_contact_birthday_slices_gen.go │ │ │ ├── tl_contact_gen.go │ │ │ ├── tl_contact_slices_gen.go │ │ │ ├── tl_contact_status_gen.go │ │ │ ├── tl_contact_status_slices_gen.go │ │ │ ├── tl_contact_status_vector_gen.go │ │ │ ├── tl_contact_status_vector_slices_gen.go │ │ │ ├── tl_contacts_accept_contact_gen.go │ │ │ ├── tl_contacts_accept_contact_slices_gen.go │ │ │ ├── tl_contacts_add_contact_gen.go │ │ │ ├── tl_contacts_add_contact_slices_gen.go │ │ │ ├── tl_contacts_block_from_replies_gen.go │ │ │ ├── tl_contacts_block_from_replies_slices_gen.go │ │ │ ├── tl_contacts_block_gen.go │ │ │ ├── tl_contacts_block_slices_gen.go │ │ │ ├── tl_contacts_blocked_gen.go │ │ │ ├── tl_contacts_blocked_slices_gen.go │ │ │ ├── tl_contacts_contact_birthdays_gen.go │ │ │ ├── tl_contacts_contact_birthdays_slices_gen.go │ │ │ ├── tl_contacts_contacts_gen.go │ │ │ ├── tl_contacts_contacts_slices_gen.go │ │ │ ├── tl_contacts_delete_by_phones_gen.go │ │ │ ├── tl_contacts_delete_by_phones_slices_gen.go │ │ │ ├── tl_contacts_delete_contacts_gen.go │ │ │ ├── tl_contacts_delete_contacts_slices_gen.go │ │ │ ├── tl_contacts_edit_close_friends_gen.go │ │ │ ├── tl_contacts_edit_close_friends_slices_gen.go │ │ │ ├── tl_contacts_export_contact_token_gen.go │ │ │ ├── tl_contacts_export_contact_token_slices_gen.go │ │ │ ├── tl_contacts_found_gen.go │ │ │ ├── tl_contacts_found_slices_gen.go │ │ │ ├── tl_contacts_get_birthdays_gen.go │ │ │ ├── tl_contacts_get_birthdays_slices_gen.go │ │ │ ├── tl_contacts_get_blocked_gen.go │ │ │ ├── tl_contacts_get_blocked_slices_gen.go │ │ │ ├── tl_contacts_get_contact_ids_gen.go │ │ │ ├── tl_contacts_get_contact_ids_slices_gen.go │ │ │ ├── tl_contacts_get_contacts_gen.go │ │ │ ├── tl_contacts_get_contacts_slices_gen.go │ │ │ ├── tl_contacts_get_located_gen.go │ │ │ ├── tl_contacts_get_located_slices_gen.go │ │ │ ├── tl_contacts_get_saved_gen.go │ │ │ ├── tl_contacts_get_saved_slices_gen.go │ │ │ ├── tl_contacts_get_sponsored_peers_gen.go │ │ │ ├── tl_contacts_get_sponsored_peers_slices_gen.go │ │ │ ├── tl_contacts_get_statuses_gen.go │ │ │ ├── tl_contacts_get_statuses_slices_gen.go │ │ │ ├── tl_contacts_get_top_peers_gen.go │ │ │ ├── tl_contacts_get_top_peers_slices_gen.go │ │ │ ├── tl_contacts_import_contact_token_gen.go │ │ │ ├── tl_contacts_import_contact_token_slices_gen.go │ │ │ ├── tl_contacts_import_contacts_gen.go │ │ │ ├── tl_contacts_import_contacts_slices_gen.go │ │ │ ├── tl_contacts_imported_contacts_gen.go │ │ │ ├── tl_contacts_imported_contacts_slices_gen.go │ │ │ ├── tl_contacts_reset_saved_gen.go │ │ │ ├── tl_contacts_reset_saved_slices_gen.go │ │ │ ├── tl_contacts_reset_top_peer_rating_gen.go │ │ │ ├── tl_contacts_reset_top_peer_rating_slices_gen.go │ │ │ ├── tl_contacts_resolve_phone_gen.go │ │ │ ├── tl_contacts_resolve_phone_slices_gen.go │ │ │ ├── tl_contacts_resolve_username_gen.go │ │ │ ├── tl_contacts_resolve_username_slices_gen.go │ │ │ ├── tl_contacts_resolved_peer_gen.go │ │ │ ├── tl_contacts_resolved_peer_slices_gen.go │ │ │ ├── tl_contacts_search_gen.go │ │ │ ├── tl_contacts_search_slices_gen.go │ │ │ ├── tl_contacts_set_blocked_gen.go │ │ │ ├── tl_contacts_set_blocked_slices_gen.go │ │ │ ├── tl_contacts_sponsored_peers_gen.go │ │ │ ├── tl_contacts_sponsored_peers_slices_gen.go │ │ │ ├── tl_contacts_toggle_top_peers_gen.go │ │ │ ├── tl_contacts_toggle_top_peers_slices_gen.go │ │ │ ├── tl_contacts_top_peers_gen.go │ │ │ ├── tl_contacts_top_peers_slices_gen.go │ │ │ ├── tl_contacts_unblock_gen.go │ │ │ ├── tl_contacts_unblock_slices_gen.go │ │ │ ├── tl_contacts_update_contact_note_gen.go │ │ │ ├── tl_contacts_update_contact_note_slices_gen.go │ │ │ ├── tl_data_json_gen.go │ │ │ ├── tl_data_json_slices_gen.go │ │ │ ├── tl_dc_option_gen.go │ │ │ ├── tl_dc_option_slices_gen.go │ │ │ ├── tl_default_history_ttl_gen.go │ │ │ ├── tl_default_history_ttl_slices_gen.go │ │ │ ├── tl_dialog_filter_gen.go │ │ │ ├── tl_dialog_filter_slices_gen.go │ │ │ ├── tl_dialog_filter_suggested_gen.go │ │ │ ├── tl_dialog_filter_suggested_slices_gen.go │ │ │ ├── tl_dialog_filter_suggested_vector_gen.go │ │ │ ├── tl_dialog_filter_suggested_vector_slices_gen.go │ │ │ ├── tl_dialog_gen.go │ │ │ ├── tl_dialog_peer_class_vector_gen.go │ │ │ ├── tl_dialog_peer_class_vector_slices_gen.go │ │ │ ├── tl_dialog_peer_gen.go │ │ │ ├── tl_dialog_peer_slices_gen.go │ │ │ ├── tl_dialog_slices_gen.go │ │ │ ├── tl_disallowed_gifts_settings_gen.go │ │ │ ├── tl_disallowed_gifts_settings_slices_gen.go │ │ │ ├── tl_document_attribute_gen.go │ │ │ ├── tl_document_attribute_slices_gen.go │ │ │ ├── tl_document_class_vector_gen.go │ │ │ ├── tl_document_class_vector_slices_gen.go │ │ │ ├── tl_document_gen.go │ │ │ ├── tl_document_slices_gen.go │ │ │ ├── tl_double_gen.go │ │ │ ├── tl_double_slices_gen.go │ │ │ ├── tl_draft_message_gen.go │ │ │ ├── tl_draft_message_slices_gen.go │ │ │ ├── tl_email_verification_gen.go │ │ │ ├── tl_email_verification_slices_gen.go │ │ │ ├── tl_email_verify_purpose_gen.go │ │ │ ├── tl_email_verify_purpose_slices_gen.go │ │ │ ├── tl_emoji_group_gen.go │ │ │ ├── tl_emoji_group_slices_gen.go │ │ │ ├── tl_emoji_keyword_gen.go │ │ │ ├── tl_emoji_keyword_slices_gen.go │ │ │ ├── tl_emoji_keywords_difference_gen.go │ │ │ ├── tl_emoji_keywords_difference_slices_gen.go │ │ │ ├── tl_emoji_language_gen.go │ │ │ ├── tl_emoji_language_slices_gen.go │ │ │ ├── tl_emoji_language_vector_gen.go │ │ │ ├── tl_emoji_language_vector_slices_gen.go │ │ │ ├── tl_emoji_list_gen.go │ │ │ ├── tl_emoji_list_slices_gen.go │ │ │ ├── tl_emoji_status_gen.go │ │ │ ├── tl_emoji_status_slices_gen.go │ │ │ ├── tl_emoji_url_gen.go │ │ │ ├── tl_emoji_url_slices_gen.go │ │ │ ├── tl_encrypted_chat_gen.go │ │ │ ├── tl_encrypted_chat_slices_gen.go │ │ │ ├── tl_encrypted_file_gen.go │ │ │ ├── tl_encrypted_file_slices_gen.go │ │ │ ├── tl_encrypted_message_gen.go │ │ │ ├── tl_encrypted_message_slices_gen.go │ │ │ ├── tl_error_gen.go │ │ │ ├── tl_error_slices_gen.go │ │ │ ├── tl_errors_gen.go │ │ │ ├── tl_exported_chat_invite_gen.go │ │ │ ├── tl_exported_chat_invite_slices_gen.go │ │ │ ├── tl_exported_chatlist_invite_gen.go │ │ │ ├── tl_exported_chatlist_invite_slices_gen.go │ │ │ ├── tl_exported_contact_token_gen.go │ │ │ ├── tl_exported_contact_token_slices_gen.go │ │ │ ├── tl_exported_message_link_gen.go │ │ │ ├── tl_exported_message_link_slices_gen.go │ │ │ ├── tl_exported_story_link_gen.go │ │ │ ├── tl_exported_story_link_slices_gen.go │ │ │ ├── tl_fact_check_gen.go │ │ │ ├── tl_fact_check_slices_gen.go │ │ │ ├── tl_fact_check_vector_gen.go │ │ │ ├── tl_fact_check_vector_slices_gen.go │ │ │ ├── tl_file_hash_gen.go │ │ │ ├── tl_file_hash_slices_gen.go │ │ │ ├── tl_file_hash_vector_gen.go │ │ │ ├── tl_file_hash_vector_slices_gen.go │ │ │ ├── tl_folder_gen.go │ │ │ ├── tl_folder_peer_gen.go │ │ │ ├── tl_folder_peer_slices_gen.go │ │ │ ├── tl_folder_slices_gen.go │ │ │ ├── tl_folders_edit_peer_folders_gen.go │ │ │ ├── tl_folders_edit_peer_folders_slices_gen.go │ │ │ ├── tl_forum_topic_gen.go │ │ │ ├── tl_forum_topic_slices_gen.go │ │ │ ├── tl_found_story_gen.go │ │ │ ├── tl_found_story_slices_gen.go │ │ │ ├── tl_fragment_collectible_info_gen.go │ │ │ ├── tl_fragment_collectible_info_slices_gen.go │ │ │ ├── tl_fragment_get_collectible_info_gen.go │ │ │ ├── tl_fragment_get_collectible_info_slices_gen.go │ │ │ ├── tl_game_gen.go │ │ │ ├── tl_game_slices_gen.go │ │ │ ├── tl_geo_point_address_gen.go │ │ │ ├── tl_geo_point_address_slices_gen.go │ │ │ ├── tl_geo_point_gen.go │ │ │ ├── tl_geo_point_slices_gen.go │ │ │ ├── tl_global_privacy_settings_gen.go │ │ │ ├── tl_global_privacy_settings_slices_gen.go │ │ │ ├── tl_group_call_gen.go │ │ │ ├── tl_group_call_participant_gen.go │ │ │ ├── tl_group_call_participant_slices_gen.go │ │ │ ├── tl_group_call_participant_video_gen.go │ │ │ ├── tl_group_call_participant_video_slices_gen.go │ │ │ ├── tl_group_call_participant_video_source_group_gen.go │ │ │ ├── tl_group_call_participant_video_source_group_slices_gen.go │ │ │ ├── tl_group_call_slices_gen.go │ │ │ ├── tl_group_call_stream_channel_gen.go │ │ │ ├── tl_group_call_stream_channel_slices_gen.go │ │ │ ├── tl_handlers_gen.go │ │ │ ├── tl_help_accept_terms_of_service_gen.go │ │ │ ├── tl_help_accept_terms_of_service_slices_gen.go │ │ │ ├── tl_help_app_config_gen.go │ │ │ ├── tl_help_app_config_slices_gen.go │ │ │ ├── tl_help_app_update_gen.go │ │ │ ├── tl_help_app_update_slices_gen.go │ │ │ ├── tl_help_config_simple_gen.go │ │ │ ├── tl_help_config_simple_slices_gen.go │ │ │ ├── tl_help_countries_list_gen.go │ │ │ ├── tl_help_countries_list_slices_gen.go │ │ │ ├── tl_help_country_code_gen.go │ │ │ ├── tl_help_country_code_slices_gen.go │ │ │ ├── tl_help_country_gen.go │ │ │ ├── tl_help_country_slices_gen.go │ │ │ ├── tl_help_deep_link_info_gen.go │ │ │ ├── tl_help_deep_link_info_slices_gen.go │ │ │ ├── tl_help_dismiss_suggestion_gen.go │ │ │ ├── tl_help_dismiss_suggestion_slices_gen.go │ │ │ ├── tl_help_edit_user_info_gen.go │ │ │ ├── tl_help_edit_user_info_slices_gen.go │ │ │ ├── tl_help_get_app_config_gen.go │ │ │ ├── tl_help_get_app_config_slices_gen.go │ │ │ ├── tl_help_get_app_update_gen.go │ │ │ ├── tl_help_get_app_update_slices_gen.go │ │ │ ├── tl_help_get_cdn_config_gen.go │ │ │ ├── tl_help_get_cdn_config_slices_gen.go │ │ │ ├── tl_help_get_config_gen.go │ │ │ ├── tl_help_get_config_slices_gen.go │ │ │ ├── tl_help_get_countries_list_gen.go │ │ │ ├── tl_help_get_countries_list_slices_gen.go │ │ │ ├── tl_help_get_deep_link_info_gen.go │ │ │ ├── tl_help_get_deep_link_info_slices_gen.go │ │ │ ├── tl_help_get_invite_text_gen.go │ │ │ ├── tl_help_get_invite_text_slices_gen.go │ │ │ ├── tl_help_get_nearest_dc_gen.go │ │ │ ├── tl_help_get_nearest_dc_slices_gen.go │ │ │ ├── tl_help_get_passport_config_gen.go │ │ │ ├── tl_help_get_passport_config_slices_gen.go │ │ │ ├── tl_help_get_peer_colors_gen.go │ │ │ ├── tl_help_get_peer_colors_slices_gen.go │ │ │ ├── tl_help_get_peer_profile_colors_gen.go │ │ │ ├── tl_help_get_peer_profile_colors_slices_gen.go │ │ │ ├── tl_help_get_premium_promo_gen.go │ │ │ ├── tl_help_get_premium_promo_slices_gen.go │ │ │ ├── tl_help_get_promo_data_gen.go │ │ │ ├── tl_help_get_promo_data_slices_gen.go │ │ │ ├── tl_help_get_recent_me_urls_gen.go │ │ │ ├── tl_help_get_recent_me_urls_slices_gen.go │ │ │ ├── tl_help_get_support_gen.go │ │ │ ├── tl_help_get_support_name_gen.go │ │ │ ├── tl_help_get_support_name_slices_gen.go │ │ │ ├── tl_help_get_support_slices_gen.go │ │ │ ├── tl_help_get_terms_of_service_update_gen.go │ │ │ ├── tl_help_get_terms_of_service_update_slices_gen.go │ │ │ ├── tl_help_get_timezones_list_gen.go │ │ │ ├── tl_help_get_timezones_list_slices_gen.go │ │ │ ├── tl_help_get_user_info_gen.go │ │ │ ├── tl_help_get_user_info_slices_gen.go │ │ │ ├── tl_help_hide_promo_data_gen.go │ │ │ ├── tl_help_hide_promo_data_slices_gen.go │ │ │ ├── tl_help_invite_text_gen.go │ │ │ ├── tl_help_invite_text_slices_gen.go │ │ │ ├── tl_help_passport_config_gen.go │ │ │ ├── tl_help_passport_config_slices_gen.go │ │ │ ├── tl_help_peer_color_option_gen.go │ │ │ ├── tl_help_peer_color_option_slices_gen.go │ │ │ ├── tl_help_peer_color_set_gen.go │ │ │ ├── tl_help_peer_color_set_slices_gen.go │ │ │ ├── tl_help_peer_colors_gen.go │ │ │ ├── tl_help_peer_colors_slices_gen.go │ │ │ ├── tl_help_premium_promo_gen.go │ │ │ ├── tl_help_premium_promo_slices_gen.go │ │ │ ├── tl_help_promo_data_gen.go │ │ │ ├── tl_help_promo_data_slices_gen.go │ │ │ ├── tl_help_recent_me_urls_gen.go │ │ │ ├── tl_help_recent_me_urls_slices_gen.go │ │ │ ├── tl_help_save_app_log_gen.go │ │ │ ├── tl_help_save_app_log_slices_gen.go │ │ │ ├── tl_help_set_bot_updates_status_gen.go │ │ │ ├── tl_help_set_bot_updates_status_slices_gen.go │ │ │ ├── tl_help_support_gen.go │ │ │ ├── tl_help_support_name_gen.go │ │ │ ├── tl_help_support_name_slices_gen.go │ │ │ ├── tl_help_support_slices_gen.go │ │ │ ├── tl_help_terms_of_service_gen.go │ │ │ ├── tl_help_terms_of_service_slices_gen.go │ │ │ ├── tl_help_terms_of_service_update_gen.go │ │ │ ├── tl_help_terms_of_service_update_slices_gen.go │ │ │ ├── tl_help_timezones_list_gen.go │ │ │ ├── tl_help_timezones_list_slices_gen.go │ │ │ ├── tl_help_user_info_gen.go │ │ │ ├── tl_help_user_info_slices_gen.go │ │ │ ├── tl_high_score_gen.go │ │ │ ├── tl_high_score_slices_gen.go │ │ │ ├── tl_imported_contact_gen.go │ │ │ ├── tl_imported_contact_slices_gen.go │ │ │ ├── tl_init_connection_gen.go │ │ │ ├── tl_init_connection_slices_gen.go │ │ │ ├── tl_inline_bot_switch_p_m_gen.go │ │ │ ├── tl_inline_bot_switch_p_m_slices_gen.go │ │ │ ├── tl_inline_bot_web_view_gen.go │ │ │ ├── tl_inline_bot_web_view_slices_gen.go │ │ │ ├── tl_inline_query_peer_type_gen.go │ │ │ ├── tl_inline_query_peer_type_slices_gen.go │ │ │ ├── tl_input_app_event_gen.go │ │ │ ├── tl_input_app_event_slices_gen.go │ │ │ ├── tl_input_bot_app_gen.go │ │ │ ├── tl_input_bot_app_slices_gen.go │ │ │ ├── tl_input_bot_inline_message_gen.go │ │ │ ├── tl_input_bot_inline_message_id_gen.go │ │ │ ├── tl_input_bot_inline_message_id_slices_gen.go │ │ │ ├── tl_input_bot_inline_message_slices_gen.go │ │ │ ├── tl_input_bot_inline_result_gen.go │ │ │ ├── tl_input_bot_inline_result_slices_gen.go │ │ │ ├── tl_input_business_away_message_gen.go │ │ │ ├── tl_input_business_away_message_slices_gen.go │ │ │ ├── tl_input_business_bot_recipients_gen.go │ │ │ ├── tl_input_business_bot_recipients_slices_gen.go │ │ │ ├── tl_input_business_chat_link_gen.go │ │ │ ├── tl_input_business_chat_link_slices_gen.go │ │ │ ├── tl_input_business_greeting_message_gen.go │ │ │ ├── tl_input_business_greeting_message_slices_gen.go │ │ │ ├── tl_input_business_intro_gen.go │ │ │ ├── tl_input_business_intro_slices_gen.go │ │ │ ├── tl_input_business_recipients_gen.go │ │ │ ├── tl_input_business_recipients_slices_gen.go │ │ │ ├── tl_input_channel_gen.go │ │ │ ├── tl_input_channel_slices_gen.go │ │ │ ├── tl_input_chat_photo_gen.go │ │ │ ├── tl_input_chat_photo_slices_gen.go │ │ │ ├── tl_input_chat_theme_gen.go │ │ │ ├── tl_input_chat_theme_slices_gen.go │ │ │ ├── tl_input_chatlist_dialog_filter_gen.go │ │ │ ├── tl_input_chatlist_dialog_filter_slices_gen.go │ │ │ ├── tl_input_check_password_srp_gen.go │ │ │ ├── tl_input_check_password_srp_slices_gen.go │ │ │ ├── tl_input_client_proxy_gen.go │ │ │ ├── tl_input_client_proxy_slices_gen.go │ │ │ ├── tl_input_collectible_gen.go │ │ │ ├── tl_input_collectible_slices_gen.go │ │ │ ├── tl_input_dialog_peer_gen.go │ │ │ ├── tl_input_dialog_peer_slices_gen.go │ │ │ ├── tl_input_document_gen.go │ │ │ ├── tl_input_document_slices_gen.go │ │ │ ├── tl_input_encrypted_chat_gen.go │ │ │ ├── tl_input_encrypted_chat_slices_gen.go │ │ │ ├── tl_input_encrypted_file_gen.go │ │ │ ├── tl_input_encrypted_file_slices_gen.go │ │ │ ├── tl_input_file_gen.go │ │ │ ├── tl_input_file_location_gen.go │ │ │ ├── tl_input_file_location_slices_gen.go │ │ │ ├── tl_input_file_slices_gen.go │ │ │ ├── tl_input_folder_peer_gen.go │ │ │ ├── tl_input_folder_peer_slices_gen.go │ │ │ ├── tl_input_game_gen.go │ │ │ ├── tl_input_game_slices_gen.go │ │ │ ├── tl_input_geo_point_gen.go │ │ │ ├── tl_input_geo_point_slices_gen.go │ │ │ ├── tl_input_group_call_gen.go │ │ │ ├── tl_input_group_call_slices_gen.go │ │ │ ├── tl_input_invoice_gen.go │ │ │ ├── tl_input_invoice_slices_gen.go │ │ │ ├── tl_input_media_gen.go │ │ │ ├── tl_input_media_slices_gen.go │ │ │ ├── tl_input_message_gen.go │ │ │ ├── tl_input_message_slices_gen.go │ │ │ ├── tl_input_notify_peer_gen.go │ │ │ ├── tl_input_notify_peer_slices_gen.go │ │ │ ├── tl_input_payment_credentials_gen.go │ │ │ ├── tl_input_payment_credentials_slices_gen.go │ │ │ ├── tl_input_peer_gen.go │ │ │ ├── tl_input_peer_notify_settings_gen.go │ │ │ ├── tl_input_peer_notify_settings_slices_gen.go │ │ │ ├── tl_input_peer_slices_gen.go │ │ │ ├── tl_input_phone_call_gen.go │ │ │ ├── tl_input_phone_call_slices_gen.go │ │ │ ├── tl_input_phone_contact_gen.go │ │ │ ├── tl_input_phone_contact_slices_gen.go │ │ │ ├── tl_input_photo_gen.go │ │ │ ├── tl_input_photo_slices_gen.go │ │ │ ├── tl_input_privacy_key_gen.go │ │ │ ├── tl_input_privacy_key_slices_gen.go │ │ │ ├── tl_input_privacy_rule_gen.go │ │ │ ├── tl_input_privacy_rule_slices_gen.go │ │ │ ├── tl_input_quick_reply_shortcut_gen.go │ │ │ ├── tl_input_quick_reply_shortcut_slices_gen.go │ │ │ ├── tl_input_reply_to_gen.go │ │ │ ├── tl_input_reply_to_slices_gen.go │ │ │ ├── tl_input_saved_star_gift_gen.go │ │ │ ├── tl_input_saved_star_gift_slices_gen.go │ │ │ ├── tl_input_secure_file_gen.go │ │ │ ├── tl_input_secure_file_slices_gen.go │ │ │ ├── tl_input_secure_value_gen.go │ │ │ ├── tl_input_secure_value_slices_gen.go │ │ │ ├── tl_input_single_media_gen.go │ │ │ ├── tl_input_single_media_slices_gen.go │ │ │ ├── tl_input_stars_transaction_gen.go │ │ │ ├── tl_input_stars_transaction_slices_gen.go │ │ │ ├── tl_input_sticker_set_gen.go │ │ │ ├── tl_input_sticker_set_item_gen.go │ │ │ ├── tl_input_sticker_set_item_slices_gen.go │ │ │ ├── tl_input_sticker_set_slices_gen.go │ │ │ ├── tl_input_stickered_media_gen.go │ │ │ ├── tl_input_stickered_media_slices_gen.go │ │ │ ├── tl_input_store_payment_purpose_gen.go │ │ │ ├── tl_input_store_payment_purpose_slices_gen.go │ │ │ ├── tl_input_theme_gen.go │ │ │ ├── tl_input_theme_settings_gen.go │ │ │ ├── tl_input_theme_settings_slices_gen.go │ │ │ ├── tl_input_theme_slices_gen.go │ │ │ ├── tl_input_user_gen.go │ │ │ ├── tl_input_user_slices_gen.go │ │ │ ├── tl_input_wall_paper_gen.go │ │ │ ├── tl_input_wall_paper_slices_gen.go │ │ │ ├── tl_input_web_document_gen.go │ │ │ ├── tl_input_web_document_slices_gen.go │ │ │ ├── tl_input_web_file_location_gen.go │ │ │ ├── tl_input_web_file_location_slices_gen.go │ │ │ ├── tl_int_gen.go │ │ │ ├── tl_int_slices_gen.go │ │ │ ├── tl_int_vector_gen.go │ │ │ ├── tl_int_vector_slices_gen.go │ │ │ ├── tl_invoice_gen.go │ │ │ ├── tl_invoice_slices_gen.go │ │ │ ├── tl_invoke_after_msg_gen.go │ │ │ ├── tl_invoke_after_msg_slices_gen.go │ │ │ ├── tl_invoke_after_msgs_gen.go │ │ │ ├── tl_invoke_after_msgs_slices_gen.go │ │ │ ├── tl_invoke_with_apns_secret_gen.go │ │ │ ├── tl_invoke_with_apns_secret_slices_gen.go │ │ │ ├── tl_invoke_with_business_connection_gen.go │ │ │ ├── tl_invoke_with_business_connection_slices_gen.go │ │ │ ├── tl_invoke_with_google_play_integrity_gen.go │ │ │ ├── tl_invoke_with_google_play_integrity_slices_gen.go │ │ │ ├── tl_invoke_with_layer_gen.go │ │ │ ├── tl_invoke_with_layer_slices_gen.go │ │ │ ├── tl_invoke_with_messages_range_gen.go │ │ │ ├── tl_invoke_with_messages_range_slices_gen.go │ │ │ ├── tl_invoke_with_re_captcha_gen.go │ │ │ ├── tl_invoke_with_re_captcha_slices_gen.go │ │ │ ├── tl_invoke_with_takeout_gen.go │ │ │ ├── tl_invoke_with_takeout_slices_gen.go │ │ │ ├── tl_invoke_without_updates_gen.go │ │ │ ├── tl_invoke_without_updates_slices_gen.go │ │ │ ├── tl_ip_port_gen.go │ │ │ ├── tl_ip_port_slices_gen.go │ │ │ ├── tl_json_object_value_gen.go │ │ │ ├── tl_json_object_value_slices_gen.go │ │ │ ├── tl_json_value_gen.go │ │ │ ├── tl_json_value_slices_gen.go │ │ │ ├── tl_keyboard_button_gen.go │ │ │ ├── tl_keyboard_button_row_gen.go │ │ │ ├── tl_keyboard_button_row_slices_gen.go │ │ │ ├── tl_keyboard_button_slices_gen.go │ │ │ ├── tl_labeled_price_gen.go │ │ │ ├── tl_labeled_price_slices_gen.go │ │ │ ├── tl_lang_pack_difference_gen.go │ │ │ ├── tl_lang_pack_difference_slices_gen.go │ │ │ ├── tl_lang_pack_language_gen.go │ │ │ ├── tl_lang_pack_language_slices_gen.go │ │ │ ├── tl_lang_pack_language_vector_gen.go │ │ │ ├── tl_lang_pack_language_vector_slices_gen.go │ │ │ ├── tl_lang_pack_string_class_vector_gen.go │ │ │ ├── tl_lang_pack_string_class_vector_slices_gen.go │ │ │ ├── tl_lang_pack_string_gen.go │ │ │ ├── tl_lang_pack_string_slices_gen.go │ │ │ ├── tl_langpack_get_difference_gen.go │ │ │ ├── tl_langpack_get_difference_slices_gen.go │ │ │ ├── tl_langpack_get_lang_pack_gen.go │ │ │ ├── tl_langpack_get_lang_pack_slices_gen.go │ │ │ ├── tl_langpack_get_language_gen.go │ │ │ ├── tl_langpack_get_language_slices_gen.go │ │ │ ├── tl_langpack_get_languages_gen.go │ │ │ ├── tl_langpack_get_languages_slices_gen.go │ │ │ ├── tl_langpack_get_strings_gen.go │ │ │ ├── tl_langpack_get_strings_slices_gen.go │ │ │ ├── tl_long_gen.go │ │ │ ├── tl_long_slices_gen.go │ │ │ ├── tl_long_vector_gen.go │ │ │ ├── tl_long_vector_slices_gen.go │ │ │ ├── tl_mask_coords_gen.go │ │ │ ├── tl_mask_coords_slices_gen.go │ │ │ ├── tl_media_area_coordinates_gen.go │ │ │ ├── tl_media_area_coordinates_slices_gen.go │ │ │ ├── tl_media_area_gen.go │ │ │ ├── tl_media_area_slices_gen.go │ │ │ ├── tl_message_action_gen.go │ │ │ ├── tl_message_action_slices_gen.go │ │ │ ├── tl_message_entity_gen.go │ │ │ ├── tl_message_entity_slices_gen.go │ │ │ ├── tl_message_extended_media_gen.go │ │ │ ├── tl_message_extended_media_slices_gen.go │ │ │ ├── tl_message_fwd_header_gen.go │ │ │ ├── tl_message_fwd_header_slices_gen.go │ │ │ ├── tl_message_gen.go │ │ │ ├── tl_message_media_gen.go │ │ │ ├── tl_message_media_slices_gen.go │ │ │ ├── tl_message_peer_reaction_gen.go │ │ │ ├── tl_message_peer_reaction_slices_gen.go │ │ │ ├── tl_message_peer_vote_gen.go │ │ │ ├── tl_message_peer_vote_slices_gen.go │ │ │ ├── tl_message_range_gen.go │ │ │ ├── tl_message_range_slices_gen.go │ │ │ ├── tl_message_range_vector_gen.go │ │ │ ├── tl_message_range_vector_slices_gen.go │ │ │ ├── tl_message_reactions_gen.go │ │ │ ├── tl_message_reactions_slices_gen.go │ │ │ ├── tl_message_reactor_gen.go │ │ │ ├── tl_message_reactor_slices_gen.go │ │ │ ├── tl_message_replies_gen.go │ │ │ ├── tl_message_replies_slices_gen.go │ │ │ ├── tl_message_reply_header_gen.go │ │ │ ├── tl_message_reply_header_slices_gen.go │ │ │ ├── tl_message_report_option_gen.go │ │ │ ├── tl_message_report_option_slices_gen.go │ │ │ ├── tl_message_slices_gen.go │ │ │ ├── tl_message_views_gen.go │ │ │ ├── tl_message_views_slices_gen.go │ │ │ ├── tl_messages_accept_encryption_gen.go │ │ │ ├── tl_messages_accept_encryption_slices_gen.go │ │ │ ├── tl_messages_accept_url_auth_gen.go │ │ │ ├── tl_messages_accept_url_auth_slices_gen.go │ │ │ ├── tl_messages_add_chat_user_gen.go │ │ │ ├── tl_messages_add_chat_user_slices_gen.go │ │ │ ├── tl_messages_affected_found_messages_gen.go │ │ │ ├── tl_messages_affected_found_messages_slices_gen.go │ │ │ ├── tl_messages_affected_history_gen.go │ │ │ ├── tl_messages_affected_history_slices_gen.go │ │ │ ├── tl_messages_affected_messages_gen.go │ │ │ ├── tl_messages_affected_messages_slices_gen.go │ │ │ ├── tl_messages_all_stickers_gen.go │ │ │ ├── tl_messages_all_stickers_slices_gen.go │ │ │ ├── tl_messages_append_todo_list_gen.go │ │ │ ├── tl_messages_append_todo_list_slices_gen.go │ │ │ ├── tl_messages_archived_stickers_gen.go │ │ │ ├── tl_messages_archived_stickers_slices_gen.go │ │ │ ├── tl_messages_available_effects_gen.go │ │ │ ├── tl_messages_available_effects_slices_gen.go │ │ │ ├── tl_messages_available_reactions_gen.go │ │ │ ├── tl_messages_available_reactions_slices_gen.go │ │ │ ├── tl_messages_bot_app_gen.go │ │ │ ├── tl_messages_bot_app_slices_gen.go │ │ │ ├── tl_messages_bot_callback_answer_gen.go │ │ │ ├── tl_messages_bot_callback_answer_slices_gen.go │ │ │ ├── tl_messages_bot_prepared_inline_message_gen.go │ │ │ ├── tl_messages_bot_prepared_inline_message_slices_gen.go │ │ │ ├── tl_messages_bot_results_gen.go │ │ │ ├── tl_messages_bot_results_slices_gen.go │ │ │ ├── tl_messages_chat_admins_with_invites_gen.go │ │ │ ├── tl_messages_chat_admins_with_invites_slices_gen.go │ │ │ ├── tl_messages_chat_full_gen.go │ │ │ ├── tl_messages_chat_full_slices_gen.go │ │ │ ├── tl_messages_chat_invite_importers_gen.go │ │ │ ├── tl_messages_chat_invite_importers_slices_gen.go │ │ │ ├── tl_messages_chats_gen.go │ │ │ ├── tl_messages_chats_slices_gen.go │ │ │ ├── tl_messages_check_chat_invite_gen.go │ │ │ ├── tl_messages_check_chat_invite_slices_gen.go │ │ │ ├── tl_messages_check_history_import_gen.go │ │ │ ├── tl_messages_check_history_import_peer_gen.go │ │ │ ├── tl_messages_check_history_import_peer_slices_gen.go │ │ │ ├── tl_messages_check_history_import_slices_gen.go │ │ │ ├── tl_messages_check_quick_reply_shortcut_gen.go │ │ │ ├── tl_messages_check_quick_reply_shortcut_slices_gen.go │ │ │ ├── tl_messages_checked_history_import_peer_gen.go │ │ │ ├── tl_messages_checked_history_import_peer_slices_gen.go │ │ │ ├── tl_messages_clear_all_drafts_gen.go │ │ │ ├── tl_messages_clear_all_drafts_slices_gen.go │ │ │ ├── tl_messages_clear_recent_reactions_gen.go │ │ │ ├── tl_messages_clear_recent_reactions_slices_gen.go │ │ │ ├── tl_messages_clear_recent_stickers_gen.go │ │ │ ├── tl_messages_clear_recent_stickers_slices_gen.go │ │ │ ├── tl_messages_click_sponsored_message_gen.go │ │ │ ├── tl_messages_click_sponsored_message_slices_gen.go │ │ │ ├── tl_messages_create_chat_gen.go │ │ │ ├── tl_messages_create_chat_slices_gen.go │ │ │ ├── tl_messages_create_forum_topic_gen.go │ │ │ ├── tl_messages_create_forum_topic_slices_gen.go │ │ │ ├── tl_messages_delete_chat_gen.go │ │ │ ├── tl_messages_delete_chat_slices_gen.go │ │ │ ├── tl_messages_delete_chat_user_gen.go │ │ │ ├── tl_messages_delete_chat_user_slices_gen.go │ │ │ ├── tl_messages_delete_exported_chat_invite_gen.go │ │ │ ├── tl_messages_delete_exported_chat_invite_slices_gen.go │ │ │ ├── tl_messages_delete_fact_check_gen.go │ │ │ ├── tl_messages_delete_fact_check_slices_gen.go │ │ │ ├── tl_messages_delete_history_gen.go │ │ │ ├── tl_messages_delete_history_slices_gen.go │ │ │ ├── tl_messages_delete_messages_gen.go │ │ │ ├── tl_messages_delete_messages_slices_gen.go │ │ │ ├── tl_messages_delete_phone_call_history_gen.go │ │ │ ├── tl_messages_delete_phone_call_history_slices_gen.go │ │ │ ├── tl_messages_delete_quick_reply_messages_gen.go │ │ │ ├── tl_messages_delete_quick_reply_messages_slices_gen.go │ │ │ ├── tl_messages_delete_quick_reply_shortcut_gen.go │ │ │ ├── tl_messages_delete_quick_reply_shortcut_slices_gen.go │ │ │ ├── tl_messages_delete_revoked_exported_chat_invites_gen.go │ │ │ ├── tl_messages_delete_revoked_exported_chat_invites_slices_gen.go │ │ │ ├── tl_messages_delete_saved_history_gen.go │ │ │ ├── tl_messages_delete_saved_history_slices_gen.go │ │ │ ├── tl_messages_delete_scheduled_messages_gen.go │ │ │ ├── tl_messages_delete_scheduled_messages_slices_gen.go │ │ │ ├── tl_messages_delete_topic_history_gen.go │ │ │ ├── tl_messages_delete_topic_history_slices_gen.go │ │ │ ├── tl_messages_dh_config_gen.go │ │ │ ├── tl_messages_dh_config_slices_gen.go │ │ │ ├── tl_messages_dialog_filters_gen.go │ │ │ ├── tl_messages_dialog_filters_slices_gen.go │ │ │ ├── tl_messages_dialogs_gen.go │ │ │ ├── tl_messages_dialogs_slices_gen.go │ │ │ ├── tl_messages_discard_encryption_gen.go │ │ │ ├── tl_messages_discard_encryption_slices_gen.go │ │ │ ├── tl_messages_discussion_message_gen.go │ │ │ ├── tl_messages_discussion_message_slices_gen.go │ │ │ ├── tl_messages_edit_chat_about_gen.go │ │ │ ├── tl_messages_edit_chat_about_slices_gen.go │ │ │ ├── tl_messages_edit_chat_admin_gen.go │ │ │ ├── tl_messages_edit_chat_admin_slices_gen.go │ │ │ ├── tl_messages_edit_chat_default_banned_rights_gen.go │ │ │ ├── tl_messages_edit_chat_default_banned_rights_slices_gen.go │ │ │ ├── tl_messages_edit_chat_photo_gen.go │ │ │ ├── tl_messages_edit_chat_photo_slices_gen.go │ │ │ ├── tl_messages_edit_chat_title_gen.go │ │ │ ├── tl_messages_edit_chat_title_slices_gen.go │ │ │ ├── tl_messages_edit_exported_chat_invite_gen.go │ │ │ ├── tl_messages_edit_exported_chat_invite_slices_gen.go │ │ │ ├── tl_messages_edit_fact_check_gen.go │ │ │ ├── tl_messages_edit_fact_check_slices_gen.go │ │ │ ├── tl_messages_edit_forum_topic_gen.go │ │ │ ├── tl_messages_edit_forum_topic_slices_gen.go │ │ │ ├── tl_messages_edit_inline_bot_message_gen.go │ │ │ ├── tl_messages_edit_inline_bot_message_slices_gen.go │ │ │ ├── tl_messages_edit_message_gen.go │ │ │ ├── tl_messages_edit_message_slices_gen.go │ │ │ ├── tl_messages_edit_quick_reply_shortcut_gen.go │ │ │ ├── tl_messages_edit_quick_reply_shortcut_slices_gen.go │ │ │ ├── tl_messages_emoji_groups_gen.go │ │ │ ├── tl_messages_emoji_groups_slices_gen.go │ │ │ ├── tl_messages_export_chat_invite_gen.go │ │ │ ├── tl_messages_export_chat_invite_slices_gen.go │ │ │ ├── tl_messages_exported_chat_invite_gen.go │ │ │ ├── tl_messages_exported_chat_invite_slices_gen.go │ │ │ ├── tl_messages_exported_chat_invites_gen.go │ │ │ ├── tl_messages_exported_chat_invites_slices_gen.go │ │ │ ├── tl_messages_fave_sticker_gen.go │ │ │ ├── tl_messages_fave_sticker_slices_gen.go │ │ │ ├── tl_messages_faved_stickers_gen.go │ │ │ ├── tl_messages_faved_stickers_slices_gen.go │ │ │ ├── tl_messages_featured_stickers_gen.go │ │ │ ├── tl_messages_featured_stickers_slices_gen.go │ │ │ ├── tl_messages_filter_gen.go │ │ │ ├── tl_messages_filter_slices_gen.go │ │ │ ├── tl_messages_forum_topics_gen.go │ │ │ ├── tl_messages_forum_topics_slices_gen.go │ │ │ ├── tl_messages_forward_messages_gen.go │ │ │ ├── tl_messages_forward_messages_slices_gen.go │ │ │ ├── tl_messages_found_sticker_sets_gen.go │ │ │ ├── tl_messages_found_sticker_sets_slices_gen.go │ │ │ ├── tl_messages_found_stickers_gen.go │ │ │ ├── tl_messages_found_stickers_slices_gen.go │ │ │ ├── tl_messages_get_admins_with_invites_gen.go │ │ │ ├── tl_messages_get_admins_with_invites_slices_gen.go │ │ │ ├── tl_messages_get_all_drafts_gen.go │ │ │ ├── tl_messages_get_all_drafts_slices_gen.go │ │ │ ├── tl_messages_get_all_stickers_gen.go │ │ │ ├── tl_messages_get_all_stickers_slices_gen.go │ │ │ ├── tl_messages_get_archived_stickers_gen.go │ │ │ ├── tl_messages_get_archived_stickers_slices_gen.go │ │ │ ├── tl_messages_get_attach_menu_bot_gen.go │ │ │ ├── tl_messages_get_attach_menu_bot_slices_gen.go │ │ │ ├── tl_messages_get_attach_menu_bots_gen.go │ │ │ ├── tl_messages_get_attach_menu_bots_slices_gen.go │ │ │ ├── tl_messages_get_attached_stickers_gen.go │ │ │ ├── tl_messages_get_attached_stickers_slices_gen.go │ │ │ ├── tl_messages_get_available_effects_gen.go │ │ │ ├── tl_messages_get_available_effects_slices_gen.go │ │ │ ├── tl_messages_get_available_reactions_gen.go │ │ │ ├── tl_messages_get_available_reactions_slices_gen.go │ │ │ ├── tl_messages_get_bot_app_gen.go │ │ │ ├── tl_messages_get_bot_app_slices_gen.go │ │ │ ├── tl_messages_get_bot_callback_answer_gen.go │ │ │ ├── tl_messages_get_bot_callback_answer_slices_gen.go │ │ │ ├── tl_messages_get_chat_invite_importers_gen.go │ │ │ ├── tl_messages_get_chat_invite_importers_slices_gen.go │ │ │ ├── tl_messages_get_chats_gen.go │ │ │ ├── tl_messages_get_chats_slices_gen.go │ │ │ ├── tl_messages_get_common_chats_gen.go │ │ │ ├── tl_messages_get_common_chats_slices_gen.go │ │ │ ├── tl_messages_get_custom_emoji_documents_gen.go │ │ │ ├── tl_messages_get_custom_emoji_documents_slices_gen.go │ │ │ ├── tl_messages_get_default_history_ttl_gen.go │ │ │ ├── tl_messages_get_default_history_ttl_slices_gen.go │ │ │ ├── tl_messages_get_default_tag_reactions_gen.go │ │ │ ├── tl_messages_get_default_tag_reactions_slices_gen.go │ │ │ ├── tl_messages_get_dh_config_gen.go │ │ │ ├── tl_messages_get_dh_config_slices_gen.go │ │ │ ├── tl_messages_get_dialog_filters_gen.go │ │ │ ├── tl_messages_get_dialog_filters_slices_gen.go │ │ │ ├── tl_messages_get_dialog_unread_marks_gen.go │ │ │ ├── tl_messages_get_dialog_unread_marks_slices_gen.go │ │ │ ├── tl_messages_get_dialogs_gen.go │ │ │ ├── tl_messages_get_dialogs_slices_gen.go │ │ │ ├── tl_messages_get_discussion_message_gen.go │ │ │ ├── tl_messages_get_discussion_message_slices_gen.go │ │ │ ├── tl_messages_get_document_by_hash_gen.go │ │ │ ├── tl_messages_get_document_by_hash_slices_gen.go │ │ │ ├── tl_messages_get_emoji_groups_gen.go │ │ │ ├── tl_messages_get_emoji_groups_slices_gen.go │ │ │ ├── tl_messages_get_emoji_keywords_difference_gen.go │ │ │ ├── tl_messages_get_emoji_keywords_difference_slices_gen.go │ │ │ ├── tl_messages_get_emoji_keywords_gen.go │ │ │ ├── tl_messages_get_emoji_keywords_languages_gen.go │ │ │ ├── tl_messages_get_emoji_keywords_languages_slices_gen.go │ │ │ ├── tl_messages_get_emoji_keywords_slices_gen.go │ │ │ ├── tl_messages_get_emoji_profile_photo_groups_gen.go │ │ │ ├── tl_messages_get_emoji_profile_photo_groups_slices_gen.go │ │ │ ├── tl_messages_get_emoji_status_groups_gen.go │ │ │ ├── tl_messages_get_emoji_status_groups_slices_gen.go │ │ │ ├── tl_messages_get_emoji_sticker_groups_gen.go │ │ │ ├── tl_messages_get_emoji_sticker_groups_slices_gen.go │ │ │ ├── tl_messages_get_emoji_stickers_gen.go │ │ │ ├── tl_messages_get_emoji_stickers_slices_gen.go │ │ │ ├── tl_messages_get_emoji_url_gen.go │ │ │ ├── tl_messages_get_emoji_url_slices_gen.go │ │ │ ├── tl_messages_get_exported_chat_invite_gen.go │ │ │ ├── tl_messages_get_exported_chat_invite_slices_gen.go │ │ │ ├── tl_messages_get_exported_chat_invites_gen.go │ │ │ ├── tl_messages_get_exported_chat_invites_slices_gen.go │ │ │ ├── tl_messages_get_extended_media_gen.go │ │ │ ├── tl_messages_get_extended_media_slices_gen.go │ │ │ ├── tl_messages_get_fact_check_gen.go │ │ │ ├── tl_messages_get_fact_check_slices_gen.go │ │ │ ├── tl_messages_get_faved_stickers_gen.go │ │ │ ├── tl_messages_get_faved_stickers_slices_gen.go │ │ │ ├── tl_messages_get_featured_emoji_stickers_gen.go │ │ │ ├── tl_messages_get_featured_emoji_stickers_slices_gen.go │ │ │ ├── tl_messages_get_featured_stickers_gen.go │ │ │ ├── tl_messages_get_featured_stickers_slices_gen.go │ │ │ ├── tl_messages_get_forum_topics_by_id_gen.go │ │ │ ├── tl_messages_get_forum_topics_by_id_slices_gen.go │ │ │ ├── tl_messages_get_forum_topics_gen.go │ │ │ ├── tl_messages_get_forum_topics_slices_gen.go │ │ │ ├── tl_messages_get_full_chat_gen.go │ │ │ ├── tl_messages_get_full_chat_slices_gen.go │ │ │ ├── tl_messages_get_game_high_scores_gen.go │ │ │ ├── tl_messages_get_game_high_scores_slices_gen.go │ │ │ ├── tl_messages_get_history_gen.go │ │ │ ├── tl_messages_get_history_slices_gen.go │ │ │ ├── tl_messages_get_inline_bot_results_gen.go │ │ │ ├── tl_messages_get_inline_bot_results_slices_gen.go │ │ │ ├── tl_messages_get_inline_game_high_scores_gen.go │ │ │ ├── tl_messages_get_inline_game_high_scores_slices_gen.go │ │ │ ├── tl_messages_get_mask_stickers_gen.go │ │ │ ├── tl_messages_get_mask_stickers_slices_gen.go │ │ │ ├── tl_messages_get_message_edit_data_gen.go │ │ │ ├── tl_messages_get_message_edit_data_slices_gen.go │ │ │ ├── tl_messages_get_message_reactions_list_gen.go │ │ │ ├── tl_messages_get_message_reactions_list_slices_gen.go │ │ │ ├── tl_messages_get_message_read_participants_gen.go │ │ │ ├── tl_messages_get_message_read_participants_slices_gen.go │ │ │ ├── tl_messages_get_messages_gen.go │ │ │ ├── tl_messages_get_messages_reactions_gen.go │ │ │ ├── tl_messages_get_messages_reactions_slices_gen.go │ │ │ ├── tl_messages_get_messages_slices_gen.go │ │ │ ├── tl_messages_get_messages_views_gen.go │ │ │ ├── tl_messages_get_messages_views_slices_gen.go │ │ │ ├── tl_messages_get_my_stickers_gen.go │ │ │ ├── tl_messages_get_my_stickers_slices_gen.go │ │ │ ├── tl_messages_get_old_featured_stickers_gen.go │ │ │ ├── tl_messages_get_old_featured_stickers_slices_gen.go │ │ │ ├── tl_messages_get_onlines_gen.go │ │ │ ├── tl_messages_get_onlines_slices_gen.go │ │ │ ├── tl_messages_get_outbox_read_date_gen.go │ │ │ ├── tl_messages_get_outbox_read_date_slices_gen.go │ │ │ ├── tl_messages_get_paid_reaction_privacy_gen.go │ │ │ ├── tl_messages_get_paid_reaction_privacy_slices_gen.go │ │ │ ├── tl_messages_get_peer_dialogs_gen.go │ │ │ ├── tl_messages_get_peer_dialogs_slices_gen.go │ │ │ ├── tl_messages_get_peer_settings_gen.go │ │ │ ├── tl_messages_get_peer_settings_slices_gen.go │ │ │ ├── tl_messages_get_pinned_dialogs_gen.go │ │ │ ├── tl_messages_get_pinned_dialogs_slices_gen.go │ │ │ ├── tl_messages_get_pinned_saved_dialogs_gen.go │ │ │ ├── tl_messages_get_pinned_saved_dialogs_slices_gen.go │ │ │ ├── tl_messages_get_poll_results_gen.go │ │ │ ├── tl_messages_get_poll_results_slices_gen.go │ │ │ ├── tl_messages_get_poll_votes_gen.go │ │ │ ├── tl_messages_get_poll_votes_slices_gen.go │ │ │ ├── tl_messages_get_prepared_inline_message_gen.go │ │ │ ├── tl_messages_get_prepared_inline_message_slices_gen.go │ │ │ ├── tl_messages_get_quick_replies_gen.go │ │ │ ├── tl_messages_get_quick_replies_slices_gen.go │ │ │ ├── tl_messages_get_quick_reply_messages_gen.go │ │ │ ├── tl_messages_get_quick_reply_messages_slices_gen.go │ │ │ ├── tl_messages_get_recent_locations_gen.go │ │ │ ├── tl_messages_get_recent_locations_slices_gen.go │ │ │ ├── tl_messages_get_recent_reactions_gen.go │ │ │ ├── tl_messages_get_recent_reactions_slices_gen.go │ │ │ ├── tl_messages_get_recent_stickers_gen.go │ │ │ ├── tl_messages_get_recent_stickers_slices_gen.go │ │ │ ├── tl_messages_get_replies_gen.go │ │ │ ├── tl_messages_get_replies_slices_gen.go │ │ │ ├── tl_messages_get_saved_dialogs_by_id_gen.go │ │ │ ├── tl_messages_get_saved_dialogs_by_id_slices_gen.go │ │ │ ├── tl_messages_get_saved_dialogs_gen.go │ │ │ ├── tl_messages_get_saved_dialogs_slices_gen.go │ │ │ ├── tl_messages_get_saved_gifs_gen.go │ │ │ ├── tl_messages_get_saved_gifs_slices_gen.go │ │ │ ├── tl_messages_get_saved_history_gen.go │ │ │ ├── tl_messages_get_saved_history_slices_gen.go │ │ │ ├── tl_messages_get_saved_reaction_tags_gen.go │ │ │ ├── tl_messages_get_saved_reaction_tags_slices_gen.go │ │ │ ├── tl_messages_get_scheduled_history_gen.go │ │ │ ├── tl_messages_get_scheduled_history_slices_gen.go │ │ │ ├── tl_messages_get_scheduled_messages_gen.go │ │ │ ├── tl_messages_get_scheduled_messages_slices_gen.go │ │ │ ├── tl_messages_get_search_counters_gen.go │ │ │ ├── tl_messages_get_search_counters_slices_gen.go │ │ │ ├── tl_messages_get_search_results_calendar_gen.go │ │ │ ├── tl_messages_get_search_results_calendar_slices_gen.go │ │ │ ├── tl_messages_get_search_results_positions_gen.go │ │ │ ├── tl_messages_get_search_results_positions_slices_gen.go │ │ │ ├── tl_messages_get_split_ranges_gen.go │ │ │ ├── tl_messages_get_split_ranges_slices_gen.go │ │ │ ├── tl_messages_get_sponsored_messages_gen.go │ │ │ ├── tl_messages_get_sponsored_messages_slices_gen.go │ │ │ ├── tl_messages_get_sticker_set_gen.go │ │ │ ├── tl_messages_get_sticker_set_slices_gen.go │ │ │ ├── tl_messages_get_stickers_gen.go │ │ │ ├── tl_messages_get_stickers_slices_gen.go │ │ │ ├── tl_messages_get_suggested_dialog_filters_gen.go │ │ │ ├── tl_messages_get_suggested_dialog_filters_slices_gen.go │ │ │ ├── tl_messages_get_top_reactions_gen.go │ │ │ ├── tl_messages_get_top_reactions_slices_gen.go │ │ │ ├── tl_messages_get_unread_mentions_gen.go │ │ │ ├── tl_messages_get_unread_mentions_slices_gen.go │ │ │ ├── tl_messages_get_unread_reactions_gen.go │ │ │ ├── tl_messages_get_unread_reactions_slices_gen.go │ │ │ ├── tl_messages_get_web_page_gen.go │ │ │ ├── tl_messages_get_web_page_preview_gen.go │ │ │ ├── tl_messages_get_web_page_preview_slices_gen.go │ │ │ ├── tl_messages_get_web_page_slices_gen.go │ │ │ ├── tl_messages_hide_all_chat_join_requests_gen.go │ │ │ ├── tl_messages_hide_all_chat_join_requests_slices_gen.go │ │ │ ├── tl_messages_hide_chat_join_request_gen.go │ │ │ ├── tl_messages_hide_chat_join_request_slices_gen.go │ │ │ ├── tl_messages_hide_peer_settings_bar_gen.go │ │ │ ├── tl_messages_hide_peer_settings_bar_slices_gen.go │ │ │ ├── tl_messages_high_scores_gen.go │ │ │ ├── tl_messages_high_scores_slices_gen.go │ │ │ ├── tl_messages_history_import_gen.go │ │ │ ├── tl_messages_history_import_parsed_gen.go │ │ │ ├── tl_messages_history_import_parsed_slices_gen.go │ │ │ ├── tl_messages_history_import_slices_gen.go │ │ │ ├── tl_messages_import_chat_invite_gen.go │ │ │ ├── tl_messages_import_chat_invite_slices_gen.go │ │ │ ├── tl_messages_inactive_chats_gen.go │ │ │ ├── tl_messages_inactive_chats_slices_gen.go │ │ │ ├── tl_messages_init_history_import_gen.go │ │ │ ├── tl_messages_init_history_import_slices_gen.go │ │ │ ├── tl_messages_install_sticker_set_gen.go │ │ │ ├── tl_messages_install_sticker_set_slices_gen.go │ │ │ ├── tl_messages_invited_users_gen.go │ │ │ ├── tl_messages_invited_users_slices_gen.go │ │ │ ├── tl_messages_mark_dialog_unread_gen.go │ │ │ ├── tl_messages_mark_dialog_unread_slices_gen.go │ │ │ ├── tl_messages_message_edit_data_gen.go │ │ │ ├── tl_messages_message_edit_data_slices_gen.go │ │ │ ├── tl_messages_message_reactions_list_gen.go │ │ │ ├── tl_messages_message_reactions_list_slices_gen.go │ │ │ ├── tl_messages_message_views_gen.go │ │ │ ├── tl_messages_message_views_slices_gen.go │ │ │ ├── tl_messages_messages_gen.go │ │ │ ├── tl_messages_messages_slices_gen.go │ │ │ ├── tl_messages_migrate_chat_gen.go │ │ │ ├── tl_messages_migrate_chat_slices_gen.go │ │ │ ├── tl_messages_my_stickers_gen.go │ │ │ ├── tl_messages_my_stickers_slices_gen.go │ │ │ ├── tl_messages_peer_dialogs_gen.go │ │ │ ├── tl_messages_peer_dialogs_slices_gen.go │ │ │ ├── tl_messages_peer_settings_gen.go │ │ │ ├── tl_messages_peer_settings_slices_gen.go │ │ │ ├── tl_messages_prepared_inline_message_gen.go │ │ │ ├── tl_messages_prepared_inline_message_slices_gen.go │ │ │ ├── tl_messages_prolong_web_view_gen.go │ │ │ ├── tl_messages_prolong_web_view_slices_gen.go │ │ │ ├── tl_messages_quick_replies_gen.go │ │ │ ├── tl_messages_quick_replies_slices_gen.go │ │ │ ├── tl_messages_rate_transcribed_audio_gen.go │ │ │ ├── tl_messages_rate_transcribed_audio_slices_gen.go │ │ │ ├── tl_messages_reactions_gen.go │ │ │ ├── tl_messages_reactions_slices_gen.go │ │ │ ├── tl_messages_read_discussion_gen.go │ │ │ ├── tl_messages_read_discussion_slices_gen.go │ │ │ ├── tl_messages_read_encrypted_history_gen.go │ │ │ ├── tl_messages_read_encrypted_history_slices_gen.go │ │ │ ├── tl_messages_read_featured_stickers_gen.go │ │ │ ├── tl_messages_read_featured_stickers_slices_gen.go │ │ │ ├── tl_messages_read_history_gen.go │ │ │ ├── tl_messages_read_history_slices_gen.go │ │ │ ├── tl_messages_read_mentions_gen.go │ │ │ ├── tl_messages_read_mentions_slices_gen.go │ │ │ ├── tl_messages_read_message_contents_gen.go │ │ │ ├── tl_messages_read_message_contents_slices_gen.go │ │ │ ├── tl_messages_read_reactions_gen.go │ │ │ ├── tl_messages_read_reactions_slices_gen.go │ │ │ ├── tl_messages_read_saved_history_gen.go │ │ │ ├── tl_messages_read_saved_history_slices_gen.go │ │ │ ├── tl_messages_received_messages_gen.go │ │ │ ├── tl_messages_received_messages_slices_gen.go │ │ │ ├── tl_messages_received_queue_gen.go │ │ │ ├── tl_messages_received_queue_slices_gen.go │ │ │ ├── tl_messages_recent_stickers_gen.go │ │ │ ├── tl_messages_recent_stickers_slices_gen.go │ │ │ ├── tl_messages_reorder_pinned_dialogs_gen.go │ │ │ ├── tl_messages_reorder_pinned_dialogs_slices_gen.go │ │ │ ├── tl_messages_reorder_pinned_forum_topics_gen.go │ │ │ ├── tl_messages_reorder_pinned_forum_topics_slices_gen.go │ │ │ ├── tl_messages_reorder_pinned_saved_dialogs_gen.go │ │ │ ├── tl_messages_reorder_pinned_saved_dialogs_slices_gen.go │ │ │ ├── tl_messages_reorder_quick_replies_gen.go │ │ │ ├── tl_messages_reorder_quick_replies_slices_gen.go │ │ │ ├── tl_messages_reorder_sticker_sets_gen.go │ │ │ ├── tl_messages_reorder_sticker_sets_slices_gen.go │ │ │ ├── tl_messages_report_encrypted_spam_gen.go │ │ │ ├── tl_messages_report_encrypted_spam_slices_gen.go │ │ │ ├── tl_messages_report_gen.go │ │ │ ├── tl_messages_report_messages_delivery_gen.go │ │ │ ├── tl_messages_report_messages_delivery_slices_gen.go │ │ │ ├── tl_messages_report_reaction_gen.go │ │ │ ├── tl_messages_report_reaction_slices_gen.go │ │ │ ├── tl_messages_report_slices_gen.go │ │ │ ├── tl_messages_report_spam_gen.go │ │ │ ├── tl_messages_report_spam_slices_gen.go │ │ │ ├── tl_messages_report_sponsored_message_gen.go │ │ │ ├── tl_messages_report_sponsored_message_slices_gen.go │ │ │ ├── tl_messages_request_app_web_view_gen.go │ │ │ ├── tl_messages_request_app_web_view_slices_gen.go │ │ │ ├── tl_messages_request_encryption_gen.go │ │ │ ├── tl_messages_request_encryption_slices_gen.go │ │ │ ├── tl_messages_request_main_web_view_gen.go │ │ │ ├── tl_messages_request_main_web_view_slices_gen.go │ │ │ ├── tl_messages_request_simple_web_view_gen.go │ │ │ ├── tl_messages_request_simple_web_view_slices_gen.go │ │ │ ├── tl_messages_request_url_auth_gen.go │ │ │ ├── tl_messages_request_url_auth_slices_gen.go │ │ │ ├── tl_messages_request_web_view_gen.go │ │ │ ├── tl_messages_request_web_view_slices_gen.go │ │ │ ├── tl_messages_save_default_send_as_gen.go │ │ │ ├── tl_messages_save_default_send_as_slices_gen.go │ │ │ ├── tl_messages_save_draft_gen.go │ │ │ ├── tl_messages_save_draft_slices_gen.go │ │ │ ├── tl_messages_save_gif_gen.go │ │ │ ├── tl_messages_save_gif_slices_gen.go │ │ │ ├── tl_messages_save_prepared_inline_message_gen.go │ │ │ ├── tl_messages_save_prepared_inline_message_slices_gen.go │ │ │ ├── tl_messages_save_recent_sticker_gen.go │ │ │ ├── tl_messages_save_recent_sticker_slices_gen.go │ │ │ ├── tl_messages_saved_dialogs_gen.go │ │ │ ├── tl_messages_saved_dialogs_slices_gen.go │ │ │ ├── tl_messages_saved_gifs_gen.go │ │ │ ├── tl_messages_saved_gifs_slices_gen.go │ │ │ ├── tl_messages_saved_reaction_tags_gen.go │ │ │ ├── tl_messages_saved_reaction_tags_slices_gen.go │ │ │ ├── tl_messages_search_counter_gen.go │ │ │ ├── tl_messages_search_counter_slices_gen.go │ │ │ ├── tl_messages_search_counter_vector_gen.go │ │ │ ├── tl_messages_search_counter_vector_slices_gen.go │ │ │ ├── tl_messages_search_custom_emoji_gen.go │ │ │ ├── tl_messages_search_custom_emoji_slices_gen.go │ │ │ ├── tl_messages_search_emoji_sticker_sets_gen.go │ │ │ ├── tl_messages_search_emoji_sticker_sets_slices_gen.go │ │ │ ├── tl_messages_search_gen.go │ │ │ ├── tl_messages_search_global_gen.go │ │ │ ├── tl_messages_search_global_slices_gen.go │ │ │ ├── tl_messages_search_results_calendar_gen.go │ │ │ ├── tl_messages_search_results_calendar_slices_gen.go │ │ │ ├── tl_messages_search_results_positions_gen.go │ │ │ ├── tl_messages_search_results_positions_slices_gen.go │ │ │ ├── tl_messages_search_sent_media_gen.go │ │ │ ├── tl_messages_search_sent_media_slices_gen.go │ │ │ ├── tl_messages_search_slices_gen.go │ │ │ ├── tl_messages_search_sticker_sets_gen.go │ │ │ ├── tl_messages_search_sticker_sets_slices_gen.go │ │ │ ├── tl_messages_search_stickers_gen.go │ │ │ ├── tl_messages_search_stickers_slices_gen.go │ │ │ ├── tl_messages_send_bot_requested_peer_gen.go │ │ │ ├── tl_messages_send_bot_requested_peer_slices_gen.go │ │ │ ├── tl_messages_send_encrypted_file_gen.go │ │ │ ├── tl_messages_send_encrypted_file_slices_gen.go │ │ │ ├── tl_messages_send_encrypted_gen.go │ │ │ ├── tl_messages_send_encrypted_service_gen.go │ │ │ ├── tl_messages_send_encrypted_service_slices_gen.go │ │ │ ├── tl_messages_send_encrypted_slices_gen.go │ │ │ ├── tl_messages_send_inline_bot_result_gen.go │ │ │ ├── tl_messages_send_inline_bot_result_slices_gen.go │ │ │ ├── tl_messages_send_media_gen.go │ │ │ ├── tl_messages_send_media_slices_gen.go │ │ │ ├── tl_messages_send_message_gen.go │ │ │ ├── tl_messages_send_message_slices_gen.go │ │ │ ├── tl_messages_send_multi_media_gen.go │ │ │ ├── tl_messages_send_multi_media_slices_gen.go │ │ │ ├── tl_messages_send_paid_reaction_gen.go │ │ │ ├── tl_messages_send_paid_reaction_slices_gen.go │ │ │ ├── tl_messages_send_quick_reply_messages_gen.go │ │ │ ├── tl_messages_send_quick_reply_messages_slices_gen.go │ │ │ ├── tl_messages_send_reaction_gen.go │ │ │ ├── tl_messages_send_reaction_slices_gen.go │ │ │ ├── tl_messages_send_scheduled_messages_gen.go │ │ │ ├── tl_messages_send_scheduled_messages_slices_gen.go │ │ │ ├── tl_messages_send_screenshot_notification_gen.go │ │ │ ├── tl_messages_send_screenshot_notification_slices_gen.go │ │ │ ├── tl_messages_send_vote_gen.go │ │ │ ├── tl_messages_send_vote_slices_gen.go │ │ │ ├── tl_messages_send_web_view_data_gen.go │ │ │ ├── tl_messages_send_web_view_data_slices_gen.go │ │ │ ├── tl_messages_send_web_view_result_message_gen.go │ │ │ ├── tl_messages_send_web_view_result_message_slices_gen.go │ │ │ ├── tl_messages_sent_encrypted_message_gen.go │ │ │ ├── tl_messages_sent_encrypted_message_slices_gen.go │ │ │ ├── tl_messages_set_bot_callback_answer_gen.go │ │ │ ├── tl_messages_set_bot_callback_answer_slices_gen.go │ │ │ ├── tl_messages_set_bot_precheckout_results_gen.go │ │ │ ├── tl_messages_set_bot_precheckout_results_slices_gen.go │ │ │ ├── tl_messages_set_bot_shipping_results_gen.go │ │ │ ├── tl_messages_set_bot_shipping_results_slices_gen.go │ │ │ ├── tl_messages_set_chat_available_reactions_gen.go │ │ │ ├── tl_messages_set_chat_available_reactions_slices_gen.go │ │ │ ├── tl_messages_set_chat_theme_gen.go │ │ │ ├── tl_messages_set_chat_theme_slices_gen.go │ │ │ ├── tl_messages_set_chat_wall_paper_gen.go │ │ │ ├── tl_messages_set_chat_wall_paper_slices_gen.go │ │ │ ├── tl_messages_set_default_history_ttl_gen.go │ │ │ ├── tl_messages_set_default_history_ttl_slices_gen.go │ │ │ ├── tl_messages_set_default_reaction_gen.go │ │ │ ├── tl_messages_set_default_reaction_slices_gen.go │ │ │ ├── tl_messages_set_encrypted_typing_gen.go │ │ │ ├── tl_messages_set_encrypted_typing_slices_gen.go │ │ │ ├── tl_messages_set_game_score_gen.go │ │ │ ├── tl_messages_set_game_score_slices_gen.go │ │ │ ├── tl_messages_set_history_ttl_gen.go │ │ │ ├── tl_messages_set_history_ttl_slices_gen.go │ │ │ ├── tl_messages_set_inline_bot_results_gen.go │ │ │ ├── tl_messages_set_inline_bot_results_slices_gen.go │ │ │ ├── tl_messages_set_inline_game_score_gen.go │ │ │ ├── tl_messages_set_inline_game_score_slices_gen.go │ │ │ ├── tl_messages_set_typing_gen.go │ │ │ ├── tl_messages_set_typing_slices_gen.go │ │ │ ├── tl_messages_sponsored_messages_gen.go │ │ │ ├── tl_messages_sponsored_messages_slices_gen.go │ │ │ ├── tl_messages_start_bot_gen.go │ │ │ ├── tl_messages_start_bot_slices_gen.go │ │ │ ├── tl_messages_start_history_import_gen.go │ │ │ ├── tl_messages_start_history_import_slices_gen.go │ │ │ ├── tl_messages_sticker_set_gen.go │ │ │ ├── tl_messages_sticker_set_install_result_gen.go │ │ │ ├── tl_messages_sticker_set_install_result_slices_gen.go │ │ │ ├── tl_messages_sticker_set_slices_gen.go │ │ │ ├── tl_messages_stickers_gen.go │ │ │ ├── tl_messages_stickers_slices_gen.go │ │ │ ├── tl_messages_toggle_bot_in_attach_menu_gen.go │ │ │ ├── tl_messages_toggle_bot_in_attach_menu_slices_gen.go │ │ │ ├── tl_messages_toggle_dialog_filter_tags_gen.go │ │ │ ├── tl_messages_toggle_dialog_filter_tags_slices_gen.go │ │ │ ├── tl_messages_toggle_dialog_pin_gen.go │ │ │ ├── tl_messages_toggle_dialog_pin_slices_gen.go │ │ │ ├── tl_messages_toggle_no_forwards_gen.go │ │ │ ├── tl_messages_toggle_no_forwards_slices_gen.go │ │ │ ├── tl_messages_toggle_paid_reaction_privacy_gen.go │ │ │ ├── tl_messages_toggle_paid_reaction_privacy_slices_gen.go │ │ │ ├── tl_messages_toggle_peer_translations_gen.go │ │ │ ├── tl_messages_toggle_peer_translations_slices_gen.go │ │ │ ├── tl_messages_toggle_saved_dialog_pin_gen.go │ │ │ ├── tl_messages_toggle_saved_dialog_pin_slices_gen.go │ │ │ ├── tl_messages_toggle_sticker_sets_gen.go │ │ │ ├── tl_messages_toggle_sticker_sets_slices_gen.go │ │ │ ├── tl_messages_toggle_suggested_post_approval_gen.go │ │ │ ├── tl_messages_toggle_suggested_post_approval_slices_gen.go │ │ │ ├── tl_messages_toggle_todo_completed_gen.go │ │ │ ├── tl_messages_toggle_todo_completed_slices_gen.go │ │ │ ├── tl_messages_transcribe_audio_gen.go │ │ │ ├── tl_messages_transcribe_audio_slices_gen.go │ │ │ ├── tl_messages_transcribed_audio_gen.go │ │ │ ├── tl_messages_transcribed_audio_slices_gen.go │ │ │ ├── tl_messages_translate_result_gen.go │ │ │ ├── tl_messages_translate_result_slices_gen.go │ │ │ ├── tl_messages_translate_text_gen.go │ │ │ ├── tl_messages_translate_text_slices_gen.go │ │ │ ├── tl_messages_uninstall_sticker_set_gen.go │ │ │ ├── tl_messages_uninstall_sticker_set_slices_gen.go │ │ │ ├── tl_messages_unpin_all_messages_gen.go │ │ │ ├── tl_messages_unpin_all_messages_slices_gen.go │ │ │ ├── tl_messages_update_dialog_filter_gen.go │ │ │ ├── tl_messages_update_dialog_filter_slices_gen.go │ │ │ ├── tl_messages_update_dialog_filters_order_gen.go │ │ │ ├── tl_messages_update_dialog_filters_order_slices_gen.go │ │ │ ├── tl_messages_update_pinned_forum_topic_gen.go │ │ │ ├── tl_messages_update_pinned_forum_topic_slices_gen.go │ │ │ ├── tl_messages_update_pinned_message_gen.go │ │ │ ├── tl_messages_update_pinned_message_slices_gen.go │ │ │ ├── tl_messages_update_saved_reaction_tag_gen.go │ │ │ ├── tl_messages_update_saved_reaction_tag_slices_gen.go │ │ │ ├── tl_messages_upload_encrypted_file_gen.go │ │ │ ├── tl_messages_upload_encrypted_file_slices_gen.go │ │ │ ├── tl_messages_upload_imported_media_gen.go │ │ │ ├── tl_messages_upload_imported_media_slices_gen.go │ │ │ ├── tl_messages_upload_media_gen.go │ │ │ ├── tl_messages_upload_media_slices_gen.go │ │ │ ├── tl_messages_view_sponsored_message_gen.go │ │ │ ├── tl_messages_view_sponsored_message_slices_gen.go │ │ │ ├── tl_messages_votes_list_gen.go │ │ │ ├── tl_messages_votes_list_slices_gen.go │ │ │ ├── tl_messages_web_page_gen.go │ │ │ ├── tl_messages_web_page_preview_gen.go │ │ │ ├── tl_messages_web_page_preview_slices_gen.go │ │ │ ├── tl_messages_web_page_slices_gen.go │ │ │ ├── tl_missing_invitee_gen.go │ │ │ ├── tl_missing_invitee_slices_gen.go │ │ │ ├── tl_my_boost_gen.go │ │ │ ├── tl_my_boost_slices_gen.go │ │ │ ├── tl_nearest_dc_gen.go │ │ │ ├── tl_nearest_dc_slices_gen.go │ │ │ ├── tl_notification_sound_gen.go │ │ │ ├── tl_notification_sound_slices_gen.go │ │ │ ├── tl_notify_peer_gen.go │ │ │ ├── tl_notify_peer_slices_gen.go │ │ │ ├── tl_null_gen.go │ │ │ ├── tl_null_slices_gen.go │ │ │ ├── tl_outbox_read_date_gen.go │ │ │ ├── tl_outbox_read_date_slices_gen.go │ │ │ ├── tl_page_block_gen.go │ │ │ ├── tl_page_block_slices_gen.go │ │ │ ├── tl_page_caption_gen.go │ │ │ ├── tl_page_caption_slices_gen.go │ │ │ ├── tl_page_gen.go │ │ │ ├── tl_page_list_item_gen.go │ │ │ ├── tl_page_list_item_slices_gen.go │ │ │ ├── tl_page_list_ordered_item_gen.go │ │ │ ├── tl_page_list_ordered_item_slices_gen.go │ │ │ ├── tl_page_related_article_gen.go │ │ │ ├── tl_page_related_article_slices_gen.go │ │ │ ├── tl_page_slices_gen.go │ │ │ ├── tl_page_table_cell_gen.go │ │ │ ├── tl_page_table_cell_slices_gen.go │ │ │ ├── tl_page_table_row_gen.go │ │ │ ├── tl_page_table_row_slices_gen.go │ │ │ ├── tl_paid_reaction_privacy_gen.go │ │ │ ├── tl_paid_reaction_privacy_slices_gen.go │ │ │ ├── tl_password_kdf_algo_gen.go │ │ │ ├── tl_password_kdf_algo_slices_gen.go │ │ │ ├── tl_payment_charge_gen.go │ │ │ ├── tl_payment_charge_slices_gen.go │ │ │ ├── tl_payment_form_method_gen.go │ │ │ ├── tl_payment_form_method_slices_gen.go │ │ │ ├── tl_payment_requested_info_gen.go │ │ │ ├── tl_payment_requested_info_slices_gen.go │ │ │ ├── tl_payment_saved_credentials_card_gen.go │ │ │ ├── tl_payment_saved_credentials_card_slices_gen.go │ │ │ ├── tl_payments_apply_gift_code_gen.go │ │ │ ├── tl_payments_apply_gift_code_slices_gen.go │ │ │ ├── tl_payments_assign_app_store_transaction_gen.go │ │ │ ├── tl_payments_assign_app_store_transaction_slices_gen.go │ │ │ ├── tl_payments_assign_play_market_transaction_gen.go │ │ │ ├── tl_payments_assign_play_market_transaction_slices_gen.go │ │ │ ├── tl_payments_bank_card_data_gen.go │ │ │ ├── tl_payments_bank_card_data_slices_gen.go │ │ │ ├── tl_payments_bot_cancel_stars_subscription_gen.go │ │ │ ├── tl_payments_bot_cancel_stars_subscription_slices_gen.go │ │ │ ├── tl_payments_can_purchase_store_gen.go │ │ │ ├── tl_payments_can_purchase_store_slices_gen.go │ │ │ ├── tl_payments_change_stars_subscription_gen.go │ │ │ ├── tl_payments_change_stars_subscription_slices_gen.go │ │ │ ├── tl_payments_check_can_send_gift_gen.go │ │ │ ├── tl_payments_check_can_send_gift_result_gen.go │ │ │ ├── tl_payments_check_can_send_gift_result_slices_gen.go │ │ │ ├── tl_payments_check_can_send_gift_slices_gen.go │ │ │ ├── tl_payments_check_gift_code_gen.go │ │ │ ├── tl_payments_check_gift_code_slices_gen.go │ │ │ ├── tl_payments_checked_gift_code_gen.go │ │ │ ├── tl_payments_checked_gift_code_slices_gen.go │ │ │ ├── tl_payments_clear_saved_info_gen.go │ │ │ ├── tl_payments_clear_saved_info_slices_gen.go │ │ │ ├── tl_payments_connect_star_ref_bot_gen.go │ │ │ ├── tl_payments_connect_star_ref_bot_slices_gen.go │ │ │ ├── tl_payments_connected_star_ref_bots_gen.go │ │ │ ├── tl_payments_connected_star_ref_bots_slices_gen.go │ │ │ ├── tl_payments_convert_star_gift_gen.go │ │ │ ├── tl_payments_convert_star_gift_slices_gen.go │ │ │ ├── tl_payments_create_star_gift_collection_gen.go │ │ │ ├── tl_payments_create_star_gift_collection_slices_gen.go │ │ │ ├── tl_payments_delete_star_gift_collection_gen.go │ │ │ ├── tl_payments_delete_star_gift_collection_slices_gen.go │ │ │ ├── tl_payments_edit_connected_star_ref_bot_gen.go │ │ │ ├── tl_payments_edit_connected_star_ref_bot_slices_gen.go │ │ │ ├── tl_payments_export_invoice_gen.go │ │ │ ├── tl_payments_export_invoice_slices_gen.go │ │ │ ├── tl_payments_exported_invoice_gen.go │ │ │ ├── tl_payments_exported_invoice_slices_gen.go │ │ │ ├── tl_payments_fulfill_stars_subscription_gen.go │ │ │ ├── tl_payments_fulfill_stars_subscription_slices_gen.go │ │ │ ├── tl_payments_get_bank_card_data_gen.go │ │ │ ├── tl_payments_get_bank_card_data_slices_gen.go │ │ │ ├── tl_payments_get_connected_star_ref_bot_gen.go │ │ │ ├── tl_payments_get_connected_star_ref_bot_slices_gen.go │ │ │ ├── tl_payments_get_connected_star_ref_bots_gen.go │ │ │ ├── tl_payments_get_connected_star_ref_bots_slices_gen.go │ │ │ ├── tl_payments_get_giveaway_info_gen.go │ │ │ ├── tl_payments_get_giveaway_info_slices_gen.go │ │ │ ├── tl_payments_get_payment_form_gen.go │ │ │ ├── tl_payments_get_payment_form_slices_gen.go │ │ │ ├── tl_payments_get_payment_receipt_gen.go │ │ │ ├── tl_payments_get_payment_receipt_slices_gen.go │ │ │ ├── tl_payments_get_premium_gift_code_options_gen.go │ │ │ ├── tl_payments_get_premium_gift_code_options_slices_gen.go │ │ │ ├── tl_payments_get_resale_star_gifts_gen.go │ │ │ ├── tl_payments_get_resale_star_gifts_slices_gen.go │ │ │ ├── tl_payments_get_saved_info_gen.go │ │ │ ├── tl_payments_get_saved_info_slices_gen.go │ │ │ ├── tl_payments_get_saved_star_gift_gen.go │ │ │ ├── tl_payments_get_saved_star_gift_slices_gen.go │ │ │ ├── tl_payments_get_saved_star_gifts_gen.go │ │ │ ├── tl_payments_get_saved_star_gifts_slices_gen.go │ │ │ ├── tl_payments_get_star_gift_collections_gen.go │ │ │ ├── tl_payments_get_star_gift_collections_slices_gen.go │ │ │ ├── tl_payments_get_star_gift_upgrade_preview_gen.go │ │ │ ├── tl_payments_get_star_gift_upgrade_preview_slices_gen.go │ │ │ ├── tl_payments_get_star_gift_withdrawal_url_gen.go │ │ │ ├── tl_payments_get_star_gift_withdrawal_url_slices_gen.go │ │ │ ├── tl_payments_get_star_gifts_gen.go │ │ │ ├── tl_payments_get_star_gifts_slices_gen.go │ │ │ ├── tl_payments_get_stars_gift_options_gen.go │ │ │ ├── tl_payments_get_stars_gift_options_slices_gen.go │ │ │ ├── tl_payments_get_stars_giveaway_options_gen.go │ │ │ ├── tl_payments_get_stars_giveaway_options_slices_gen.go │ │ │ ├── tl_payments_get_stars_revenue_ads_account_url_gen.go │ │ │ ├── tl_payments_get_stars_revenue_ads_account_url_slices_gen.go │ │ │ ├── tl_payments_get_stars_revenue_stats_gen.go │ │ │ ├── tl_payments_get_stars_revenue_stats_slices_gen.go │ │ │ ├── tl_payments_get_stars_revenue_withdrawal_url_gen.go │ │ │ ├── tl_payments_get_stars_revenue_withdrawal_url_slices_gen.go │ │ │ ├── tl_payments_get_stars_status_gen.go │ │ │ ├── tl_payments_get_stars_status_slices_gen.go │ │ │ ├── tl_payments_get_stars_subscriptions_gen.go │ │ │ ├── tl_payments_get_stars_subscriptions_slices_gen.go │ │ │ ├── tl_payments_get_stars_topup_options_gen.go │ │ │ ├── tl_payments_get_stars_topup_options_slices_gen.go │ │ │ ├── tl_payments_get_stars_transactions_by_id_gen.go │ │ │ ├── tl_payments_get_stars_transactions_by_id_slices_gen.go │ │ │ ├── tl_payments_get_stars_transactions_gen.go │ │ │ ├── tl_payments_get_stars_transactions_slices_gen.go │ │ │ ├── tl_payments_get_suggested_star_ref_bots_gen.go │ │ │ ├── tl_payments_get_suggested_star_ref_bots_slices_gen.go │ │ │ ├── tl_payments_get_unique_star_gift_gen.go │ │ │ ├── tl_payments_get_unique_star_gift_slices_gen.go │ │ │ ├── tl_payments_get_unique_star_gift_value_info_gen.go │ │ │ ├── tl_payments_get_unique_star_gift_value_info_slices_gen.go │ │ │ ├── tl_payments_giveaway_info_gen.go │ │ │ ├── tl_payments_giveaway_info_slices_gen.go │ │ │ ├── tl_payments_launch_prepaid_giveaway_gen.go │ │ │ ├── tl_payments_launch_prepaid_giveaway_slices_gen.go │ │ │ ├── tl_payments_payment_form_gen.go │ │ │ ├── tl_payments_payment_form_slices_gen.go │ │ │ ├── tl_payments_payment_receipt_gen.go │ │ │ ├── tl_payments_payment_receipt_slices_gen.go │ │ │ ├── tl_payments_payment_result_gen.go │ │ │ ├── tl_payments_payment_result_slices_gen.go │ │ │ ├── tl_payments_refund_stars_charge_gen.go │ │ │ ├── tl_payments_refund_stars_charge_slices_gen.go │ │ │ ├── tl_payments_reorder_star_gift_collections_gen.go │ │ │ ├── tl_payments_reorder_star_gift_collections_slices_gen.go │ │ │ ├── tl_payments_resale_star_gifts_gen.go │ │ │ ├── tl_payments_resale_star_gifts_slices_gen.go │ │ │ ├── tl_payments_save_star_gift_gen.go │ │ │ ├── tl_payments_save_star_gift_slices_gen.go │ │ │ ├── tl_payments_saved_info_gen.go │ │ │ ├── tl_payments_saved_info_slices_gen.go │ │ │ ├── tl_payments_saved_star_gifts_gen.go │ │ │ ├── tl_payments_saved_star_gifts_slices_gen.go │ │ │ ├── tl_payments_send_payment_form_gen.go │ │ │ ├── tl_payments_send_payment_form_slices_gen.go │ │ │ ├── tl_payments_send_stars_form_gen.go │ │ │ ├── tl_payments_send_stars_form_slices_gen.go │ │ │ ├── tl_payments_star_gift_collections_gen.go │ │ │ ├── tl_payments_star_gift_collections_slices_gen.go │ │ │ ├── tl_payments_star_gift_upgrade_preview_gen.go │ │ │ ├── tl_payments_star_gift_upgrade_preview_slices_gen.go │ │ │ ├── tl_payments_star_gift_withdrawal_url_gen.go │ │ │ ├── tl_payments_star_gift_withdrawal_url_slices_gen.go │ │ │ ├── tl_payments_star_gifts_gen.go │ │ │ ├── tl_payments_star_gifts_slices_gen.go │ │ │ ├── tl_payments_stars_revenue_ads_account_url_gen.go │ │ │ ├── tl_payments_stars_revenue_ads_account_url_slices_gen.go │ │ │ ├── tl_payments_stars_revenue_stats_gen.go │ │ │ ├── tl_payments_stars_revenue_stats_slices_gen.go │ │ │ ├── tl_payments_stars_revenue_withdrawal_url_gen.go │ │ │ ├── tl_payments_stars_revenue_withdrawal_url_slices_gen.go │ │ │ ├── tl_payments_stars_status_gen.go │ │ │ ├── tl_payments_stars_status_slices_gen.go │ │ │ ├── tl_payments_suggested_star_ref_bots_gen.go │ │ │ ├── tl_payments_suggested_star_ref_bots_slices_gen.go │ │ │ ├── tl_payments_toggle_chat_star_gift_notifications_gen.go │ │ │ ├── tl_payments_toggle_chat_star_gift_notifications_slices_gen.go │ │ │ ├── tl_payments_toggle_star_gifts_pinned_to_top_gen.go │ │ │ ├── tl_payments_toggle_star_gifts_pinned_to_top_slices_gen.go │ │ │ ├── tl_payments_transfer_star_gift_gen.go │ │ │ ├── tl_payments_transfer_star_gift_slices_gen.go │ │ │ ├── tl_payments_unique_star_gift_gen.go │ │ │ ├── tl_payments_unique_star_gift_slices_gen.go │ │ │ ├── tl_payments_unique_star_gift_value_info_gen.go │ │ │ ├── tl_payments_unique_star_gift_value_info_slices_gen.go │ │ │ ├── tl_payments_update_star_gift_collection_gen.go │ │ │ ├── tl_payments_update_star_gift_collection_slices_gen.go │ │ │ ├── tl_payments_update_star_gift_price_gen.go │ │ │ ├── tl_payments_update_star_gift_price_slices_gen.go │ │ │ ├── tl_payments_upgrade_star_gift_gen.go │ │ │ ├── tl_payments_upgrade_star_gift_slices_gen.go │ │ │ ├── tl_payments_validate_requested_info_gen.go │ │ │ ├── tl_payments_validate_requested_info_slices_gen.go │ │ │ ├── tl_payments_validated_requested_info_gen.go │ │ │ ├── tl_payments_validated_requested_info_slices_gen.go │ │ │ ├── tl_peer_blocked_gen.go │ │ │ ├── tl_peer_blocked_slices_gen.go │ │ │ ├── tl_peer_class_vector_gen.go │ │ │ ├── tl_peer_class_vector_slices_gen.go │ │ │ ├── tl_peer_color_gen.go │ │ │ ├── tl_peer_color_slices_gen.go │ │ │ ├── tl_peer_gen.go │ │ │ ├── tl_peer_located_gen.go │ │ │ ├── tl_peer_located_slices_gen.go │ │ │ ├── tl_peer_notify_settings_gen.go │ │ │ ├── tl_peer_notify_settings_slices_gen.go │ │ │ ├── tl_peer_settings_gen.go │ │ │ ├── tl_peer_settings_slices_gen.go │ │ │ ├── tl_peer_slices_gen.go │ │ │ ├── tl_peer_stories_gen.go │ │ │ ├── tl_peer_stories_slices_gen.go │ │ │ ├── tl_pending_suggestion_gen.go │ │ │ ├── tl_pending_suggestion_slices_gen.go │ │ │ ├── tl_phone_accept_call_gen.go │ │ │ ├── tl_phone_accept_call_slices_gen.go │ │ │ ├── tl_phone_call_discard_reason_gen.go │ │ │ ├── tl_phone_call_discard_reason_slices_gen.go │ │ │ ├── tl_phone_call_gen.go │ │ │ ├── tl_phone_call_protocol_gen.go │ │ │ ├── tl_phone_call_protocol_slices_gen.go │ │ │ ├── tl_phone_call_slices_gen.go │ │ │ ├── tl_phone_check_group_call_gen.go │ │ │ ├── tl_phone_check_group_call_slices_gen.go │ │ │ ├── tl_phone_confirm_call_gen.go │ │ │ ├── tl_phone_confirm_call_slices_gen.go │ │ │ ├── tl_phone_connection_gen.go │ │ │ ├── tl_phone_connection_slices_gen.go │ │ │ ├── tl_phone_create_conference_call_gen.go │ │ │ ├── tl_phone_create_conference_call_slices_gen.go │ │ │ ├── tl_phone_create_group_call_gen.go │ │ │ ├── tl_phone_create_group_call_slices_gen.go │ │ │ ├── tl_phone_decline_conference_call_invite_gen.go │ │ │ ├── tl_phone_decline_conference_call_invite_slices_gen.go │ │ │ ├── tl_phone_delete_conference_call_participants_gen.go │ │ │ ├── tl_phone_delete_conference_call_participants_slices_gen.go │ │ │ ├── tl_phone_discard_call_gen.go │ │ │ ├── tl_phone_discard_call_slices_gen.go │ │ │ ├── tl_phone_discard_group_call_gen.go │ │ │ ├── tl_phone_discard_group_call_slices_gen.go │ │ │ ├── tl_phone_edit_group_call_participant_gen.go │ │ │ ├── tl_phone_edit_group_call_participant_slices_gen.go │ │ │ ├── tl_phone_edit_group_call_title_gen.go │ │ │ ├── tl_phone_edit_group_call_title_slices_gen.go │ │ │ ├── tl_phone_export_group_call_invite_gen.go │ │ │ ├── tl_phone_export_group_call_invite_slices_gen.go │ │ │ ├── tl_phone_exported_group_call_invite_gen.go │ │ │ ├── tl_phone_exported_group_call_invite_slices_gen.go │ │ │ ├── tl_phone_get_call_config_gen.go │ │ │ ├── tl_phone_get_call_config_slices_gen.go │ │ │ ├── tl_phone_get_group_call_chain_blocks_gen.go │ │ │ ├── tl_phone_get_group_call_chain_blocks_slices_gen.go │ │ │ ├── tl_phone_get_group_call_gen.go │ │ │ ├── tl_phone_get_group_call_join_as_gen.go │ │ │ ├── tl_phone_get_group_call_join_as_slices_gen.go │ │ │ ├── tl_phone_get_group_call_slices_gen.go │ │ │ ├── tl_phone_get_group_call_stream_channels_gen.go │ │ │ ├── tl_phone_get_group_call_stream_channels_slices_gen.go │ │ │ ├── tl_phone_get_group_call_stream_rtmp_url_gen.go │ │ │ ├── tl_phone_get_group_call_stream_rtmp_url_slices_gen.go │ │ │ ├── tl_phone_get_group_participants_gen.go │ │ │ ├── tl_phone_get_group_participants_slices_gen.go │ │ │ ├── tl_phone_group_call_gen.go │ │ │ ├── tl_phone_group_call_slices_gen.go │ │ │ ├── tl_phone_group_call_stream_channels_gen.go │ │ │ ├── tl_phone_group_call_stream_channels_slices_gen.go │ │ │ ├── tl_phone_group_call_stream_rtmp_url_gen.go │ │ │ ├── tl_phone_group_call_stream_rtmp_url_slices_gen.go │ │ │ ├── tl_phone_group_participants_gen.go │ │ │ ├── tl_phone_group_participants_slices_gen.go │ │ │ ├── tl_phone_invite_conference_call_participant_gen.go │ │ │ ├── tl_phone_invite_conference_call_participant_slices_gen.go │ │ │ ├── tl_phone_invite_to_group_call_gen.go │ │ │ ├── tl_phone_invite_to_group_call_slices_gen.go │ │ │ ├── tl_phone_join_as_peers_gen.go │ │ │ ├── tl_phone_join_as_peers_slices_gen.go │ │ │ ├── tl_phone_join_group_call_gen.go │ │ │ ├── tl_phone_join_group_call_presentation_gen.go │ │ │ ├── tl_phone_join_group_call_presentation_slices_gen.go │ │ │ ├── tl_phone_join_group_call_slices_gen.go │ │ │ ├── tl_phone_leave_group_call_gen.go │ │ │ ├── tl_phone_leave_group_call_presentation_gen.go │ │ │ ├── tl_phone_leave_group_call_presentation_slices_gen.go │ │ │ ├── tl_phone_leave_group_call_slices_gen.go │ │ │ ├── tl_phone_phone_call_gen.go │ │ │ ├── tl_phone_phone_call_slices_gen.go │ │ │ ├── tl_phone_received_call_gen.go │ │ │ ├── tl_phone_received_call_slices_gen.go │ │ │ ├── tl_phone_request_call_gen.go │ │ │ ├── tl_phone_request_call_slices_gen.go │ │ │ ├── tl_phone_save_call_debug_gen.go │ │ │ ├── tl_phone_save_call_debug_slices_gen.go │ │ │ ├── tl_phone_save_call_log_gen.go │ │ │ ├── tl_phone_save_call_log_slices_gen.go │ │ │ ├── tl_phone_save_default_group_call_join_as_gen.go │ │ │ ├── tl_phone_save_default_group_call_join_as_slices_gen.go │ │ │ ├── tl_phone_send_conference_call_broadcast_gen.go │ │ │ ├── tl_phone_send_conference_call_broadcast_slices_gen.go │ │ │ ├── tl_phone_send_group_call_encrypted_message_gen.go │ │ │ ├── tl_phone_send_group_call_encrypted_message_slices_gen.go │ │ │ ├── tl_phone_send_group_call_message_gen.go │ │ │ ├── tl_phone_send_group_call_message_slices_gen.go │ │ │ ├── tl_phone_send_signaling_data_gen.go │ │ │ ├── tl_phone_send_signaling_data_slices_gen.go │ │ │ ├── tl_phone_set_call_rating_gen.go │ │ │ ├── tl_phone_set_call_rating_slices_gen.go │ │ │ ├── tl_phone_start_scheduled_group_call_gen.go │ │ │ ├── tl_phone_start_scheduled_group_call_slices_gen.go │ │ │ ├── tl_phone_toggle_group_call_record_gen.go │ │ │ ├── tl_phone_toggle_group_call_record_slices_gen.go │ │ │ ├── tl_phone_toggle_group_call_settings_gen.go │ │ │ ├── tl_phone_toggle_group_call_settings_slices_gen.go │ │ │ ├── tl_phone_toggle_group_call_start_subscription_gen.go │ │ │ ├── tl_phone_toggle_group_call_start_subscription_slices_gen.go │ │ │ ├── tl_photo_gen.go │ │ │ ├── tl_photo_size_gen.go │ │ │ ├── tl_photo_size_slices_gen.go │ │ │ ├── tl_photo_slices_gen.go │ │ │ ├── tl_photos_delete_photos_gen.go │ │ │ ├── tl_photos_delete_photos_slices_gen.go │ │ │ ├── tl_photos_get_user_photos_gen.go │ │ │ ├── tl_photos_get_user_photos_slices_gen.go │ │ │ ├── tl_photos_photo_gen.go │ │ │ ├── tl_photos_photo_slices_gen.go │ │ │ ├── tl_photos_photos_gen.go │ │ │ ├── tl_photos_photos_slices_gen.go │ │ │ ├── tl_photos_update_profile_photo_gen.go │ │ │ ├── tl_photos_update_profile_photo_slices_gen.go │ │ │ ├── tl_photos_upload_contact_profile_photo_gen.go │ │ │ ├── tl_photos_upload_contact_profile_photo_slices_gen.go │ │ │ ├── tl_photos_upload_profile_photo_gen.go │ │ │ ├── tl_photos_upload_profile_photo_slices_gen.go │ │ │ ├── tl_poll_answer_gen.go │ │ │ ├── tl_poll_answer_slices_gen.go │ │ │ ├── tl_poll_answer_voters_gen.go │ │ │ ├── tl_poll_answer_voters_slices_gen.go │ │ │ ├── tl_poll_gen.go │ │ │ ├── tl_poll_results_gen.go │ │ │ ├── tl_poll_results_slices_gen.go │ │ │ ├── tl_poll_slices_gen.go │ │ │ ├── tl_popular_contact_gen.go │ │ │ ├── tl_popular_contact_slices_gen.go │ │ │ ├── tl_post_address_gen.go │ │ │ ├── tl_post_address_slices_gen.go │ │ │ ├── tl_post_interaction_counters_gen.go │ │ │ ├── tl_post_interaction_counters_slices_gen.go │ │ │ ├── tl_premium_apply_boost_gen.go │ │ │ ├── tl_premium_apply_boost_slices_gen.go │ │ │ ├── tl_premium_boosts_list_gen.go │ │ │ ├── tl_premium_boosts_list_slices_gen.go │ │ │ ├── tl_premium_boosts_status_gen.go │ │ │ ├── tl_premium_boosts_status_slices_gen.go │ │ │ ├── tl_premium_get_boosts_list_gen.go │ │ │ ├── tl_premium_get_boosts_list_slices_gen.go │ │ │ ├── tl_premium_get_boosts_status_gen.go │ │ │ ├── tl_premium_get_boosts_status_slices_gen.go │ │ │ ├── tl_premium_get_my_boosts_gen.go │ │ │ ├── tl_premium_get_my_boosts_slices_gen.go │ │ │ ├── tl_premium_get_user_boosts_gen.go │ │ │ ├── tl_premium_get_user_boosts_slices_gen.go │ │ │ ├── tl_premium_gift_code_option_gen.go │ │ │ ├── tl_premium_gift_code_option_slices_gen.go │ │ │ ├── tl_premium_gift_code_option_vector_gen.go │ │ │ ├── tl_premium_gift_code_option_vector_slices_gen.go │ │ │ ├── tl_premium_my_boosts_gen.go │ │ │ ├── tl_premium_my_boosts_slices_gen.go │ │ │ ├── tl_premium_subscription_option_gen.go │ │ │ ├── tl_premium_subscription_option_slices_gen.go │ │ │ ├── tl_prepaid_giveaway_gen.go │ │ │ ├── tl_prepaid_giveaway_slices_gen.go │ │ │ ├── tl_privacy_key_gen.go │ │ │ ├── tl_privacy_key_slices_gen.go │ │ │ ├── tl_privacy_rule_gen.go │ │ │ ├── tl_privacy_rule_slices_gen.go │ │ │ ├── tl_profile_tab_gen.go │ │ │ ├── tl_profile_tab_slices_gen.go │ │ │ ├── tl_public_forward_gen.go │ │ │ ├── tl_public_forward_slices_gen.go │ │ │ ├── tl_quick_reply_gen.go │ │ │ ├── tl_quick_reply_slices_gen.go │ │ │ ├── tl_reaction_count_gen.go │ │ │ ├── tl_reaction_count_slices_gen.go │ │ │ ├── tl_reaction_gen.go │ │ │ ├── tl_reaction_notifications_from_gen.go │ │ │ ├── tl_reaction_notifications_from_slices_gen.go │ │ │ ├── tl_reaction_slices_gen.go │ │ │ ├── tl_reactions_notify_settings_gen.go │ │ │ ├── tl_reactions_notify_settings_slices_gen.go │ │ │ ├── tl_read_participant_date_gen.go │ │ │ ├── tl_read_participant_date_slices_gen.go │ │ │ ├── tl_read_participant_date_vector_gen.go │ │ │ ├── tl_read_participant_date_vector_slices_gen.go │ │ │ ├── tl_received_notify_message_gen.go │ │ │ ├── tl_received_notify_message_slices_gen.go │ │ │ ├── tl_received_notify_message_vector_gen.go │ │ │ ├── tl_received_notify_message_vector_slices_gen.go │ │ │ ├── tl_recent_me_url_gen.go │ │ │ ├── tl_recent_me_url_slices_gen.go │ │ │ ├── tl_registry_gen.go │ │ │ ├── tl_reply_markup_gen.go │ │ │ ├── tl_reply_markup_slices_gen.go │ │ │ ├── tl_report_reason_gen.go │ │ │ ├── tl_report_reason_slices_gen.go │ │ │ ├── tl_report_result_gen.go │ │ │ ├── tl_report_result_slices_gen.go │ │ │ ├── tl_request_peer_type_gen.go │ │ │ ├── tl_request_peer_type_slices_gen.go │ │ │ ├── tl_requested_peer_gen.go │ │ │ ├── tl_requested_peer_slices_gen.go │ │ │ ├── tl_requirement_to_contact_class_vector_gen.go │ │ │ ├── tl_requirement_to_contact_class_vector_slices_gen.go │ │ │ ├── tl_requirement_to_contact_gen.go │ │ │ ├── tl_requirement_to_contact_slices_gen.go │ │ │ ├── tl_restriction_reason_gen.go │ │ │ ├── tl_restriction_reason_slices_gen.go │ │ │ ├── tl_rich_text_gen.go │ │ │ ├── tl_rich_text_slices_gen.go │ │ │ ├── tl_saved_dialog_gen.go │ │ │ ├── tl_saved_dialog_slices_gen.go │ │ │ ├── tl_saved_phone_contact_gen.go │ │ │ ├── tl_saved_phone_contact_slices_gen.go │ │ │ ├── tl_saved_phone_contact_vector_gen.go │ │ │ ├── tl_saved_phone_contact_vector_slices_gen.go │ │ │ ├── tl_saved_reaction_tag_gen.go │ │ │ ├── tl_saved_reaction_tag_slices_gen.go │ │ │ ├── tl_saved_star_gift_gen.go │ │ │ ├── tl_saved_star_gift_slices_gen.go │ │ │ ├── tl_search_posts_flood_gen.go │ │ │ ├── tl_search_posts_flood_slices_gen.go │ │ │ ├── tl_search_result_position_gen.go │ │ │ ├── tl_search_result_position_slices_gen.go │ │ │ ├── tl_search_results_calendar_period_gen.go │ │ │ ├── tl_search_results_calendar_period_slices_gen.go │ │ │ ├── tl_secure_credentials_encrypted_gen.go │ │ │ ├── tl_secure_credentials_encrypted_slices_gen.go │ │ │ ├── tl_secure_data_gen.go │ │ │ ├── tl_secure_data_slices_gen.go │ │ │ ├── tl_secure_file_gen.go │ │ │ ├── tl_secure_file_slices_gen.go │ │ │ ├── tl_secure_password_kdf_algo_gen.go │ │ │ ├── tl_secure_password_kdf_algo_slices_gen.go │ │ │ ├── tl_secure_plain_data_gen.go │ │ │ ├── tl_secure_plain_data_slices_gen.go │ │ │ ├── tl_secure_required_type_gen.go │ │ │ ├── tl_secure_required_type_slices_gen.go │ │ │ ├── tl_secure_secret_settings_gen.go │ │ │ ├── tl_secure_secret_settings_slices_gen.go │ │ │ ├── tl_secure_value_error_gen.go │ │ │ ├── tl_secure_value_error_slices_gen.go │ │ │ ├── tl_secure_value_gen.go │ │ │ ├── tl_secure_value_hash_gen.go │ │ │ ├── tl_secure_value_hash_slices_gen.go │ │ │ ├── tl_secure_value_slices_gen.go │ │ │ ├── tl_secure_value_type_gen.go │ │ │ ├── tl_secure_value_type_slices_gen.go │ │ │ ├── tl_secure_value_vector_gen.go │ │ │ ├── tl_secure_value_vector_slices_gen.go │ │ │ ├── tl_send_as_peer_gen.go │ │ │ ├── tl_send_as_peer_slices_gen.go │ │ │ ├── tl_send_message_action_gen.go │ │ │ ├── tl_send_message_action_slices_gen.go │ │ │ ├── tl_server_gen.go │ │ │ ├── tl_shipping_option_gen.go │ │ │ ├── tl_shipping_option_slices_gen.go │ │ │ ├── tl_sms_job_gen.go │ │ │ ├── tl_sms_job_slices_gen.go │ │ │ ├── tl_smsjobs_eligible_to_join_gen.go │ │ │ ├── tl_smsjobs_eligible_to_join_slices_gen.go │ │ │ ├── tl_smsjobs_finish_job_gen.go │ │ │ ├── tl_smsjobs_finish_job_slices_gen.go │ │ │ ├── tl_smsjobs_get_sms_job_gen.go │ │ │ ├── tl_smsjobs_get_sms_job_slices_gen.go │ │ │ ├── tl_smsjobs_get_status_gen.go │ │ │ ├── tl_smsjobs_get_status_slices_gen.go │ │ │ ├── tl_smsjobs_is_eligible_to_join_gen.go │ │ │ ├── tl_smsjobs_is_eligible_to_join_slices_gen.go │ │ │ ├── tl_smsjobs_join_gen.go │ │ │ ├── tl_smsjobs_join_slices_gen.go │ │ │ ├── tl_smsjobs_leave_gen.go │ │ │ ├── tl_smsjobs_leave_slices_gen.go │ │ │ ├── tl_smsjobs_status_gen.go │ │ │ ├── tl_smsjobs_status_slices_gen.go │ │ │ ├── tl_smsjobs_update_settings_gen.go │ │ │ ├── tl_smsjobs_update_settings_slices_gen.go │ │ │ ├── tl_sponsored_message_gen.go │ │ │ ├── tl_sponsored_message_report_option_gen.go │ │ │ ├── tl_sponsored_message_report_option_slices_gen.go │ │ │ ├── tl_sponsored_message_slices_gen.go │ │ │ ├── tl_sponsored_peer_gen.go │ │ │ ├── tl_sponsored_peer_slices_gen.go │ │ │ ├── tl_star_gift_attribute_counter_gen.go │ │ │ ├── tl_star_gift_attribute_counter_slices_gen.go │ │ │ ├── tl_star_gift_attribute_gen.go │ │ │ ├── tl_star_gift_attribute_id_gen.go │ │ │ ├── tl_star_gift_attribute_id_slices_gen.go │ │ │ ├── tl_star_gift_attribute_slices_gen.go │ │ │ ├── tl_star_gift_collection_gen.go │ │ │ ├── tl_star_gift_collection_slices_gen.go │ │ │ ├── tl_star_gift_gen.go │ │ │ ├── tl_star_gift_slices_gen.go │ │ │ ├── tl_star_gift_upgrade_price_gen.go │ │ │ ├── tl_star_gift_upgrade_price_slices_gen.go │ │ │ ├── tl_star_ref_program_gen.go │ │ │ ├── tl_star_ref_program_slices_gen.go │ │ │ ├── tl_stars_amount_gen.go │ │ │ ├── tl_stars_amount_slices_gen.go │ │ │ ├── tl_stars_gift_option_gen.go │ │ │ ├── tl_stars_gift_option_slices_gen.go │ │ │ ├── tl_stars_gift_option_vector_gen.go │ │ │ ├── tl_stars_gift_option_vector_slices_gen.go │ │ │ ├── tl_stars_giveaway_option_gen.go │ │ │ ├── tl_stars_giveaway_option_slices_gen.go │ │ │ ├── tl_stars_giveaway_option_vector_gen.go │ │ │ ├── tl_stars_giveaway_option_vector_slices_gen.go │ │ │ ├── tl_stars_giveaway_winners_option_gen.go │ │ │ ├── tl_stars_giveaway_winners_option_slices_gen.go │ │ │ ├── tl_stars_rating_gen.go │ │ │ ├── tl_stars_rating_slices_gen.go │ │ │ ├── tl_stars_revenue_status_gen.go │ │ │ ├── tl_stars_revenue_status_slices_gen.go │ │ │ ├── tl_stars_subscription_gen.go │ │ │ ├── tl_stars_subscription_pricing_gen.go │ │ │ ├── tl_stars_subscription_pricing_slices_gen.go │ │ │ ├── tl_stars_subscription_slices_gen.go │ │ │ ├── tl_stars_topup_option_gen.go │ │ │ ├── tl_stars_topup_option_slices_gen.go │ │ │ ├── tl_stars_topup_option_vector_gen.go │ │ │ ├── tl_stars_topup_option_vector_slices_gen.go │ │ │ ├── tl_stars_transaction_gen.go │ │ │ ├── tl_stars_transaction_peer_gen.go │ │ │ ├── tl_stars_transaction_peer_slices_gen.go │ │ │ ├── tl_stars_transaction_slices_gen.go │ │ │ ├── tl_stats_abs_value_and_prev_gen.go │ │ │ ├── tl_stats_abs_value_and_prev_slices_gen.go │ │ │ ├── tl_stats_broadcast_stats_gen.go │ │ │ ├── tl_stats_broadcast_stats_slices_gen.go │ │ │ ├── tl_stats_date_range_days_gen.go │ │ │ ├── tl_stats_date_range_days_slices_gen.go │ │ │ ├── tl_stats_get_broadcast_stats_gen.go │ │ │ ├── tl_stats_get_broadcast_stats_slices_gen.go │ │ │ ├── tl_stats_get_megagroup_stats_gen.go │ │ │ ├── tl_stats_get_megagroup_stats_slices_gen.go │ │ │ ├── tl_stats_get_message_public_forwards_gen.go │ │ │ ├── tl_stats_get_message_public_forwards_slices_gen.go │ │ │ ├── tl_stats_get_message_stats_gen.go │ │ │ ├── tl_stats_get_message_stats_slices_gen.go │ │ │ ├── tl_stats_get_story_public_forwards_gen.go │ │ │ ├── tl_stats_get_story_public_forwards_slices_gen.go │ │ │ ├── tl_stats_get_story_stats_gen.go │ │ │ ├── tl_stats_get_story_stats_slices_gen.go │ │ │ ├── tl_stats_graph_gen.go │ │ │ ├── tl_stats_graph_slices_gen.go │ │ │ ├── tl_stats_group_top_admin_gen.go │ │ │ ├── tl_stats_group_top_admin_slices_gen.go │ │ │ ├── tl_stats_group_top_inviter_gen.go │ │ │ ├── tl_stats_group_top_inviter_slices_gen.go │ │ │ ├── tl_stats_group_top_poster_gen.go │ │ │ ├── tl_stats_group_top_poster_slices_gen.go │ │ │ ├── tl_stats_load_async_graph_gen.go │ │ │ ├── tl_stats_load_async_graph_slices_gen.go │ │ │ ├── tl_stats_megagroup_stats_gen.go │ │ │ ├── tl_stats_megagroup_stats_slices_gen.go │ │ │ ├── tl_stats_message_stats_gen.go │ │ │ ├── tl_stats_message_stats_slices_gen.go │ │ │ ├── tl_stats_percent_value_gen.go │ │ │ ├── tl_stats_percent_value_slices_gen.go │ │ │ ├── tl_stats_public_forwards_gen.go │ │ │ ├── tl_stats_public_forwards_slices_gen.go │ │ │ ├── tl_stats_story_stats_gen.go │ │ │ ├── tl_stats_story_stats_slices_gen.go │ │ │ ├── tl_stats_url_gen.go │ │ │ ├── tl_stats_url_slices_gen.go │ │ │ ├── tl_sticker_keyword_gen.go │ │ │ ├── tl_sticker_keyword_slices_gen.go │ │ │ ├── tl_sticker_pack_gen.go │ │ │ ├── tl_sticker_pack_slices_gen.go │ │ │ ├── tl_sticker_set_covered_class_vector_gen.go │ │ │ ├── tl_sticker_set_covered_class_vector_slices_gen.go │ │ │ ├── tl_sticker_set_covered_gen.go │ │ │ ├── tl_sticker_set_covered_slices_gen.go │ │ │ ├── tl_sticker_set_gen.go │ │ │ ├── tl_sticker_set_slices_gen.go │ │ │ ├── tl_stickers_add_sticker_to_set_gen.go │ │ │ ├── tl_stickers_add_sticker_to_set_slices_gen.go │ │ │ ├── tl_stickers_change_sticker_gen.go │ │ │ ├── tl_stickers_change_sticker_position_gen.go │ │ │ ├── tl_stickers_change_sticker_position_slices_gen.go │ │ │ ├── tl_stickers_change_sticker_slices_gen.go │ │ │ ├── tl_stickers_check_short_name_gen.go │ │ │ ├── tl_stickers_check_short_name_slices_gen.go │ │ │ ├── tl_stickers_create_sticker_set_gen.go │ │ │ ├── tl_stickers_create_sticker_set_slices_gen.go │ │ │ ├── tl_stickers_delete_sticker_set_gen.go │ │ │ ├── tl_stickers_delete_sticker_set_slices_gen.go │ │ │ ├── tl_stickers_remove_sticker_from_set_gen.go │ │ │ ├── tl_stickers_remove_sticker_from_set_slices_gen.go │ │ │ ├── tl_stickers_rename_sticker_set_gen.go │ │ │ ├── tl_stickers_rename_sticker_set_slices_gen.go │ │ │ ├── tl_stickers_replace_sticker_gen.go │ │ │ ├── tl_stickers_replace_sticker_slices_gen.go │ │ │ ├── tl_stickers_set_sticker_set_thumb_gen.go │ │ │ ├── tl_stickers_set_sticker_set_thumb_slices_gen.go │ │ │ ├── tl_stickers_suggest_short_name_gen.go │ │ │ ├── tl_stickers_suggest_short_name_slices_gen.go │ │ │ ├── tl_stickers_suggested_short_name_gen.go │ │ │ ├── tl_stickers_suggested_short_name_slices_gen.go │ │ │ ├── tl_storage_file_type_gen.go │ │ │ ├── tl_storage_file_type_slices_gen.go │ │ │ ├── tl_stories_activate_stealth_mode_gen.go │ │ │ ├── tl_stories_activate_stealth_mode_slices_gen.go │ │ │ ├── tl_stories_albums_gen.go │ │ │ ├── tl_stories_albums_slices_gen.go │ │ │ ├── tl_stories_all_stories_gen.go │ │ │ ├── tl_stories_all_stories_slices_gen.go │ │ │ ├── tl_stories_can_send_story_count_gen.go │ │ │ ├── tl_stories_can_send_story_count_slices_gen.go │ │ │ ├── tl_stories_can_send_story_gen.go │ │ │ ├── tl_stories_can_send_story_slices_gen.go │ │ │ ├── tl_stories_create_album_gen.go │ │ │ ├── tl_stories_create_album_slices_gen.go │ │ │ ├── tl_stories_delete_album_gen.go │ │ │ ├── tl_stories_delete_album_slices_gen.go │ │ │ ├── tl_stories_delete_stories_gen.go │ │ │ ├── tl_stories_delete_stories_slices_gen.go │ │ │ ├── tl_stories_edit_story_gen.go │ │ │ ├── tl_stories_edit_story_slices_gen.go │ │ │ ├── tl_stories_export_story_link_gen.go │ │ │ ├── tl_stories_export_story_link_slices_gen.go │ │ │ ├── tl_stories_found_stories_gen.go │ │ │ ├── tl_stories_found_stories_slices_gen.go │ │ │ ├── tl_stories_get_album_stories_gen.go │ │ │ ├── tl_stories_get_album_stories_slices_gen.go │ │ │ ├── tl_stories_get_albums_gen.go │ │ │ ├── tl_stories_get_albums_slices_gen.go │ │ │ ├── tl_stories_get_all_read_peer_stories_gen.go │ │ │ ├── tl_stories_get_all_read_peer_stories_slices_gen.go │ │ │ ├── tl_stories_get_all_stories_gen.go │ │ │ ├── tl_stories_get_all_stories_slices_gen.go │ │ │ ├── tl_stories_get_chats_to_send_gen.go │ │ │ ├── tl_stories_get_chats_to_send_slices_gen.go │ │ │ ├── tl_stories_get_peer_max_ids_gen.go │ │ │ ├── tl_stories_get_peer_max_ids_slices_gen.go │ │ │ ├── tl_stories_get_peer_stories_gen.go │ │ │ ├── tl_stories_get_peer_stories_slices_gen.go │ │ │ ├── tl_stories_get_pinned_stories_gen.go │ │ │ ├── tl_stories_get_pinned_stories_slices_gen.go │ │ │ ├── tl_stories_get_stories_archive_gen.go │ │ │ ├── tl_stories_get_stories_archive_slices_gen.go │ │ │ ├── tl_stories_get_stories_by_id_gen.go │ │ │ ├── tl_stories_get_stories_by_id_slices_gen.go │ │ │ ├── tl_stories_get_stories_views_gen.go │ │ │ ├── tl_stories_get_stories_views_slices_gen.go │ │ │ ├── tl_stories_get_story_reactions_list_gen.go │ │ │ ├── tl_stories_get_story_reactions_list_slices_gen.go │ │ │ ├── tl_stories_get_story_views_list_gen.go │ │ │ ├── tl_stories_get_story_views_list_slices_gen.go │ │ │ ├── tl_stories_increment_story_views_gen.go │ │ │ ├── tl_stories_increment_story_views_slices_gen.go │ │ │ ├── tl_stories_peer_stories_gen.go │ │ │ ├── tl_stories_peer_stories_slices_gen.go │ │ │ ├── tl_stories_read_stories_gen.go │ │ │ ├── tl_stories_read_stories_slices_gen.go │ │ │ ├── tl_stories_reorder_albums_gen.go │ │ │ ├── tl_stories_reorder_albums_slices_gen.go │ │ │ ├── tl_stories_report_gen.go │ │ │ ├── tl_stories_report_slices_gen.go │ │ │ ├── tl_stories_search_posts_gen.go │ │ │ ├── tl_stories_search_posts_slices_gen.go │ │ │ ├── tl_stories_send_reaction_gen.go │ │ │ ├── tl_stories_send_reaction_slices_gen.go │ │ │ ├── tl_stories_send_story_gen.go │ │ │ ├── tl_stories_send_story_slices_gen.go │ │ │ ├── tl_stories_stealth_mode_gen.go │ │ │ ├── tl_stories_stealth_mode_slices_gen.go │ │ │ ├── tl_stories_stories_gen.go │ │ │ ├── tl_stories_stories_slices_gen.go │ │ │ ├── tl_stories_story_reactions_list_gen.go │ │ │ ├── tl_stories_story_reactions_list_slices_gen.go │ │ │ ├── tl_stories_story_views_gen.go │ │ │ ├── tl_stories_story_views_list_gen.go │ │ │ ├── tl_stories_story_views_list_slices_gen.go │ │ │ ├── tl_stories_story_views_slices_gen.go │ │ │ ├── tl_stories_toggle_all_stories_hidden_gen.go │ │ │ ├── tl_stories_toggle_all_stories_hidden_slices_gen.go │ │ │ ├── tl_stories_toggle_peer_stories_hidden_gen.go │ │ │ ├── tl_stories_toggle_peer_stories_hidden_slices_gen.go │ │ │ ├── tl_stories_toggle_pinned_gen.go │ │ │ ├── tl_stories_toggle_pinned_slices_gen.go │ │ │ ├── tl_stories_toggle_pinned_to_top_gen.go │ │ │ ├── tl_stories_toggle_pinned_to_top_slices_gen.go │ │ │ ├── tl_stories_update_album_gen.go │ │ │ ├── tl_stories_update_album_slices_gen.go │ │ │ ├── tl_story_album_gen.go │ │ │ ├── tl_story_album_slices_gen.go │ │ │ ├── tl_story_fwd_header_gen.go │ │ │ ├── tl_story_fwd_header_slices_gen.go │ │ │ ├── tl_story_item_gen.go │ │ │ ├── tl_story_item_slices_gen.go │ │ │ ├── tl_story_reaction_gen.go │ │ │ ├── tl_story_reaction_slices_gen.go │ │ │ ├── tl_story_view_gen.go │ │ │ ├── tl_story_view_slices_gen.go │ │ │ ├── tl_story_views_gen.go │ │ │ ├── tl_story_views_slices_gen.go │ │ │ ├── tl_string_gen.go │ │ │ ├── tl_string_slices_gen.go │ │ │ ├── tl_suggested_post_gen.go │ │ │ ├── tl_suggested_post_slices_gen.go │ │ │ ├── tl_test_use_config_simple_gen.go │ │ │ ├── tl_test_use_config_simple_slices_gen.go │ │ │ ├── tl_test_use_error_gen.go │ │ │ ├── tl_test_use_error_slices_gen.go │ │ │ ├── tl_text_with_entities_gen.go │ │ │ ├── tl_text_with_entities_slices_gen.go │ │ │ ├── tl_theme_gen.go │ │ │ ├── tl_theme_settings_gen.go │ │ │ ├── tl_theme_settings_slices_gen.go │ │ │ ├── tl_theme_slices_gen.go │ │ │ ├── tl_timezone_gen.go │ │ │ ├── tl_timezone_slices_gen.go │ │ │ ├── tl_todo_completion_gen.go │ │ │ ├── tl_todo_completion_slices_gen.go │ │ │ ├── tl_todo_item_gen.go │ │ │ ├── tl_todo_item_slices_gen.go │ │ │ ├── tl_todo_list_gen.go │ │ │ ├── tl_todo_list_slices_gen.go │ │ │ ├── tl_top_peer_category_gen.go │ │ │ ├── tl_top_peer_category_peers_gen.go │ │ │ ├── tl_top_peer_category_peers_slices_gen.go │ │ │ ├── tl_top_peer_category_slices_gen.go │ │ │ ├── tl_top_peer_gen.go │ │ │ ├── tl_top_peer_slices_gen.go │ │ │ ├── tl_true_gen.go │ │ │ ├── tl_true_slices_gen.go │ │ │ ├── tl_update_gen.go │ │ │ ├── tl_update_slices_gen.go │ │ │ ├── tl_updates_channel_difference_gen.go │ │ │ ├── tl_updates_channel_difference_slices_gen.go │ │ │ ├── tl_updates_classifier_gen.go │ │ │ ├── tl_updates_difference_gen.go │ │ │ ├── tl_updates_difference_slices_gen.go │ │ │ ├── tl_updates_gen.go │ │ │ ├── tl_updates_get_channel_difference_gen.go │ │ │ ├── tl_updates_get_channel_difference_slices_gen.go │ │ │ ├── tl_updates_get_difference_gen.go │ │ │ ├── tl_updates_get_difference_slices_gen.go │ │ │ ├── tl_updates_get_state_gen.go │ │ │ ├── tl_updates_get_state_slices_gen.go │ │ │ ├── tl_updates_slices_gen.go │ │ │ ├── tl_updates_state_gen.go │ │ │ ├── tl_updates_state_slices_gen.go │ │ │ ├── tl_upload_cdn_file_gen.go │ │ │ ├── tl_upload_cdn_file_slices_gen.go │ │ │ ├── tl_upload_file_gen.go │ │ │ ├── tl_upload_file_slices_gen.go │ │ │ ├── tl_upload_get_cdn_file_gen.go │ │ │ ├── tl_upload_get_cdn_file_hashes_gen.go │ │ │ ├── tl_upload_get_cdn_file_hashes_slices_gen.go │ │ │ ├── tl_upload_get_cdn_file_slices_gen.go │ │ │ ├── tl_upload_get_file_gen.go │ │ │ ├── tl_upload_get_file_hashes_gen.go │ │ │ ├── tl_upload_get_file_hashes_slices_gen.go │ │ │ ├── tl_upload_get_file_slices_gen.go │ │ │ ├── tl_upload_get_web_file_gen.go │ │ │ ├── tl_upload_get_web_file_slices_gen.go │ │ │ ├── tl_upload_reupload_cdn_file_gen.go │ │ │ ├── tl_upload_reupload_cdn_file_slices_gen.go │ │ │ ├── tl_upload_save_big_file_part_gen.go │ │ │ ├── tl_upload_save_big_file_part_slices_gen.go │ │ │ ├── tl_upload_save_file_part_gen.go │ │ │ ├── tl_upload_save_file_part_slices_gen.go │ │ │ ├── tl_upload_web_file_gen.go │ │ │ ├── tl_upload_web_file_slices_gen.go │ │ │ ├── tl_url_auth_result_gen.go │ │ │ ├── tl_url_auth_result_slices_gen.go │ │ │ ├── tl_user_class_vector_gen.go │ │ │ ├── tl_user_class_vector_slices_gen.go │ │ │ ├── tl_user_full_gen.go │ │ │ ├── tl_user_full_slices_gen.go │ │ │ ├── tl_user_gen.go │ │ │ ├── tl_user_profile_photo_gen.go │ │ │ ├── tl_user_profile_photo_slices_gen.go │ │ │ ├── tl_user_slices_gen.go │ │ │ ├── tl_user_status_gen.go │ │ │ ├── tl_user_status_slices_gen.go │ │ │ ├── tl_username_gen.go │ │ │ ├── tl_username_slices_gen.go │ │ │ ├── tl_users_get_full_user_gen.go │ │ │ ├── tl_users_get_full_user_slices_gen.go │ │ │ ├── tl_users_get_requirements_to_contact_gen.go │ │ │ ├── tl_users_get_requirements_to_contact_slices_gen.go │ │ │ ├── tl_users_get_saved_music_by_id_gen.go │ │ │ ├── tl_users_get_saved_music_by_id_slices_gen.go │ │ │ ├── tl_users_get_saved_music_gen.go │ │ │ ├── tl_users_get_saved_music_slices_gen.go │ │ │ ├── tl_users_get_users_gen.go │ │ │ ├── tl_users_get_users_slices_gen.go │ │ │ ├── tl_users_saved_music_gen.go │ │ │ ├── tl_users_saved_music_slices_gen.go │ │ │ ├── tl_users_set_secure_value_errors_gen.go │ │ │ ├── tl_users_set_secure_value_errors_slices_gen.go │ │ │ ├── tl_users_suggest_birthday_gen.go │ │ │ ├── tl_users_suggest_birthday_slices_gen.go │ │ │ ├── tl_users_user_full_gen.go │ │ │ ├── tl_users_user_full_slices_gen.go │ │ │ ├── tl_users_users_gen.go │ │ │ ├── tl_users_users_slices_gen.go │ │ │ ├── tl_video_size_gen.go │ │ │ ├── tl_video_size_slices_gen.go │ │ │ ├── tl_wall_paper_class_vector_gen.go │ │ │ ├── tl_wall_paper_class_vector_slices_gen.go │ │ │ ├── tl_wall_paper_gen.go │ │ │ ├── tl_wall_paper_settings_gen.go │ │ │ ├── tl_wall_paper_settings_slices_gen.go │ │ │ ├── tl_wall_paper_slices_gen.go │ │ │ ├── tl_web_authorization_gen.go │ │ │ ├── tl_web_authorization_slices_gen.go │ │ │ ├── tl_web_document_gen.go │ │ │ ├── tl_web_document_slices_gen.go │ │ │ ├── tl_web_page_attribute_gen.go │ │ │ ├── tl_web_page_attribute_slices_gen.go │ │ │ ├── tl_web_page_gen.go │ │ │ ├── tl_web_page_slices_gen.go │ │ │ ├── tl_web_view_message_sent_gen.go │ │ │ ├── tl_web_view_message_sent_slices_gen.go │ │ │ ├── tl_web_view_result_url_gen.go │ │ │ └── tl_web_view_result_url_slices_gen.go │ │ │ ├── tgerr │ │ │ ├── error.go │ │ │ └── flood_wait.go │ │ │ ├── tmap │ │ │ ├── constructor.go │ │ │ └── tmap.go │ │ │ ├── transport │ │ │ ├── codec.go │ │ │ ├── connection.go │ │ │ ├── detect_codec.go │ │ │ ├── doc.go │ │ │ ├── listener.go │ │ │ ├── obfuscated.go │ │ │ ├── once_close.go │ │ │ ├── protocol.go │ │ │ └── websocket.go │ │ │ └── wsutil │ │ │ ├── conn.go │ │ │ └── doc.go │ ├── grpc-ecosystem │ │ └── go-grpc-middleware │ │ │ └── v2 │ │ │ ├── COPYRIGHT │ │ │ ├── LICENSE │ │ │ └── metadata │ │ │ ├── doc.go │ │ │ ├── metadata.go │ │ │ └── single_key.go │ ├── jackc │ │ ├── pgpassfile │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pgpass.go │ │ ├── pgservicefile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pgservicefile.go │ │ ├── pgx │ │ │ └── v5 │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── Rakefile │ │ │ │ ├── batch.go │ │ │ │ ├── conn.go │ │ │ │ ├── copy_from.go │ │ │ │ ├── derived_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── extended_query_builder.go │ │ │ │ ├── internal │ │ │ │ ├── iobufpool │ │ │ │ │ └── iobufpool.go │ │ │ │ ├── pgio │ │ │ │ │ ├── README.md │ │ │ │ │ ├── doc.go │ │ │ │ │ └── write.go │ │ │ │ ├── sanitize │ │ │ │ │ ├── benchmmark.sh │ │ │ │ │ └── sanitize.go │ │ │ │ └── stmtcache │ │ │ │ │ ├── lru_cache.go │ │ │ │ │ ├── stmtcache.go │ │ │ │ │ └── unlimited_cache.go │ │ │ │ ├── large_objects.go │ │ │ │ ├── named_args.go │ │ │ │ ├── pgconn │ │ │ │ ├── README.md │ │ │ │ ├── auth_scram.go │ │ │ │ ├── config.go │ │ │ │ ├── ctxwatch │ │ │ │ │ └── context_watcher.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_windows.go │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ │ └── bgreader │ │ │ │ │ │ └── bgreader.go │ │ │ │ ├── krb5.go │ │ │ │ └── pgconn.go │ │ │ │ ├── pgproto3 │ │ │ │ ├── README.md │ │ │ │ ├── authentication_cleartext_password.go │ │ │ │ ├── authentication_gss.go │ │ │ │ ├── authentication_gss_continue.go │ │ │ │ ├── authentication_md5_password.go │ │ │ │ ├── authentication_ok.go │ │ │ │ ├── authentication_sasl.go │ │ │ │ ├── authentication_sasl_continue.go │ │ │ │ ├── authentication_sasl_final.go │ │ │ │ ├── backend.go │ │ │ │ ├── backend_key_data.go │ │ │ │ ├── big_endian.go │ │ │ │ ├── bind.go │ │ │ │ ├── bind_complete.go │ │ │ │ ├── cancel_request.go │ │ │ │ ├── chunkreader.go │ │ │ │ ├── close.go │ │ │ │ ├── close_complete.go │ │ │ │ ├── command_complete.go │ │ │ │ ├── copy_both_response.go │ │ │ │ ├── copy_data.go │ │ │ │ ├── copy_done.go │ │ │ │ ├── copy_fail.go │ │ │ │ ├── copy_in_response.go │ │ │ │ ├── copy_out_response.go │ │ │ │ ├── data_row.go │ │ │ │ ├── describe.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty_query_response.go │ │ │ │ ├── error_response.go │ │ │ │ ├── execute.go │ │ │ │ ├── flush.go │ │ │ │ ├── frontend.go │ │ │ │ ├── function_call.go │ │ │ │ ├── function_call_response.go │ │ │ │ ├── gss_enc_request.go │ │ │ │ ├── gss_response.go │ │ │ │ ├── no_data.go │ │ │ │ ├── notice_response.go │ │ │ │ ├── notification_response.go │ │ │ │ ├── parameter_description.go │ │ │ │ ├── parameter_status.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_complete.go │ │ │ │ ├── password_message.go │ │ │ │ ├── pgproto3.go │ │ │ │ ├── portal_suspended.go │ │ │ │ ├── query.go │ │ │ │ ├── ready_for_query.go │ │ │ │ ├── row_description.go │ │ │ │ ├── sasl_initial_response.go │ │ │ │ ├── sasl_response.go │ │ │ │ ├── ssl_request.go │ │ │ │ ├── startup_message.go │ │ │ │ ├── sync.go │ │ │ │ ├── terminate.go │ │ │ │ └── trace.go │ │ │ │ ├── pgtype │ │ │ │ ├── array.go │ │ │ │ ├── array_codec.go │ │ │ │ ├── bits.go │ │ │ │ ├── bool.go │ │ │ │ ├── box.go │ │ │ │ ├── builtin_wrappers.go │ │ │ │ ├── bytea.go │ │ │ │ ├── circle.go │ │ │ │ ├── composite.go │ │ │ │ ├── convert.go │ │ │ │ ├── date.go │ │ │ │ ├── doc.go │ │ │ │ ├── enum_codec.go │ │ │ │ ├── float4.go │ │ │ │ ├── float8.go │ │ │ │ ├── hstore.go │ │ │ │ ├── inet.go │ │ │ │ ├── int.go │ │ │ │ ├── int.go.erb │ │ │ │ ├── int_test.go.erb │ │ │ │ ├── integration_benchmark_test.go.erb │ │ │ │ ├── integration_benchmark_test_gen.sh │ │ │ │ ├── interval.go │ │ │ │ ├── json.go │ │ │ │ ├── jsonb.go │ │ │ │ ├── line.go │ │ │ │ ├── lseg.go │ │ │ │ ├── ltree.go │ │ │ │ ├── macaddr.go │ │ │ │ ├── multirange.go │ │ │ │ ├── numeric.go │ │ │ │ ├── path.go │ │ │ │ ├── pgtype.go │ │ │ │ ├── pgtype_default.go │ │ │ │ ├── point.go │ │ │ │ ├── polygon.go │ │ │ │ ├── qchar.go │ │ │ │ ├── range.go │ │ │ │ ├── range_codec.go │ │ │ │ ├── record_codec.go │ │ │ │ ├── register_default_pg_types.go │ │ │ │ ├── register_default_pg_types_disabled.go │ │ │ │ ├── text.go │ │ │ │ ├── text_format_only_codec.go │ │ │ │ ├── tid.go │ │ │ │ ├── time.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamptz.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint64.go │ │ │ │ ├── uuid.go │ │ │ │ └── xml.go │ │ │ │ ├── pgxpool │ │ │ │ ├── batch_results.go │ │ │ │ ├── conn.go │ │ │ │ ├── doc.go │ │ │ │ ├── pool.go │ │ │ │ ├── rows.go │ │ │ │ ├── stat.go │ │ │ │ ├── tracer.go │ │ │ │ └── tx.go │ │ │ │ ├── rows.go │ │ │ │ ├── stdlib │ │ │ │ └── sql.go │ │ │ │ ├── tracer.go │ │ │ │ ├── tx.go │ │ │ │ └── values.go │ │ └── puddle │ │ │ └── v2 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── internal │ │ │ └── genstack │ │ │ │ ├── gen_stack.go │ │ │ │ └── stack.go │ │ │ ├── log.go │ │ │ ├── nanotime.go │ │ │ ├── pool.go │ │ │ └── resource_list.go │ ├── jinzhu │ │ ├── inflection │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── inflections.go │ │ │ └── wercker.yml │ │ └── now │ │ │ ├── Guardfile │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ ├── now.go │ │ │ └── time.go │ ├── jmoiron │ │ └── sqlx │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bind.go │ │ │ ├── doc.go │ │ │ ├── named.go │ │ │ ├── named_context.go │ │ │ ├── reflectx │ │ │ ├── README.md │ │ │ └── reflect.go │ │ │ ├── sqlx.go │ │ │ └── sqlx_context.go │ ├── joho │ │ └── godotenv │ │ │ ├── .gitignore │ │ │ ├── LICENCE │ │ │ ├── README.md │ │ │ ├── godotenv.go │ │ │ └── parser.go │ ├── klauspost │ │ ├── compress │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── compressible.go │ │ │ ├── flate │ │ │ │ ├── deflate.go │ │ │ │ ├── dict_decoder.go │ │ │ │ ├── fast_encoder.go │ │ │ │ ├── huffman_bit_writer.go │ │ │ │ ├── huffman_code.go │ │ │ │ ├── huffman_sortByFreq.go │ │ │ │ ├── huffman_sortByLiteral.go │ │ │ │ ├── inflate.go │ │ │ │ ├── inflate_gen.go │ │ │ │ ├── level1.go │ │ │ │ ├── level2.go │ │ │ │ ├── level3.go │ │ │ │ ├── level4.go │ │ │ │ ├── level5.go │ │ │ │ ├── level6.go │ │ │ │ ├── matchlen_generic.go │ │ │ │ ├── regmask_amd64.go │ │ │ │ ├── regmask_other.go │ │ │ │ ├── stateless.go │ │ │ │ └── token.go │ │ │ ├── fse │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ └── fse.go │ │ │ ├── gen.sh │ │ │ ├── gzip │ │ │ │ ├── gunzip.go │ │ │ │ └── gzip.go │ │ │ ├── huff0 │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── compress.go │ │ │ │ ├── decompress.go │ │ │ │ ├── decompress_amd64.go │ │ │ │ ├── decompress_amd64.s │ │ │ │ ├── decompress_generic.go │ │ │ │ └── huff0.go │ │ │ ├── internal │ │ │ │ ├── cpuinfo │ │ │ │ │ ├── cpuinfo.go │ │ │ │ │ ├── cpuinfo_amd64.go │ │ │ │ │ └── cpuinfo_amd64.s │ │ │ │ ├── le │ │ │ │ │ ├── le.go │ │ │ │ │ ├── unsafe_disabled.go │ │ │ │ │ └── unsafe_enabled.go │ │ │ │ ├── race │ │ │ │ │ ├── norace.go │ │ │ │ │ └── race.go │ │ │ │ └── snapref │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── decode_other.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_other.go │ │ │ │ │ └── snappy.go │ │ │ ├── s2 │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── decode_amd64.s │ │ │ │ ├── decode_arm64.s │ │ │ │ ├── decode_asm.go │ │ │ │ ├── decode_other.go │ │ │ │ ├── dict.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_all.go │ │ │ │ ├── encode_amd64.go │ │ │ │ ├── encode_best.go │ │ │ │ ├── encode_better.go │ │ │ │ ├── encode_go.go │ │ │ │ ├── encodeblock_amd64.go │ │ │ │ ├── encodeblock_amd64.s │ │ │ │ ├── index.go │ │ │ │ ├── lz4convert.go │ │ │ │ ├── lz4sconvert.go │ │ │ │ ├── reader.go │ │ │ │ ├── s2.go │ │ │ │ └── writer.go │ │ │ ├── s2sx.mod │ │ │ ├── s2sx.sum │ │ │ ├── snappy │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ └── snappy.go │ │ │ ├── zlib │ │ │ │ ├── reader.go │ │ │ │ └── writer.go │ │ │ └── zstd │ │ │ │ ├── README.md │ │ │ │ ├── bitreader.go │ │ │ │ ├── bitwriter.go │ │ │ │ ├── blockdec.go │ │ │ │ ├── blockenc.go │ │ │ │ ├── blocktype_string.go │ │ │ │ ├── bytebuf.go │ │ │ │ ├── bytereader.go │ │ │ │ ├── decodeheader.go │ │ │ │ ├── decoder.go │ │ │ │ ├── decoder_options.go │ │ │ │ ├── dict.go │ │ │ │ ├── enc_base.go │ │ │ │ ├── enc_best.go │ │ │ │ ├── enc_better.go │ │ │ │ ├── enc_dfast.go │ │ │ │ ├── enc_fast.go │ │ │ │ ├── encoder.go │ │ │ │ ├── encoder_options.go │ │ │ │ ├── framedec.go │ │ │ │ ├── frameenc.go │ │ │ │ ├── fse_decoder.go │ │ │ │ ├── fse_decoder_amd64.go │ │ │ │ ├── fse_decoder_amd64.s │ │ │ │ ├── fse_decoder_generic.go │ │ │ │ ├── fse_encoder.go │ │ │ │ ├── fse_predefined.go │ │ │ │ ├── hash.go │ │ │ │ ├── history.go │ │ │ │ ├── internal │ │ │ │ └── xxhash │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── xxhash.go │ │ │ │ │ ├── xxhash_amd64.s │ │ │ │ │ ├── xxhash_arm64.s │ │ │ │ │ ├── xxhash_asm.go │ │ │ │ │ ├── xxhash_other.go │ │ │ │ │ └── xxhash_safe.go │ │ │ │ ├── matchlen_amd64.go │ │ │ │ ├── matchlen_amd64.s │ │ │ │ ├── matchlen_generic.go │ │ │ │ ├── seqdec.go │ │ │ │ ├── seqdec_amd64.go │ │ │ │ ├── seqdec_amd64.s │ │ │ │ ├── seqdec_generic.go │ │ │ │ ├── seqenc.go │ │ │ │ ├── simple_go124.go │ │ │ │ ├── snappy.go │ │ │ │ ├── zip.go │ │ │ │ └── zstd.go │ │ ├── cpuid │ │ │ └── v2 │ │ │ │ ├── .gitignore │ │ │ │ ├── .goreleaser.yml │ │ │ │ ├── CONTRIBUTING.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cpuid.go │ │ │ │ ├── cpuid_386.s │ │ │ │ ├── cpuid_amd64.s │ │ │ │ ├── cpuid_arm64.s │ │ │ │ ├── detect_arm64.go │ │ │ │ ├── detect_ref.go │ │ │ │ ├── detect_x86.go │ │ │ │ ├── featureid_string.go │ │ │ │ ├── os_darwin_arm64.go │ │ │ │ ├── os_linux_arm64.go │ │ │ │ ├── os_other_arm64.go │ │ │ │ ├── os_safe_linux_arm64.go │ │ │ │ ├── os_unsafe_linux_arm64.go │ │ │ │ └── test-architectures.sh │ │ └── crc32 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── crc32.go │ │ │ ├── crc32_amd64.go │ │ │ ├── crc32_amd64.s │ │ │ ├── crc32_arm64.go │ │ │ ├── crc32_arm64.s │ │ │ ├── crc32_generic.go │ │ │ ├── crc32_loong64.go │ │ │ ├── crc32_loong64.s │ │ │ ├── crc32_otherarch.go │ │ │ ├── crc32_ppc64le.go │ │ │ ├── crc32_ppc64le.s │ │ │ ├── crc32_s390x.go │ │ │ ├── crc32_s390x.s │ │ │ ├── crc32_table_ppc64le.s │ │ │ └── gen.go │ ├── kr │ │ ├── pretty │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── diff.go │ │ │ ├── formatter.go │ │ │ ├── pretty.go │ │ │ └── zero.go │ │ └── text │ │ │ ├── License │ │ │ ├── Readme │ │ │ ├── doc.go │ │ │ ├── indent.go │ │ │ └── wrap.go │ ├── lib │ │ └── pq │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── TESTS.md │ │ │ ├── array.go │ │ │ ├── buf.go │ │ │ ├── conn.go │ │ │ ├── conn_go115.go │ │ │ ├── conn_go18.go │ │ │ ├── connector.go │ │ │ ├── copy.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── error.go │ │ │ ├── krb.go │ │ │ ├── notice.go │ │ │ ├── notify.go │ │ │ ├── oid │ │ │ ├── doc.go │ │ │ └── types.go │ │ │ ├── rows.go │ │ │ ├── scram │ │ │ └── scram.go │ │ │ ├── ssl.go │ │ │ ├── ssl_permissions.go │ │ │ ├── ssl_windows.go │ │ │ ├── url.go │ │ │ ├── user_other.go │ │ │ ├── user_posix.go │ │ │ ├── user_windows.go │ │ │ └── uuid.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ │ ├── go-runewidth │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchstat.txt │ │ │ ├── new.txt │ │ │ ├── old.txt │ │ │ ├── runewidth.go │ │ │ ├── runewidth_appengine.go │ │ │ ├── runewidth_js.go │ │ │ ├── runewidth_posix.go │ │ │ ├── runewidth_table.go │ │ │ └── runewidth_windows.go │ │ └── go-sqlite3 │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── callback.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── sqlite3-binding.c │ │ │ ├── sqlite3-binding.h │ │ │ ├── sqlite3.go │ │ │ ├── sqlite3_context.go │ │ │ ├── sqlite3_func_crypt.go │ │ │ ├── sqlite3_go18.go │ │ │ ├── sqlite3_libsqlite3.go │ │ │ ├── sqlite3_load_extension.go │ │ │ ├── sqlite3_load_extension_omit.go │ │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ │ ├── sqlite3_opt_app_armor.go │ │ │ ├── sqlite3_opt_column_metadata.go │ │ │ ├── sqlite3_opt_foreign_keys.go │ │ │ ├── sqlite3_opt_fts5.go │ │ │ ├── sqlite3_opt_icu.go │ │ │ ├── sqlite3_opt_introspect.go │ │ │ ├── sqlite3_opt_math_functions.go │ │ │ ├── sqlite3_opt_os_trace.go │ │ │ ├── sqlite3_opt_preupdate.go │ │ │ ├── sqlite3_opt_preupdate_hook.go │ │ │ ├── sqlite3_opt_preupdate_omit.go │ │ │ ├── sqlite3_opt_secure_delete.go │ │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ │ ├── sqlite3_opt_serialize.go │ │ │ ├── sqlite3_opt_serialize_omit.go │ │ │ ├── sqlite3_opt_stat4.go │ │ │ ├── sqlite3_opt_unlock_notify.c │ │ │ ├── sqlite3_opt_unlock_notify.go │ │ │ ├── sqlite3_opt_userauth.go │ │ │ ├── sqlite3_opt_userauth_omit.go │ │ │ ├── sqlite3_opt_vacuum_full.go │ │ │ ├── sqlite3_opt_vacuum_incr.go │ │ │ ├── sqlite3_opt_vtable.go │ │ │ ├── sqlite3_other.go │ │ │ ├── sqlite3_solaris.go │ │ │ ├── sqlite3_trace.go │ │ │ ├── sqlite3_type.go │ │ │ ├── sqlite3_usleep_windows.go │ │ │ ├── sqlite3_windows.go │ │ │ ├── sqlite3ext.h │ │ │ └── static_mock.go │ ├── mdp │ │ └── qrterminal │ │ │ └── v3 │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yaml │ │ │ ├── CHANGELOG.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── oryxBuildBinary │ │ │ └── qrterminal.go │ ├── microsoft │ │ └── go-mssqldb │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── accesstokenconnector.go │ │ │ ├── aecmk │ │ │ ├── error.go │ │ │ └── keyprovider.go │ │ │ ├── appveyor.yml │ │ │ ├── auth_unix.go │ │ │ ├── auth_windows.go │ │ │ ├── buf.go │ │ │ ├── bulkcopy.go │ │ │ ├── bulkcopy_sql.go │ │ │ ├── columnencryptionkey.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── encrypt.go │ │ │ ├── error.go │ │ │ ├── fedauth.go │ │ │ ├── integratedauth │ │ │ ├── auth.go │ │ │ ├── integratedauthenticator.go │ │ │ ├── ntlm │ │ │ │ ├── ntlm.go │ │ │ │ └── provider.go │ │ │ └── winsspi │ │ │ │ ├── provider.go │ │ │ │ └── winsspi.go │ │ │ ├── internal │ │ │ ├── cp │ │ │ │ ├── charset.go │ │ │ │ ├── collation.go │ │ │ │ ├── cp1250.go │ │ │ │ ├── cp1251.go │ │ │ │ ├── cp1252.go │ │ │ │ ├── cp1253.go │ │ │ │ ├── cp1254.go │ │ │ │ ├── cp1255.go │ │ │ │ ├── cp1256.go │ │ │ │ ├── cp1257.go │ │ │ │ ├── cp1258.go │ │ │ │ ├── cp437.go │ │ │ │ ├── cp850.go │ │ │ │ ├── cp874.go │ │ │ │ ├── cp932.go │ │ │ │ ├── cp936.go │ │ │ │ ├── cp949.go │ │ │ │ └── cp950.go │ │ │ ├── decimal │ │ │ │ └── decimal.go │ │ │ ├── github.com │ │ │ │ └── swisscom │ │ │ │ │ └── mssql-always-encrypted │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── pkg │ │ │ │ │ ├── algorithms │ │ │ │ │ ├── aead_aes_256_cbc_hmac_sha256.go │ │ │ │ │ └── algorithm.go │ │ │ │ │ ├── crypto │ │ │ │ │ ├── aes_cbc_pkcs5.go │ │ │ │ │ └── utils.go │ │ │ │ │ ├── encryption │ │ │ │ │ └── type.go │ │ │ │ │ ├── keys │ │ │ │ │ ├── aead_aes_256_cbc_hmac_256.go │ │ │ │ │ └── key.go │ │ │ │ │ └── utils │ │ │ │ │ └── utf16.go │ │ │ └── querytext │ │ │ │ └── parser.go │ │ │ ├── log.go │ │ │ ├── msdsn │ │ │ ├── conn_str.go │ │ │ ├── conn_str_go112.go │ │ │ ├── conn_str_go112pre.go │ │ │ ├── conn_str_go115.go │ │ │ ├── conn_str_go115pre.go │ │ │ ├── conn_str_go118.go │ │ │ ├── conn_str_go118pre.go │ │ │ └── extensions.go │ │ │ ├── mssql.go │ │ │ ├── mssql_go110.go │ │ │ ├── mssql_go110pre.go │ │ │ ├── mssql_go118.go │ │ │ ├── mssql_go118pre.go │ │ │ ├── mssql_go19.go │ │ │ ├── mssql_go19pre.go │ │ │ ├── net.go │ │ │ ├── protocol.go │ │ │ ├── protocol_go113.go │ │ │ ├── protocol_go113pre.go │ │ │ ├── quoter.go │ │ │ ├── rpc.go │ │ │ ├── session.go │ │ │ ├── tds.go │ │ │ ├── timezone.go │ │ │ ├── token.go │ │ │ ├── token_string.go │ │ │ ├── tran.go │ │ │ ├── tvp_go19.go │ │ │ ├── types.go │ │ │ ├── ucs22str.go │ │ │ ├── ucs22str_32bit.go │ │ │ ├── uniqueidentifier.go │ │ │ ├── uniqueidentifier_null.go │ │ │ └── version.go │ ├── minio │ │ ├── crc64nvme │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── crc64.go │ │ │ ├── crc64_amd64.go │ │ │ ├── crc64_amd64.s │ │ │ ├── crc64_arm64.go │ │ │ ├── crc64_arm64.s │ │ │ └── crc64_other.go │ │ ├── md5-simd │ │ │ ├── LICENSE │ │ │ ├── LICENSE.Golang │ │ │ ├── README.md │ │ │ ├── block16_amd64.s │ │ │ ├── block8_amd64.s │ │ │ ├── block_amd64.go │ │ │ ├── md5-digest_amd64.go │ │ │ ├── md5-server_amd64.go │ │ │ ├── md5-server_fallback.go │ │ │ ├── md5-util_amd64.go │ │ │ ├── md5.go │ │ │ ├── md5block_amd64.go │ │ │ └── md5block_amd64.s │ │ └── minio-go │ │ │ └── v7 │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CLAUDE.md │ │ │ ├── CNAME │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CREDITS │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── api-append-object.go │ │ │ ├── api-bucket-cors.go │ │ │ ├── api-bucket-encryption.go │ │ │ ├── api-bucket-lifecycle.go │ │ │ ├── api-bucket-notification.go │ │ │ ├── api-bucket-policy.go │ │ │ ├── api-bucket-qos.go │ │ │ ├── api-bucket-replication.go │ │ │ ├── api-bucket-tagging.go │ │ │ ├── api-bucket-versioning.go │ │ │ ├── api-compose-object.go │ │ │ ├── api-copy-object.go │ │ │ ├── api-datatypes.go │ │ │ ├── api-error-response.go │ │ │ ├── api-get-object-acl.go │ │ │ ├── api-get-object-attributes.go │ │ │ ├── api-get-object-file.go │ │ │ ├── api-get-object.go │ │ │ ├── api-get-options.go │ │ │ ├── api-inventory-ext.go │ │ │ ├── api-list.go │ │ │ ├── api-object-legal-hold.go │ │ │ ├── api-object-lock.go │ │ │ ├── api-object-retention.go │ │ │ ├── api-object-tagging.go │ │ │ ├── api-presigned.go │ │ │ ├── api-prompt-object.go │ │ │ ├── api-prompt-options.go │ │ │ ├── api-put-bucket.go │ │ │ ├── api-put-object-common.go │ │ │ ├── api-put-object-fan-out.go │ │ │ ├── api-put-object-file-context.go │ │ │ ├── api-put-object-multipart.go │ │ │ ├── api-put-object-streaming.go │ │ │ ├── api-put-object.go │ │ │ ├── api-putobject-snowball.go │ │ │ ├── api-remove.go │ │ │ ├── api-restore.go │ │ │ ├── api-s3-datatypes.go │ │ │ ├── api-select.go │ │ │ ├── api-stat.go │ │ │ ├── api.go │ │ │ ├── bucket-cache.go │ │ │ ├── checksum.go │ │ │ ├── code_of_conduct.md │ │ │ ├── constants.go │ │ │ ├── core.go │ │ │ ├── create-session.go │ │ │ ├── endpoints.go │ │ │ ├── functional_tests.go │ │ │ ├── hook-reader.go │ │ │ ├── pkg │ │ │ ├── cors │ │ │ │ └── cors.go │ │ │ ├── credentials │ │ │ │ ├── assume_role.go │ │ │ │ ├── chain.go │ │ │ │ ├── config.json.sample │ │ │ │ ├── credentials.go │ │ │ │ ├── credentials.json │ │ │ │ ├── credentials.sample │ │ │ │ ├── doc.go │ │ │ │ ├── env_aws.go │ │ │ │ ├── env_minio.go │ │ │ │ ├── error_response.go │ │ │ │ ├── file_aws_credentials.go │ │ │ │ ├── file_minio_client.go │ │ │ │ ├── iam_aws.go │ │ │ │ ├── signature_type.go │ │ │ │ ├── static.go │ │ │ │ ├── sts_client_grants.go │ │ │ │ ├── sts_custom_identity.go │ │ │ │ ├── sts_ldap_identity.go │ │ │ │ ├── sts_tls_identity.go │ │ │ │ └── sts_web_identity.go │ │ │ ├── encrypt │ │ │ │ ├── fips_disabled.go │ │ │ │ ├── fips_enabled.go │ │ │ │ └── server-side.go │ │ │ ├── kvcache │ │ │ │ └── cache.go │ │ │ ├── lifecycle │ │ │ │ └── lifecycle.go │ │ │ ├── notification │ │ │ │ ├── info.go │ │ │ │ └── notification.go │ │ │ ├── replication │ │ │ │ └── replication.go │ │ │ ├── s3utils │ │ │ │ └── utils.go │ │ │ ├── set │ │ │ │ ├── msgp.go │ │ │ │ └── stringset.go │ │ │ ├── signer │ │ │ │ ├── request-signature-streaming-unsigned-trailer.go │ │ │ │ ├── request-signature-streaming.go │ │ │ │ ├── request-signature-v2.go │ │ │ │ ├── request-signature-v4.go │ │ │ │ └── utils.go │ │ │ ├── singleflight │ │ │ │ └── singleflight.go │ │ │ ├── sse │ │ │ │ └── sse.go │ │ │ └── tags │ │ │ │ └── tags.go │ │ │ ├── post-policy.go │ │ │ ├── retry-continous.go │ │ │ ├── retry.go │ │ │ ├── s3-error.go │ │ │ ├── transport.go │ │ │ └── utils.go │ ├── mitchellh │ │ └── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ ├── munnerz │ │ └── goautoneg │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ └── autoneg.go │ ├── nats-io │ │ ├── nats.go │ │ │ ├── .gitignore │ │ │ ├── .golangci.yaml │ │ │ ├── .words │ │ │ ├── .words.readme │ │ │ ├── CODE-OF-CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── dependencies.md │ │ │ ├── dependencies.tpl │ │ │ ├── enc.go │ │ │ ├── encoders │ │ │ │ └── builtin │ │ │ │ │ ├── default_enc.go │ │ │ │ │ ├── gob_enc.go │ │ │ │ │ └── json_enc.go │ │ │ ├── go_test.mod │ │ │ ├── go_test.sum │ │ │ ├── internal │ │ │ │ └── parser │ │ │ │ │ └── parse.go │ │ │ ├── js.go │ │ │ ├── jserrors.go │ │ │ ├── jsm.go │ │ │ ├── kv.go │ │ │ ├── legacy_jetstream.md │ │ │ ├── nats.go │ │ │ ├── nats_iter.go │ │ │ ├── netchan.go │ │ │ ├── object.go │ │ │ ├── parser.go │ │ │ ├── testing_internal.go │ │ │ ├── timer.go │ │ │ ├── util │ │ │ │ └── tls.go │ │ │ └── ws.go │ │ ├── nkeys │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── crc16.go │ │ │ ├── creds_utils.go │ │ │ ├── dependencies.md │ │ │ ├── errors.go │ │ │ ├── keypair.go │ │ │ ├── nkeys.go │ │ │ ├── public.go │ │ │ ├── strkey.go │ │ │ └── xkeys.go │ │ └── nuid │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── GOVERNANCE.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── README.md │ │ │ └── nuid.go │ ├── ogen-go │ │ └── ogen │ │ │ ├── .codecov.yaml │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── conv │ │ │ ├── conv.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ └── time.go │ │ │ ├── dsl.go │ │ │ ├── gen │ │ │ ├── _template │ │ │ │ ├── cfg.tmpl │ │ │ │ ├── client.tmpl │ │ │ │ ├── defaults.tmpl │ │ │ │ ├── defaults │ │ │ │ │ └── set.tmpl │ │ │ │ ├── faker.tmpl │ │ │ │ ├── faker │ │ │ │ │ ├── faker.tmpl │ │ │ │ │ ├── faker_alias.tmpl │ │ │ │ │ ├── faker_enum.tmpl │ │ │ │ │ ├── faker_generic.tmpl │ │ │ │ │ ├── faker_map.tmpl │ │ │ │ │ ├── faker_struct.tmpl │ │ │ │ │ ├── faker_sum.tmpl │ │ │ │ │ └── fakers.tmpl │ │ │ │ ├── globals.tmpl │ │ │ │ ├── godoc.tmpl │ │ │ │ ├── handlers.tmpl │ │ │ │ ├── header.tmpl │ │ │ │ ├── interfaces.tmpl │ │ │ │ ├── json.tmpl │ │ │ │ ├── json │ │ │ │ │ ├── decode.tmpl │ │ │ │ │ ├── encode.tmpl │ │ │ │ │ ├── encoders.tmpl │ │ │ │ │ ├── encoders_alias.tmpl │ │ │ │ │ ├── encoders_enum.tmpl │ │ │ │ │ ├── encoders_generic.tmpl │ │ │ │ │ ├── encoders_map.tmpl │ │ │ │ │ ├── encoders_struct.tmpl │ │ │ │ │ ├── encoders_sum.tmpl │ │ │ │ │ └── stdmarshaler.tmpl │ │ │ │ ├── jsonschema.tmpl │ │ │ │ ├── labeler.tmpl │ │ │ │ ├── middleware.tmpl │ │ │ │ ├── operations.tmpl │ │ │ │ ├── parameter_decode.tmpl │ │ │ │ ├── parameter_encode.tmpl │ │ │ │ ├── parameters.tmpl │ │ │ │ ├── request_decode.tmpl │ │ │ │ ├── request_encode.tmpl │ │ │ │ ├── response_decode.tmpl │ │ │ │ ├── response_encode.tmpl │ │ │ │ ├── router.tmpl │ │ │ │ ├── schema │ │ │ │ │ ├── alias.tmpl │ │ │ │ │ ├── enum.tmpl │ │ │ │ │ ├── generic.tmpl │ │ │ │ │ ├── map.tmpl │ │ │ │ │ ├── schema.tmpl │ │ │ │ │ ├── stream.tmpl │ │ │ │ │ ├── struct.tmpl │ │ │ │ │ └── sum.tmpl │ │ │ │ ├── schemas.tmpl │ │ │ │ ├── security.tmpl │ │ │ │ ├── server.tmpl │ │ │ │ ├── servers.tmpl │ │ │ │ ├── test_examples.tmpl │ │ │ │ ├── unimplemented.tmpl │ │ │ │ ├── uri.tmpl │ │ │ │ ├── uri │ │ │ │ │ ├── decode.tmpl │ │ │ │ │ ├── encode.tmpl │ │ │ │ │ ├── encoders.tmpl │ │ │ │ │ ├── encoders_map.tmpl │ │ │ │ │ └── encoders_struct.tmpl │ │ │ │ └── validators.tmpl │ │ │ ├── errors.go │ │ │ ├── features.go │ │ │ ├── fix.go │ │ │ ├── gen.go │ │ │ ├── gen_contents.go │ │ │ ├── gen_headers.go │ │ │ ├── gen_operation.go │ │ │ ├── gen_parameters.go │ │ │ ├── gen_request_body.go │ │ │ ├── gen_responses.go │ │ │ ├── gen_schema.go │ │ │ ├── gen_security.go │ │ │ ├── gen_server.go │ │ │ ├── genctx.go │ │ │ ├── generator.go │ │ │ ├── generics.go │ │ │ ├── genfs │ │ │ │ ├── fmtfs.go │ │ │ │ └── genfs.go │ │ │ ├── imports.go │ │ │ ├── ir │ │ │ │ ├── constructors.go │ │ │ │ ├── default.go │ │ │ │ ├── description.go │ │ │ │ ├── enum.go │ │ │ │ ├── equal.go │ │ │ │ ├── examples.go │ │ │ │ ├── external.go │ │ │ │ ├── faker.go │ │ │ │ ├── field.go │ │ │ │ ├── generics.go │ │ │ │ ├── go.go │ │ │ │ ├── ir.go │ │ │ │ ├── json.go │ │ │ │ ├── media.go │ │ │ │ ├── nil_semantic.go │ │ │ │ ├── operation.go │ │ │ │ ├── panic.go │ │ │ │ ├── params.go │ │ │ │ ├── primitive.go │ │ │ │ ├── recursion.go │ │ │ │ ├── responses.go │ │ │ │ ├── security.go │ │ │ │ ├── server.go │ │ │ │ ├── tag.go │ │ │ │ ├── template_helpers.go │ │ │ │ ├── type.go │ │ │ │ ├── type_features.go │ │ │ │ ├── type_iface.go │ │ │ │ └── validation.go │ │ │ ├── names.go │ │ │ ├── options.go │ │ │ ├── reduce.go │ │ │ ├── route_node.go │ │ │ ├── route_tree.go │ │ │ ├── router.go │ │ │ ├── schema_gen.go │ │ │ ├── schema_gen_primitive.go │ │ │ ├── schema_gen_sum.go │ │ │ ├── schema_transform.go │ │ │ ├── templates.go │ │ │ ├── tstorage.go │ │ │ ├── utils.go │ │ │ ├── walk.go │ │ │ └── write.go │ │ │ ├── go.coverage.sh │ │ │ ├── go.test.sh │ │ │ ├── http │ │ │ ├── errors.go │ │ │ ├── form.go │ │ │ ├── http.go │ │ │ ├── match.go │ │ │ ├── multipart.go │ │ │ └── multipart_file.go │ │ │ ├── internal │ │ │ ├── bitset │ │ │ │ └── bitset.go │ │ │ ├── httpcookie │ │ │ │ ├── httpcookie.go │ │ │ │ └── valid.go │ │ │ ├── naming │ │ │ │ ├── after_dot.go │ │ │ │ ├── capitalize.go │ │ │ │ ├── naming.go │ │ │ │ └── rules.go │ │ │ ├── urlpath │ │ │ │ └── urlpath.go │ │ │ ├── xmaps │ │ │ │ └── xmaps.go │ │ │ └── xslices │ │ │ │ └── xslices.go │ │ │ ├── json │ │ │ ├── decimal.go │ │ │ ├── equal.go │ │ │ ├── external.go │ │ │ ├── float.go │ │ │ ├── int.go │ │ │ ├── ip.go │ │ │ ├── json.go │ │ │ ├── mac.go │ │ │ ├── std_duration.go │ │ │ ├── time.go │ │ │ ├── uint.go │ │ │ ├── unix.go │ │ │ ├── unix_str.go │ │ │ ├── uri.go │ │ │ └── uuid.go │ │ │ ├── jsonpointer │ │ │ ├── errors.go │ │ │ ├── jsonpointer.go │ │ │ ├── resolve_ctx.go │ │ │ └── split.go │ │ │ ├── jsonschema │ │ │ ├── enum.go │ │ │ ├── errors.go │ │ │ ├── extensions.go │ │ │ ├── external.go │ │ │ ├── infer.go │ │ │ ├── num.go │ │ │ ├── parser.go │ │ │ ├── parser_enum.go │ │ │ ├── parser_settings.go │ │ │ ├── raw_custom.go │ │ │ ├── raw_schema.go │ │ │ ├── raw_value.go │ │ │ ├── resolve.go │ │ │ ├── resolver.go │ │ │ ├── schema.go │ │ │ └── utils.go │ │ │ ├── location │ │ │ ├── error.go │ │ │ ├── file.go │ │ │ ├── lines.go │ │ │ ├── location.go │ │ │ ├── locator.go │ │ │ ├── position.go │ │ │ └── print.go │ │ │ ├── middleware │ │ │ ├── internal.go │ │ │ └── middleware.go │ │ │ ├── ogen.go │ │ │ ├── ogenerrors │ │ │ ├── handler.go │ │ │ ├── json.go │ │ │ ├── ogenerrors.go │ │ │ ├── param.go │ │ │ └── security.go │ │ │ ├── ogenregex │ │ │ ├── convert.go │ │ │ └── ogenregex.go │ │ │ ├── openapi │ │ │ ├── Info.go │ │ │ ├── api.go │ │ │ ├── example.go │ │ │ ├── mediatype.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── parser │ │ │ │ ├── errors.go │ │ │ │ ├── expand.go │ │ │ │ ├── parse_components.go │ │ │ │ ├── parse_example.go │ │ │ │ ├── parse_header.go │ │ │ │ ├── parse_info.go │ │ │ │ ├── parse_mediatype.go │ │ │ │ ├── parse_parameter.go │ │ │ │ ├── parse_path_item.go │ │ │ │ ├── parse_request_body.go │ │ │ │ ├── parse_response.go │ │ │ │ ├── parse_schema.go │ │ │ │ ├── parse_security.go │ │ │ │ ├── parse_server.go │ │ │ │ ├── parse_webhook.go │ │ │ │ ├── parser.go │ │ │ │ ├── path_parser.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolver.go │ │ │ │ ├── settings.go │ │ │ │ └── version.go │ │ │ ├── path.go │ │ │ ├── security.go │ │ │ ├── server.go │ │ │ ├── tag.go │ │ │ ├── version.go │ │ │ └── webhook.go │ │ │ ├── otelogen │ │ │ ├── keys.go │ │ │ ├── otelogen.go │ │ │ ├── tracer.go │ │ │ └── version.go │ │ │ ├── schema.go │ │ │ ├── schema_backcomp.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── uri │ │ │ ├── README.md │ │ │ ├── constval.go │ │ │ ├── cookie_decoder.go │ │ │ ├── cookie_encoder.go │ │ │ ├── cookie_escape.go │ │ │ ├── cookie_param_decoder.go │ │ │ ├── cookie_param_encoder.go │ │ │ ├── cursor.go │ │ │ ├── doc.go │ │ │ ├── header_decoder.go │ │ │ ├── header_encoder.go │ │ │ ├── header_param_decoder.go │ │ │ ├── header_param_encoder.go │ │ │ ├── interface.go │ │ │ ├── normalize.go │ │ │ ├── object.go │ │ │ ├── path_decoder.go │ │ │ ├── path_encoder.go │ │ │ ├── query_decoder.go │ │ │ ├── query_encoder.go │ │ │ ├── query_param_decoder.go │ │ │ ├── query_param_encoder.go │ │ │ ├── receiver.go │ │ │ └── url.go │ │ │ └── validate │ │ │ ├── array.go │ │ │ ├── decimal.go │ │ │ ├── errors.go │ │ │ ├── float.go │ │ │ ├── int.go │ │ │ ├── object.go │ │ │ ├── ogen.go │ │ │ ├── string.go │ │ │ └── validate.go │ ├── petermattis │ │ └── goid │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── goid.go │ │ │ ├── goid_gccgo.go │ │ │ ├── goid_go1.3.c │ │ │ ├── goid_go1.3.go │ │ │ ├── goid_go1.4.go │ │ │ ├── goid_go1.4.s │ │ │ ├── goid_go1.5.go │ │ │ ├── goid_go1.5.s │ │ │ ├── goid_slow.go │ │ │ ├── runtime_gccgo_go1.8.go │ │ │ ├── runtime_go1.23.go │ │ │ ├── runtime_go1.25.go │ │ │ ├── runtime_go1.5.go │ │ │ ├── runtime_go1.6.go │ │ │ └── runtime_go1.9.go │ ├── philhofer │ │ └── fwd │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── reader.go │ │ │ ├── writer.go │ │ │ ├── writer_appengine.go │ │ │ ├── writer_tinygo.go │ │ │ └── writer_unsafe.go │ ├── pierrec │ │ └── lz4 │ │ │ └── v4 │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── compressing_reader.go │ │ │ ├── internal │ │ │ ├── lz4block │ │ │ │ ├── block.go │ │ │ │ ├── blocks.go │ │ │ │ ├── decode_amd64.s │ │ │ │ ├── decode_arm.s │ │ │ │ ├── decode_arm64.s │ │ │ │ ├── decode_asm.go │ │ │ │ └── decode_other.go │ │ │ ├── lz4errors │ │ │ │ └── errors.go │ │ │ ├── lz4stream │ │ │ │ ├── block.go │ │ │ │ ├── frame.go │ │ │ │ └── frame_gen.go │ │ │ └── xxh32 │ │ │ │ ├── xxh32zero.go │ │ │ │ ├── xxh32zero_arm.go │ │ │ │ ├── xxh32zero_arm.s │ │ │ │ └── xxh32zero_other.go │ │ │ ├── lz4.go │ │ │ ├── options.go │ │ │ ├── options_gen.go │ │ │ ├── reader.go │ │ │ ├── state.go │ │ │ ├── state_gen.go │ │ │ └── writer.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── prometheus │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── build_info_collector.go │ │ │ │ ├── collector.go │ │ │ │ ├── collectorfunc.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── get_pid.go │ │ │ │ ├── get_pid_gopherjs.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── go_collector_go116.go │ │ │ │ ├── go_collector_latest.go │ │ │ │ ├── histogram.go │ │ │ │ ├── internal │ │ │ │ ├── almost_equal.go │ │ │ │ ├── difflib.go │ │ │ │ ├── go_collector_options.go │ │ │ │ ├── go_runtime_metrics.go │ │ │ │ └── metric.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── num_threads.go │ │ │ │ ├── num_threads_gopherjs.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── process_collector_darwin.go │ │ │ │ ├── process_collector_mem_cgo_darwin.c │ │ │ │ ├── process_collector_mem_cgo_darwin.go │ │ │ │ ├── process_collector_mem_nocgo_darwin.go │ │ │ │ ├── process_collector_not_supported.go │ │ │ │ ├── process_collector_procfsenabled.go │ │ │ │ ├── process_collector_windows.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ ├── vec.go │ │ │ │ ├── vnext.go │ │ │ │ └── wrap.go │ │ ├── client_model │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── openmetrics_create.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── labelset_string.go │ │ │ │ ├── metadata.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ ├── value.go │ │ │ │ ├── value_float.go │ │ │ │ ├── value_histogram.go │ │ │ │ └── value_type.go │ │ └── procfs │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── Makefile.common │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── arp.go │ │ │ ├── buddyinfo.go │ │ │ ├── cmdline.go │ │ │ ├── cpuinfo.go │ │ │ ├── cpuinfo_armx.go │ │ │ ├── cpuinfo_loong64.go │ │ │ ├── cpuinfo_mipsx.go │ │ │ ├── cpuinfo_others.go │ │ │ ├── cpuinfo_ppcx.go │ │ │ ├── cpuinfo_riscvx.go │ │ │ ├── cpuinfo_s390x.go │ │ │ ├── cpuinfo_x86.go │ │ │ ├── crypto.go │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── fs_statfs_notype.go │ │ │ ├── fs_statfs_type.go │ │ │ ├── fscache.go │ │ │ ├── internal │ │ │ ├── fs │ │ │ │ └── fs.go │ │ │ └── util │ │ │ │ ├── parse.go │ │ │ │ ├── readfile.go │ │ │ │ ├── sysreadfile.go │ │ │ │ ├── sysreadfile_compat.go │ │ │ │ └── valueparser.go │ │ │ ├── ipvs.go │ │ │ ├── kernel_hung.go │ │ │ ├── kernel_random.go │ │ │ ├── loadavg.go │ │ │ ├── mdstat.go │ │ │ ├── meminfo.go │ │ │ ├── mountinfo.go │ │ │ ├── mountstats.go │ │ │ ├── net_conntrackstat.go │ │ │ ├── net_dev.go │ │ │ ├── net_dev_snmp6.go │ │ │ ├── net_ip_socket.go │ │ │ ├── net_protocols.go │ │ │ ├── net_route.go │ │ │ ├── net_sockstat.go │ │ │ ├── net_softnet.go │ │ │ ├── net_tcp.go │ │ │ ├── net_tls_stat.go │ │ │ ├── net_udp.go │ │ │ ├── net_unix.go │ │ │ ├── net_wireless.go │ │ │ ├── net_xfrm.go │ │ │ ├── netstat.go │ │ │ ├── nfnetlink_queue.go │ │ │ ├── proc.go │ │ │ ├── proc_cgroup.go │ │ │ ├── proc_cgroups.go │ │ │ ├── proc_environ.go │ │ │ ├── proc_fdinfo.go │ │ │ ├── proc_interrupts.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_maps.go │ │ │ ├── proc_netstat.go │ │ │ ├── proc_ns.go │ │ │ ├── proc_psi.go │ │ │ ├── proc_smaps.go │ │ │ ├── proc_snmp.go │ │ │ ├── proc_snmp6.go │ │ │ ├── proc_stat.go │ │ │ ├── proc_statm.go │ │ │ ├── proc_status.go │ │ │ ├── proc_sys.go │ │ │ ├── schedstat.go │ │ │ ├── slab.go │ │ │ ├── softirqs.go │ │ │ ├── stat.go │ │ │ ├── swaps.go │ │ │ ├── thread.go │ │ │ ├── ttar │ │ │ ├── vm.go │ │ │ └── zoneinfo.go │ ├── rogpeppe │ │ └── go-internal │ │ │ ├── LICENSE │ │ │ └── fmtsort │ │ │ ├── mapelem.go │ │ │ └── sort.go │ ├── rs │ │ ├── xid │ │ │ ├── .appveyor.yml │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── error.go │ │ │ ├── hostid_darwin.go │ │ │ ├── hostid_fallback.go │ │ │ ├── hostid_freebsd.go │ │ │ ├── hostid_linux.go │ │ │ ├── hostid_windows.go │ │ │ └── id.go │ │ └── zerolog │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array.go │ │ │ ├── console.go │ │ │ ├── context.go │ │ │ ├── ctx.go │ │ │ ├── encoder.go │ │ │ ├── encoder_cbor.go │ │ │ ├── encoder_json.go │ │ │ ├── event.go │ │ │ ├── example.jsonl │ │ │ ├── fields.go │ │ │ ├── globals.go │ │ │ ├── go112.go │ │ │ ├── hook.go │ │ │ ├── internal │ │ │ ├── cbor │ │ │ │ ├── README.md │ │ │ │ ├── base.go │ │ │ │ ├── cbor.go │ │ │ │ ├── decode_stream.go │ │ │ │ ├── string.go │ │ │ │ ├── time.go │ │ │ │ └── types.go │ │ │ └── json │ │ │ │ ├── base.go │ │ │ │ ├── bytes.go │ │ │ │ ├── string.go │ │ │ │ ├── time.go │ │ │ │ └── types.go │ │ │ ├── log.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── not_go112.go │ │ │ ├── pretty.png │ │ │ ├── sampler.go │ │ │ ├── syslog.go │ │ │ └── writer.go │ ├── rugatling │ │ └── go-openai │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── assistant.go │ │ │ ├── audio.go │ │ │ ├── chat.go │ │ │ ├── chat_stream.go │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── completion.go │ │ │ ├── config.go │ │ │ ├── edits.go │ │ │ ├── embeddings.go │ │ │ ├── engines.go │ │ │ ├── error.go │ │ │ ├── files.go │ │ │ ├── fine_tunes.go │ │ │ ├── fine_tuning_job.go │ │ │ ├── image.go │ │ │ ├── internal │ │ │ ├── error_accumulator.go │ │ │ ├── form_builder.go │ │ │ ├── marshaller.go │ │ │ ├── request_builder.go │ │ │ └── unmarshaler.go │ │ │ ├── messages.go │ │ │ ├── models.go │ │ │ ├── moderation.go │ │ │ ├── ratelimit.go │ │ │ ├── run.go │ │ │ ├── speech.go │ │ │ ├── stream.go │ │ │ ├── stream_reader.go │ │ │ └── thread.go │ ├── sashabaranov │ │ └── go-openai │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assistant.go │ │ │ ├── audio.go │ │ │ ├── batch.go │ │ │ ├── chat.go │ │ │ ├── chat_stream.go │ │ │ ├── client.go │ │ │ ├── common.go │ │ │ ├── completion.go │ │ │ ├── config.go │ │ │ ├── edits.go │ │ │ ├── embeddings.go │ │ │ ├── engines.go │ │ │ ├── error.go │ │ │ ├── files.go │ │ │ ├── fine_tunes.go │ │ │ ├── fine_tuning_job.go │ │ │ ├── image.go │ │ │ ├── internal │ │ │ ├── error_accumulator.go │ │ │ ├── form_builder.go │ │ │ ├── marshaller.go │ │ │ ├── request_builder.go │ │ │ └── unmarshaler.go │ │ │ ├── jsonschema │ │ │ ├── json.go │ │ │ └── validate.go │ │ │ ├── messages.go │ │ │ ├── models.go │ │ │ ├── moderation.go │ │ │ ├── ratelimit.go │ │ │ ├── reasoning_validator.go │ │ │ ├── run.go │ │ │ ├── speech.go │ │ │ ├── stream.go │ │ │ ├── stream_reader.go │ │ │ ├── thread.go │ │ │ └── vector_store.go │ ├── segmentio │ │ ├── asm │ │ │ ├── LICENSE │ │ │ ├── base64 │ │ │ │ ├── base64.go │ │ │ │ ├── base64_amd64.go │ │ │ │ ├── base64_arm64.go │ │ │ │ ├── base64_asm.go │ │ │ │ ├── base64_default.go │ │ │ │ ├── decode_amd64.go │ │ │ │ ├── decode_amd64.s │ │ │ │ ├── decode_arm64.go │ │ │ │ ├── decode_arm64.s │ │ │ │ ├── encode_amd64.go │ │ │ │ ├── encode_amd64.s │ │ │ │ ├── encode_arm64.go │ │ │ │ └── encode_arm64.s │ │ │ ├── cpu │ │ │ │ ├── arm │ │ │ │ │ └── arm.go │ │ │ │ ├── arm64 │ │ │ │ │ └── arm64.go │ │ │ │ ├── cpu.go │ │ │ │ ├── cpuid │ │ │ │ │ └── cpuid.go │ │ │ │ └── x86 │ │ │ │ │ └── x86.go │ │ │ └── internal │ │ │ │ └── unsafebytes │ │ │ │ └── unsafebytes.go │ │ └── kafka-go │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── addoffsetstotxn.go │ │ │ ├── addpartitionstotxn.go │ │ │ ├── address.go │ │ │ ├── alterclientquotas.go │ │ │ ├── alterconfigs.go │ │ │ ├── alterpartitionreassignments.go │ │ │ ├── alteruserscramcredentials.go │ │ │ ├── apiversions.go │ │ │ ├── balancer.go │ │ │ ├── batch.go │ │ │ ├── buffer.go │ │ │ ├── client.go │ │ │ ├── commit.go │ │ │ ├── compress │ │ │ ├── compress.go │ │ │ ├── gzip │ │ │ │ └── gzip.go │ │ │ ├── lz4 │ │ │ │ └── lz4.go │ │ │ ├── snappy │ │ │ │ ├── snappy.go │ │ │ │ └── xerial.go │ │ │ └── zstd │ │ │ │ └── zstd.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── consumergroup.go │ │ │ ├── crc32.go │ │ │ ├── createacls.go │ │ │ ├── createpartitions.go │ │ │ ├── createtopics.go │ │ │ ├── deleteacls.go │ │ │ ├── deletegroups.go │ │ │ ├── deletetopics.go │ │ │ ├── describeacls.go │ │ │ ├── describeclientquotas.go │ │ │ ├── describeconfigs.go │ │ │ ├── describegroups.go │ │ │ ├── describeuserscramcredentials.go │ │ │ ├── dialer.go │ │ │ ├── discard.go │ │ │ ├── docker-compose.yml │ │ │ ├── electleaders.go │ │ │ ├── endtxn.go │ │ │ ├── error.go │ │ │ ├── fetch.go │ │ │ ├── findcoordinator.go │ │ │ ├── groupbalancer.go │ │ │ ├── heartbeat.go │ │ │ ├── incrementalalterconfigs.go │ │ │ ├── initproducerid.go │ │ │ ├── joingroup.go │ │ │ ├── kafka.go │ │ │ ├── leavegroup.go │ │ │ ├── listgroups.go │ │ │ ├── listoffset.go │ │ │ ├── listpartitionreassignments.go │ │ │ ├── logger.go │ │ │ ├── message.go │ │ │ ├── message_reader.go │ │ │ ├── metadata.go │ │ │ ├── offsetcommit.go │ │ │ ├── offsetdelete.go │ │ │ ├── offsetfetch.go │ │ │ ├── produce.go │ │ │ ├── protocol.go │ │ │ ├── protocol │ │ │ ├── addoffsetstotxn │ │ │ │ └── addoffsetstotxn.go │ │ │ ├── addpartitionstotxn │ │ │ │ └── addpartitionstotxn.go │ │ │ ├── alterclientquotas │ │ │ │ └── alterclientquotas.go │ │ │ ├── alterconfigs │ │ │ │ └── alterconfigs.go │ │ │ ├── alterpartitionreassignments │ │ │ │ └── alterpartitionreassignments.go │ │ │ ├── alteruserscramcredentials │ │ │ │ └── alteruserscramcredentials.go │ │ │ ├── apiversions │ │ │ │ └── apiversions.go │ │ │ ├── buffer.go │ │ │ ├── cluster.go │ │ │ ├── conn.go │ │ │ ├── consumer │ │ │ │ └── consumer.go │ │ │ ├── createacls │ │ │ │ └── createacls.go │ │ │ ├── createpartitions │ │ │ │ └── createpartitions.go │ │ │ ├── createtopics │ │ │ │ └── createtopics.go │ │ │ ├── decode.go │ │ │ ├── deleteacls │ │ │ │ └── deleteacls.go │ │ │ ├── deletegroups │ │ │ │ └── deletegroups.go │ │ │ ├── deletetopics │ │ │ │ └── deletetopics.go │ │ │ ├── describeacls │ │ │ │ └── describeacls.go │ │ │ ├── describeclientquotas │ │ │ │ └── describeclientquotas.go │ │ │ ├── describeconfigs │ │ │ │ └── describeconfigs.go │ │ │ ├── describegroups │ │ │ │ └── describegroups.go │ │ │ ├── describeuserscramcredentials │ │ │ │ └── describeuserscramcredentials.go │ │ │ ├── electleaders │ │ │ │ └── electleaders.go │ │ │ ├── encode.go │ │ │ ├── endtxn │ │ │ │ └── endtxn.go │ │ │ ├── error.go │ │ │ ├── fetch │ │ │ │ └── fetch.go │ │ │ ├── findcoordinator │ │ │ │ └── findcoordinator.go │ │ │ ├── heartbeat │ │ │ │ └── heartbeat.go │ │ │ ├── incrementalalterconfigs │ │ │ │ └── incrementalalterconfigs.go │ │ │ ├── initproducerid │ │ │ │ └── initproducerid.go │ │ │ ├── joingroup │ │ │ │ └── joingroup.go │ │ │ ├── leavegroup │ │ │ │ └── leavegroup.go │ │ │ ├── listgroups │ │ │ │ └── listgroups.go │ │ │ ├── listoffsets │ │ │ │ └── listoffsets.go │ │ │ ├── listpartitionreassignments │ │ │ │ └── listpartitionreassignments.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── offsetcommit │ │ │ │ └── offsetcommit.go │ │ │ ├── offsetdelete │ │ │ │ └── offsetdelete.go │ │ │ ├── offsetfetch │ │ │ │ └── offsetfetch.go │ │ │ ├── produce │ │ │ │ └── produce.go │ │ │ ├── protocol.go │ │ │ ├── rawproduce │ │ │ │ └── rawproduce.go │ │ │ ├── record.go │ │ │ ├── record_batch.go │ │ │ ├── record_v1.go │ │ │ ├── record_v2.go │ │ │ ├── reflect.go │ │ │ ├── reflect_unsafe.go │ │ │ ├── request.go │ │ │ ├── response.go │ │ │ ├── roundtrip.go │ │ │ ├── saslauthenticate │ │ │ │ └── saslauthenticate.go │ │ │ ├── saslhandshake │ │ │ │ └── saslhandshake.go │ │ │ ├── size.go │ │ │ ├── syncgroup │ │ │ │ └── syncgroup.go │ │ │ └── txnoffsetcommit │ │ │ │ └── txnoffsetcommit.go │ │ │ ├── rawproduce.go │ │ │ ├── read.go │ │ │ ├── reader.go │ │ │ ├── record.go │ │ │ ├── recordbatch.go │ │ │ ├── resolver.go │ │ │ ├── resource.go │ │ │ ├── sasl │ │ │ └── sasl.go │ │ │ ├── saslauthenticate.go │ │ │ ├── saslhandshake.go │ │ │ ├── sizeof.go │ │ │ ├── stats.go │ │ │ ├── syncgroup.go │ │ │ ├── time.go │ │ │ ├── transport.go │ │ │ ├── txnoffsetcommit.go │ │ │ ├── write.go │ │ │ └── writer.go │ ├── shopspring │ │ └── decimal │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const.go │ │ │ ├── decimal-go.go │ │ │ ├── decimal.go │ │ │ └── rounding.go │ ├── stretchr │ │ └── testify │ │ │ ├── LICENSE │ │ │ ├── assert │ │ │ ├── assertion_compare.go │ │ │ ├── assertion_format.go │ │ │ ├── assertion_format.go.tmpl │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertion_order.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── http_assertions.go │ │ │ └── yaml │ │ │ │ ├── yaml_custom.go │ │ │ │ ├── yaml_default.go │ │ │ │ └── yaml_fail.go │ │ │ ├── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ └── requirements.go │ │ │ └── suite │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ ├── stats.go │ │ │ └── suite.go │ ├── tinkoff │ │ └── invest-api-go-sdk │ │ │ ├── LICENSE │ │ │ ├── investgo │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── converters.go │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── instruments.go │ │ │ ├── marketdata.go │ │ │ ├── md_stream.go │ │ │ ├── md_stream_client.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── operations_stream_client.go │ │ │ ├── orders.go │ │ │ ├── orders_stream_client.go │ │ │ ├── portfolio_stream.go │ │ │ ├── positions_stream.go │ │ │ ├── sandbox.go │ │ │ ├── stop_orders.go │ │ │ ├── timer.go │ │ │ ├── trades_stream.go │ │ │ └── users.go │ │ │ ├── proto │ │ │ ├── common.pb.go │ │ │ ├── common.proto │ │ │ ├── custom_methods.go │ │ │ ├── instruments.pb.go │ │ │ ├── instruments.proto │ │ │ ├── instruments_grpc.pb.go │ │ │ ├── marketdata.pb.go │ │ │ ├── marketdata.proto │ │ │ ├── marketdata_grpc.pb.go │ │ │ ├── operations.pb.go │ │ │ ├── operations.proto │ │ │ ├── operations_grpc.pb.go │ │ │ ├── orders.pb.go │ │ │ ├── orders.proto │ │ │ ├── orders_grpc.pb.go │ │ │ ├── sandbox.pb.go │ │ │ ├── sandbox.proto │ │ │ ├── sandbox_grpc.pb.go │ │ │ ├── stoporders.pb.go │ │ │ ├── stoporders.proto │ │ │ ├── stoporders_grpc.pb.go │ │ │ ├── users.pb.go │ │ │ ├── users.proto │ │ │ └── users_grpc.pb.go │ │ │ └── retry │ │ │ ├── backoff.go │ │ │ ├── doc.go │ │ │ ├── options.go │ │ │ └── retry.go │ ├── tinylib │ │ └── msgp │ │ │ ├── LICENSE │ │ │ └── msgp │ │ │ ├── advise_linux.go │ │ │ ├── advise_other.go │ │ │ ├── autoshim.go │ │ │ ├── circular.go │ │ │ ├── defs.go │ │ │ ├── edit.go │ │ │ ├── elsize.go │ │ │ ├── elsize_default.go │ │ │ ├── elsize_tinygo.go │ │ │ ├── errors.go │ │ │ ├── errors_default.go │ │ │ ├── errors_tinygo.go │ │ │ ├── extension.go │ │ │ ├── file.go │ │ │ ├── file_port.go │ │ │ ├── integers.go │ │ │ ├── iter.go │ │ │ ├── json.go │ │ │ ├── json_bytes.go │ │ │ ├── number.go │ │ │ ├── purego.go │ │ │ ├── read.go │ │ │ ├── read_bytes.go │ │ │ ├── size.go │ │ │ ├── unsafe.go │ │ │ ├── write.go │ │ │ └── write_bytes.go │ ├── toorop │ │ └── go-dkim │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dkim.go │ │ │ ├── dkimHeader.go │ │ │ ├── errors.go │ │ │ ├── pubKeyRep.go │ │ │ └── watch │ ├── valyala │ │ ├── bytebufferpool │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytebuffer.go │ │ │ ├── doc.go │ │ │ └── pool.go │ │ └── fasthttp │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── TODO │ │ │ ├── args.go │ │ │ ├── b2s.go │ │ │ ├── brotli.go │ │ │ ├── bytesconv.go │ │ │ ├── bytesconv_32.go │ │ │ ├── bytesconv_64.go │ │ │ ├── bytesconv_table.go │ │ │ ├── client.go │ │ │ ├── coarsetime.go │ │ │ ├── compress.go │ │ │ ├── cookie.go │ │ │ ├── doc.go │ │ │ ├── fasthttputil │ │ │ ├── doc.go │ │ │ ├── inmemory_listener.go │ │ │ ├── pipeconns.go │ │ │ └── s2b.go │ │ │ ├── fs.go │ │ │ ├── header.go │ │ │ ├── headers.go │ │ │ ├── headerscanner.go │ │ │ ├── http.go │ │ │ ├── ipv6.go │ │ │ ├── lbclient.go │ │ │ ├── methods.go │ │ │ ├── nocopy.go │ │ │ ├── peripconn.go │ │ │ ├── reuseport │ │ │ ├── LICENSE │ │ │ ├── reuseport.go │ │ │ ├── reuseport_aix.go │ │ │ ├── reuseport_error.go │ │ │ ├── reuseport_solaris.go │ │ │ └── reuseport_windows.go │ │ │ ├── round2_32.go │ │ │ ├── round2_64.go │ │ │ ├── s2b.go │ │ │ ├── server.go │ │ │ ├── stackless │ │ │ ├── doc.go │ │ │ ├── func.go │ │ │ ├── s2b.go │ │ │ └── writer.go │ │ │ ├── status.go │ │ │ ├── stream.go │ │ │ ├── streaming.go │ │ │ ├── strings.go │ │ │ ├── tcpdialer.go │ │ │ ├── tcplisten │ │ │ ├── README.md │ │ │ ├── socket.go │ │ │ ├── socket_darwin.go │ │ │ ├── socket_other.go │ │ │ ├── socket_zos_s390x.go │ │ │ ├── tcplisten.go │ │ │ ├── tcplisten_js_wasm.go │ │ │ ├── tcplisten_linux.go │ │ │ └── tcplisten_other.go │ │ │ ├── timer.go │ │ │ ├── tls.go │ │ │ ├── uri.go │ │ │ ├── uri_unix.go │ │ │ ├── uri_windows.go │ │ │ ├── userdata.go │ │ │ ├── workerpool.go │ │ │ └── zstd.go │ ├── vektah │ │ └── gqlparser │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ └── ast │ │ │ ├── argmap.go │ │ │ ├── collections.go │ │ │ ├── comment.go │ │ │ ├── decode.go │ │ │ ├── definition.go │ │ │ ├── directive.go │ │ │ ├── document.go │ │ │ ├── dumper.go │ │ │ ├── fragment.go │ │ │ ├── operation.go │ │ │ ├── path.go │ │ │ ├── selection.go │ │ │ ├── source.go │ │ │ ├── type.go │ │ │ └── value.go │ └── xhit │ │ └── go-simple-mail │ │ └── v2 │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── attach.go │ │ ├── attach_old.go │ │ ├── auth.go │ │ ├── email.go │ │ ├── header.go │ │ ├── message.go │ │ └── smtp.go ├── go.etcd.io │ └── bbolt │ │ ├── .gitignore │ │ ├── .go-version │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── OWNERS │ │ ├── README.md │ │ ├── bolt_aix.go │ │ ├── bolt_android.go │ │ ├── bolt_linux.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_solaris.go │ │ ├── bolt_unix.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── compact.go │ │ ├── cursor.go │ │ ├── db.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors │ │ └── errors.go │ │ ├── internal │ │ ├── common │ │ │ ├── bolt_386.go │ │ │ ├── bolt_amd64.go │ │ │ ├── bolt_arm.go │ │ │ ├── bolt_arm64.go │ │ │ ├── bolt_loong64.go │ │ │ ├── bolt_mips64x.go │ │ │ ├── bolt_mipsx.go │ │ │ ├── bolt_ppc.go │ │ │ ├── bolt_ppc64.go │ │ │ ├── bolt_ppc64le.go │ │ │ ├── bolt_riscv64.go │ │ │ ├── bolt_s390x.go │ │ │ ├── bucket.go │ │ │ ├── inode.go │ │ │ ├── meta.go │ │ │ ├── page.go │ │ │ ├── types.go │ │ │ ├── unsafe.go │ │ │ ├── utils.go │ │ │ └── verify.go │ │ └── freelist │ │ │ ├── array.go │ │ │ ├── freelist.go │ │ │ ├── hashmap.go │ │ │ └── shared.go │ │ ├── logger.go │ │ ├── mlock_unix.go │ │ ├── mlock_windows.go │ │ ├── node.go │ │ ├── tx.go │ │ └── tx_check.go ├── go.mau.fi │ ├── libsignal │ │ ├── LICENSE │ │ ├── cipher │ │ │ ├── Cbc.go │ │ │ └── Cipher.go │ │ ├── ecc │ │ │ ├── Curve.go │ │ │ ├── DjbECPublicKey.go │ │ │ ├── DkbECPrivateKey.go │ │ │ ├── Doc.go │ │ │ ├── ECKeyPair.go │ │ │ ├── ECPrivateKey.go │ │ │ ├── ECPublicKey.go │ │ │ └── SignCurve25519.go │ │ ├── groups │ │ │ ├── GroupCipher.go │ │ │ ├── GroupSessionBuilder.go │ │ │ ├── ratchet │ │ │ │ ├── Doc.go │ │ │ │ ├── SenderChainKey.go │ │ │ │ └── SenderMessageKey.go │ │ │ └── state │ │ │ │ ├── record │ │ │ │ ├── Doc.go │ │ │ │ ├── SenderKeyRecord.go │ │ │ │ └── SenderKeyState.go │ │ │ │ └── store │ │ │ │ ├── Doc.go │ │ │ │ └── SenderKeyStore.go │ │ ├── kdf │ │ │ └── HKDF.go │ │ ├── keys │ │ │ ├── chain │ │ │ │ └── ChainKey.go │ │ │ ├── identity │ │ │ │ ├── IdentityKey.go │ │ │ │ └── IdentityKeyPair.go │ │ │ ├── message │ │ │ │ └── MessageKey.go │ │ │ ├── prekey │ │ │ │ └── PreKeyBundle.go │ │ │ ├── root │ │ │ │ └── RootKey.go │ │ │ └── session │ │ │ │ ├── DerivedSecrets.go │ │ │ │ └── Pair.go │ │ ├── logger │ │ │ ├── DefaultLogger.go │ │ │ └── Logger.go │ │ ├── protocol │ │ │ ├── CiphertextMessage.go │ │ │ ├── Doc.go │ │ │ ├── PreKeySignalMessage.go │ │ │ ├── SenderKeyDistributionMessage.go │ │ │ ├── SenderKeyMessage.go │ │ │ ├── SenderKeyName.go │ │ │ ├── SignalMessage.go │ │ │ └── SignalProtocolAddress.go │ │ ├── ratchet │ │ │ ├── Ratchet.go │ │ │ ├── ReceiverParameters.go │ │ │ ├── SenderParameters.go │ │ │ └── SymmetricParameters.go │ │ ├── serialize │ │ │ ├── FingerprintProtocol.pb.go │ │ │ ├── FingerprintProtocol.proto │ │ │ ├── JSONSerializer.go │ │ │ ├── LocalStorageProtocol.pb.go │ │ │ ├── LocalStorageProtocol.proto │ │ │ ├── ProtoBufferSerializer.go │ │ │ ├── Serializer.go │ │ │ ├── WhisperTextProtocol.pb.go │ │ │ └── WhisperTextProtocol.proto │ │ ├── session │ │ │ ├── Session.go │ │ │ └── SessionCipher.go │ │ ├── signalerror │ │ │ └── errors.go │ │ ├── state │ │ │ ├── record │ │ │ │ ├── ChainState.go │ │ │ │ ├── Doc.go │ │ │ │ ├── PendingKeyExchangeState.go │ │ │ │ ├── PendingPreKeyState.go │ │ │ │ ├── PreKeyRecord.go │ │ │ │ ├── SessionRecord.go │ │ │ │ ├── SessionState.go │ │ │ │ ├── SignedPreKeyRecord.go │ │ │ │ └── UnacknowledgedPreKey.go │ │ │ └── store │ │ │ │ ├── Doc.go │ │ │ │ ├── IdentityKeyStore.go │ │ │ │ ├── MessageKeyStore.go │ │ │ │ ├── PreKeyStore.go │ │ │ │ ├── SessionStore.go │ │ │ │ ├── SignalProtocolStore.go │ │ │ │ └── SignedPreKeyStore.go │ │ └── util │ │ │ ├── bytehelper │ │ │ └── ByteHelper.go │ │ │ ├── errorhelper │ │ │ └── ErrorHelper.go │ │ │ ├── keyhelper │ │ │ └── KeyHelper.go │ │ │ ├── medium │ │ │ └── Medium.go │ │ │ └── optional │ │ │ └── Integer.go │ ├── util │ │ ├── LICENSE │ │ ├── dbutil │ │ │ ├── connlog.go │ │ │ ├── database.go │ │ │ ├── iter.go │ │ │ ├── json.go │ │ │ ├── log.go │ │ │ ├── massinsert.go │ │ │ ├── module.go │ │ │ ├── queryhelper.go │ │ │ ├── reflectscan.go │ │ │ ├── transaction.go │ │ │ ├── upgrades.go │ │ │ └── upgradetable.go │ │ ├── exbytes │ │ │ ├── string.go │ │ │ └── writer.go │ │ ├── exerrors │ │ │ ├── dualerror.go │ │ │ └── must.go │ │ ├── exhttp │ │ │ ├── cors.go │ │ │ ├── handleerrors.go │ │ │ ├── json.go │ │ │ ├── middleware.go │ │ │ └── networkerror.go │ │ ├── exmaps │ │ │ ├── clone.go │ │ │ └── set.go │ │ ├── exslices │ │ │ ├── cast.go │ │ │ ├── chunk.go │ │ │ ├── deduplicate.go │ │ │ ├── delete.go │ │ │ ├── diff.go │ │ │ └── stack.go │ │ ├── exstrings │ │ │ └── stringutil.go │ │ ├── exsync │ │ │ ├── event.go │ │ │ ├── returnonce.go │ │ │ ├── ringbuffer.go │ │ │ ├── syncmap.go │ │ │ └── syncset.go │ │ ├── exzerolog │ │ │ ├── callermarshal.go │ │ │ ├── defaults.go │ │ │ ├── generics.go │ │ │ └── writer.go │ │ ├── fallocate │ │ │ ├── doc.go │ │ │ ├── fallocate_darwin.go │ │ │ ├── fallocate_linux.go │ │ │ └── fallocate_unknown.go │ │ ├── jsontime │ │ │ ├── duration.go │ │ │ ├── helpers.go │ │ │ ├── integer.go │ │ │ └── string.go │ │ ├── ptr │ │ │ └── ptr.go │ │ ├── random │ │ │ ├── bytes.go │ │ │ └── string.go │ │ └── retryafter │ │ │ └── retryafter.go │ └── whatsmeow │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .pre-commit-config.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appstate.go │ │ ├── appstate │ │ ├── decode.go │ │ ├── encode.go │ │ ├── errors.go │ │ ├── hash.go │ │ ├── keys.go │ │ └── lthash │ │ │ └── lthash.go │ │ ├── argo │ │ ├── argo-wire-type-store.argo │ │ ├── argo.go │ │ └── name-to-queryids.json │ │ ├── armadillomessage.go │ │ ├── binary │ │ ├── attrs.go │ │ ├── decoder.go │ │ ├── encoder.go │ │ ├── errors.go │ │ ├── node.go │ │ ├── proto │ │ │ ├── doc.go │ │ │ └── legacy.go │ │ ├── token │ │ │ └── token.go │ │ ├── unpack.go │ │ └── xml.go │ │ ├── broadcast.go │ │ ├── call.go │ │ ├── client.go │ │ ├── connectionevents.go │ │ ├── download-to-file.go │ │ ├── download.go │ │ ├── errors.go │ │ ├── group.go │ │ ├── handshake.go │ │ ├── internals.go │ │ ├── keepalive.go │ │ ├── mediaconn.go │ │ ├── mediaretry.go │ │ ├── message.go │ │ ├── msgsecret.go │ │ ├── newsletter.go │ │ ├── notification.go │ │ ├── pair-code.go │ │ ├── pair.go │ │ ├── prekeys.go │ │ ├── presence.go │ │ ├── privacysettings.go │ │ ├── proto │ │ ├── .gitignore │ │ ├── armadilloutil │ │ │ └── decode.go │ │ ├── extra.go │ │ ├── instamadilloAddMessage │ │ │ ├── InstamadilloAddMessage.pb.go │ │ │ ├── InstamadilloAddMessage.proto │ │ │ └── extra.go │ │ ├── instamadilloCoreTypeActionLog │ │ │ ├── InstamadilloCoreTypeActionLog.pb.go │ │ │ └── InstamadilloCoreTypeActionLog.proto │ │ ├── instamadilloCoreTypeAdminMessage │ │ │ ├── InstamadilloCoreTypeAdminMessage.pb.go │ │ │ └── InstamadilloCoreTypeAdminMessage.proto │ │ ├── instamadilloCoreTypeCollection │ │ │ ├── InstamadilloCoreTypeCollection.pb.go │ │ │ └── InstamadilloCoreTypeCollection.proto │ │ ├── instamadilloCoreTypeLink │ │ │ ├── InstamadilloCoreTypeLink.pb.go │ │ │ └── InstamadilloCoreTypeLink.proto │ │ ├── instamadilloCoreTypeMedia │ │ │ ├── InstamadilloCoreTypeMedia.pb.go │ │ │ └── InstamadilloCoreTypeMedia.proto │ │ ├── instamadilloCoreTypeText │ │ │ ├── InstamadilloCoreTypeText.pb.go │ │ │ └── InstamadilloCoreTypeText.proto │ │ ├── instamadilloDeleteMessage │ │ │ ├── InstamadilloDeleteMessage.pb.go │ │ │ ├── InstamadilloDeleteMessage.proto │ │ │ └── extra.go │ │ ├── instamadilloSupplementMessage │ │ │ ├── InstamadilloSupplementMessage.pb.go │ │ │ ├── InstamadilloSupplementMessage.proto │ │ │ └── extra.go │ │ ├── instamadilloTransportPayload │ │ │ ├── InstamadilloTransportPayload.pb.go │ │ │ └── InstamadilloTransportPayload.proto │ │ ├── instamadilloXmaContentRef │ │ │ ├── InstamadilloXmaContentRef.pb.go │ │ │ └── InstamadilloXmaContentRef.proto │ │ ├── waAICommon │ │ │ ├── WAAICommon.pb.go │ │ │ └── WAAICommon.proto │ │ ├── waAdv │ │ │ ├── WAAdv.pb.go │ │ │ └── WAAdv.proto │ │ ├── waArmadilloApplication │ │ │ ├── WAArmadilloApplication.pb.go │ │ │ ├── WAArmadilloApplication.proto │ │ │ └── extra.go │ │ ├── waArmadilloXMA │ │ │ ├── WAArmadilloXMA.pb.go │ │ │ └── WAArmadilloXMA.proto │ │ ├── waBotMetadata │ │ │ ├── WABotMetadata.pb.go │ │ │ └── WABotMetadata.proto │ │ ├── waCert │ │ │ ├── WACert.pb.go │ │ │ └── WACert.proto │ │ ├── waChatLockSettings │ │ │ ├── WAWebProtobufsChatLockSettings.pb.go │ │ │ └── WAWebProtobufsChatLockSettings.proto │ │ ├── waCommon │ │ │ ├── WACommon.pb.go │ │ │ └── WACommon.proto │ │ ├── waCompanionReg │ │ │ ├── WACompanionReg.pb.go │ │ │ └── WACompanionReg.proto │ │ ├── waConsumerApplication │ │ │ ├── WAConsumerApplication.pb.go │ │ │ ├── WAConsumerApplication.proto │ │ │ └── extra.go │ │ ├── waDeviceCapabilities │ │ │ ├── WAWebProtobufsDeviceCapabilities.pb.go │ │ │ └── WAWebProtobufsDeviceCapabilities.proto │ │ ├── waE2E │ │ │ ├── WAWebProtobufsE2E.pb.go │ │ │ └── WAWebProtobufsE2E.proto │ │ ├── waEphemeral │ │ │ ├── WAWebProtobufsEphemeral.pb.go │ │ │ └── WAWebProtobufsEphemeral.proto │ │ ├── waHistorySync │ │ │ ├── WAWebProtobufsHistorySync.pb.go │ │ │ └── WAWebProtobufsHistorySync.proto │ │ ├── waLidMigrationSyncPayload │ │ │ ├── WAWebProtobufLidMigrationSyncPayload.pb.go │ │ │ └── WAWebProtobufLidMigrationSyncPayload.proto │ │ ├── waMediaTransport │ │ │ ├── WAMediaTransport.pb.go │ │ │ └── WAMediaTransport.proto │ │ ├── waMmsRetry │ │ │ ├── WAMmsRetry.pb.go │ │ │ └── WAMmsRetry.proto │ │ ├── waMsgApplication │ │ │ ├── WAMsgApplication.pb.go │ │ │ ├── WAMsgApplication.proto │ │ │ └── extra.go │ │ ├── waMsgTransport │ │ │ ├── WAMsgTransport.pb.go │ │ │ ├── WAMsgTransport.proto │ │ │ └── extra.go │ │ ├── waMultiDevice │ │ │ ├── WAMultiDevice.pb.go │ │ │ ├── WAMultiDevice.proto │ │ │ └── extra.go │ │ ├── waQuickPromotionSurfaces │ │ │ ├── WAWebProtobufsQuickPromotionSurfaces.pb.go │ │ │ └── WAWebProtobufsQuickPromotionSurfaces.proto │ │ ├── waServerSync │ │ │ ├── WAServerSync.pb.go │ │ │ └── WAServerSync.proto │ │ ├── waStatusAttributions │ │ │ ├── WAStatusAttributions.pb.go │ │ │ └── WAStatusAttributions.proto │ │ ├── waSyncAction │ │ │ ├── WAWebProtobufSyncAction.pb.go │ │ │ └── WAWebProtobufSyncAction.proto │ │ ├── waUserPassword │ │ │ ├── WAWebProtobufsUserPassword.pb.go │ │ │ └── WAWebProtobufsUserPassword.proto │ │ ├── waVnameCert │ │ │ ├── WAWebProtobufsVnameCert.pb.go │ │ │ └── WAWebProtobufsVnameCert.proto │ │ ├── waWa6 │ │ │ ├── WAWebProtobufsWa6.pb.go │ │ │ └── WAWebProtobufsWa6.proto │ │ └── waWeb │ │ │ ├── WAWebProtobufsWeb.pb.go │ │ │ └── WAWebProtobufsWeb.proto │ │ ├── push.go │ │ ├── qrchan.go │ │ ├── receipt.go │ │ ├── reportingfields.json │ │ ├── reportingtoken.go │ │ ├── request.go │ │ ├── retry.go │ │ ├── send.go │ │ ├── sendfb.go │ │ ├── socket │ │ ├── constants.go │ │ ├── framesocket.go │ │ ├── noisehandshake.go │ │ └── noisesocket.go │ │ ├── store │ │ ├── clientpayload.go │ │ ├── noop.go │ │ ├── sessioncache.go │ │ ├── signal.go │ │ ├── sqlstore │ │ │ ├── container.go │ │ │ ├── lidmap.go │ │ │ ├── store.go │ │ │ └── upgrades │ │ │ │ ├── 00-latest-schema.sql │ │ │ │ ├── 03-message-secrets.sql │ │ │ │ ├── 04-privacy-tokens.sql │ │ │ │ ├── 05-account-jid-format.sql │ │ │ │ ├── 06-facebook-uuid.sql │ │ │ │ ├── 07-account-lid.sql │ │ │ │ ├── 08-lid-mapping.sql │ │ │ │ ├── 09-decryption-buffer.sql │ │ │ │ ├── 10-chat-db-lid-migration-ts.sql │ │ │ │ ├── 11-redacted-phone-contacts.sql │ │ │ │ └── upgrades.go │ │ └── store.go │ │ ├── types │ │ ├── botmap.go │ │ ├── call.go │ │ ├── events │ │ │ ├── appstate.go │ │ │ ├── call.go │ │ │ └── events.go │ │ ├── group.go │ │ ├── jid.go │ │ ├── message.go │ │ ├── newsletter.go │ │ ├── presence.go │ │ └── user.go │ │ ├── update.go │ │ ├── upload.go │ │ ├── user.go │ │ └── util │ │ ├── cbcutil │ │ └── cbc.go │ │ ├── gcmutil │ │ └── gcm.go │ │ ├── hkdfutil │ │ └── hkdf.go │ │ ├── keys │ │ └── keypair.go │ │ └── log │ │ ├── log.go │ │ └── zerolog.go ├── go.opentelemetry.io │ └── otel │ │ ├── LICENSE │ │ ├── attribute │ │ ├── README.md │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── filter.go │ │ ├── internal │ │ │ └── attribute.go │ │ ├── iterator.go │ │ ├── key.go │ │ ├── kv.go │ │ ├── rawhelpers.go │ │ ├── set.go │ │ ├── type_string.go │ │ └── value.go │ │ ├── codes │ │ ├── README.md │ │ ├── codes.go │ │ └── doc.go │ │ ├── metric │ │ ├── LICENSE │ │ ├── README.md │ │ ├── asyncfloat64.go │ │ ├── asyncint64.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── embedded │ │ │ ├── README.md │ │ │ └── embedded.go │ │ ├── instrument.go │ │ ├── meter.go │ │ ├── syncfloat64.go │ │ └── syncint64.go │ │ ├── semconv │ │ └── v1.37.0 │ │ │ ├── MIGRATION.md │ │ │ ├── README.md │ │ │ ├── attribute_group.go │ │ │ ├── doc.go │ │ │ ├── error_type.go │ │ │ ├── exception.go │ │ │ └── schema.go │ │ └── trace │ │ ├── LICENSE │ │ ├── README.md │ │ ├── auto.go │ │ ├── config.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── embedded │ │ ├── README.md │ │ └── embedded.go │ │ ├── hex.go │ │ ├── internal │ │ └── telemetry │ │ │ ├── attr.go │ │ │ ├── doc.go │ │ │ ├── id.go │ │ │ ├── number.go │ │ │ ├── resource.go │ │ │ ├── scope.go │ │ │ ├── span.go │ │ │ ├── status.go │ │ │ ├── traces.go │ │ │ └── value.go │ │ ├── nonrecording.go │ │ ├── noop.go │ │ ├── provider.go │ │ ├── span.go │ │ ├── trace.go │ │ ├── tracer.go │ │ └── tracestate.go ├── go.uber.org │ ├── atomic │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_ext.go │ │ ├── doc.go │ │ ├── duration.go │ │ ├── duration_ext.go │ │ ├── error.go │ │ ├── error_ext.go │ │ ├── float32.go │ │ ├── float32_ext.go │ │ ├── float64.go │ │ ├── float64_ext.go │ │ ├── gen.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── nocmp.go │ │ ├── pointer_go118.go │ │ ├── pointer_go118_pre119.go │ │ ├── pointer_go119.go │ │ ├── string.go │ │ ├── string_ext.go │ │ ├── time.go │ │ ├── time_ext.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uintptr.go │ │ ├── unsafe_pointer.go │ │ └── value.go │ ├── multierr │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── error.go │ │ ├── error_post_go120.go │ │ └── error_pre_go120.go │ └── zap │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .readme.tmpl │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── array.go │ │ ├── buffer │ │ ├── buffer.go │ │ └── pool.go │ │ ├── checklicense.sh │ │ ├── config.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── error.go │ │ ├── field.go │ │ ├── flag.go │ │ ├── glide.yaml │ │ ├── global.go │ │ ├── http_handler.go │ │ ├── internal │ │ ├── bufferpool │ │ │ └── bufferpool.go │ │ ├── color │ │ │ └── color.go │ │ ├── exit │ │ │ └── exit.go │ │ ├── level_enabler.go │ │ ├── pool │ │ │ └── pool.go │ │ └── stacktrace │ │ │ └── stack.go │ │ ├── level.go │ │ ├── logger.go │ │ ├── options.go │ │ ├── sink.go │ │ ├── sugar.go │ │ ├── time.go │ │ ├── writer.go │ │ └── zapcore │ │ ├── buffered_write_syncer.go │ │ ├── clock.go │ │ ├── console_encoder.go │ │ ├── core.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── entry.go │ │ ├── error.go │ │ ├── field.go │ │ ├── hook.go │ │ ├── increase_level.go │ │ ├── json_encoder.go │ │ ├── lazy_with.go │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── reflected_encoder.go │ │ ├── sampler.go │ │ ├── tee.go │ │ └── write_syncer.go ├── go.yaml.in │ └── yaml │ │ └── v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── argon2 │ │ │ ├── argon2.go │ │ │ ├── blake2b.go │ │ │ ├── blamka_amd64.go │ │ │ ├── blamka_amd64.s │ │ │ ├── blamka_generic.go │ │ │ └── blamka_ref.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2x.go │ │ │ ├── go125.go │ │ │ └── register.go │ │ ├── curve25519 │ │ │ └── curve25519.go │ │ ├── hkdf │ │ │ └── hkdf.go │ │ ├── internal │ │ │ ├── alias │ │ │ │ ├── alias.go │ │ │ │ └── alias_purego.go │ │ │ └── poly1305 │ │ │ │ ├── mac_noasm.go │ │ │ │ ├── poly1305.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_asm.go │ │ │ │ ├── sum_generic.go │ │ │ │ ├── sum_loong64.s │ │ │ │ ├── sum_ppc64x.s │ │ │ │ ├── sum_s390x.go │ │ │ │ └── sum_s390x.s │ │ ├── md4 │ │ │ ├── md4.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── box │ │ │ │ └── box.go │ │ │ └── secretbox │ │ │ │ └── secretbox.go │ │ ├── pbkdf2 │ │ │ └── pbkdf2.go │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_amd64.s │ │ │ │ ├── salsa20_noasm.go │ │ │ │ └── salsa20_ref.go │ │ └── ssh │ │ │ └── terminal │ │ │ └── terminal.go │ │ ├── exp │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── constraints │ │ │ └── constraints.go │ │ ├── maps │ │ │ └── maps.go │ │ └── rand │ │ │ ├── exp.go │ │ │ ├── normal.go │ │ │ ├── rand.go │ │ │ ├── rng.go │ │ │ └── zipf.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── module │ │ │ ├── module.go │ │ │ └── pseudo.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── context │ │ │ └── context.go │ │ ├── http │ │ │ └── httpguts │ │ │ │ ├── guts.go │ │ │ │ └── httplex.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── ascii.go │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── config.go │ │ │ ├── config_go125.go │ │ │ ├── config_go126.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── gotrack.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ ├── static_table.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── unencrypted.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority_rfc7540.go │ │ │ ├── writesched_priority_rfc9218.go │ │ │ ├── writesched_random.go │ │ │ └── writesched_roundrobin.go │ │ ├── idna │ │ │ ├── go118.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna9.0.0.go │ │ │ ├── pre_go118.go │ │ │ ├── punycode.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ ├── trie12.0.0.go │ │ │ ├── trie13.0.0.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── httpcommon │ │ │ │ ├── ascii.go │ │ │ │ ├── headermap.go │ │ │ │ └── request.go │ │ │ ├── socks │ │ │ │ ├── client.go │ │ │ │ └── socks.go │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── proxy │ │ │ ├── dial.go │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── data │ │ │ │ ├── children │ │ │ │ ├── nodes │ │ │ │ └── text │ │ │ ├── list.go │ │ │ └── table.go │ │ └── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ └── trace.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── authhandler │ │ │ └── authhandler.go │ │ ├── clientcredentials │ │ │ └── clientcredentials.go │ │ ├── deviceauth.go │ │ ├── google │ │ │ ├── appengine.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── externalaccount │ │ │ │ ├── aws.go │ │ │ │ ├── basecredentials.go │ │ │ │ ├── executablecredsource.go │ │ │ │ ├── filecredsource.go │ │ │ │ ├── header.go │ │ │ │ ├── programmaticrefreshcredsource.go │ │ │ │ └── urlcredsource.go │ │ │ ├── google.go │ │ │ ├── internal │ │ │ │ ├── externalaccountauthorizeduser │ │ │ │ │ └── externalaccountauthorizeduser.go │ │ │ │ ├── impersonate │ │ │ │ │ └── impersonate.go │ │ │ │ └── stsexchange │ │ │ │ │ ├── clientauth.go │ │ │ │ │ └── sts_exchange.go │ │ │ ├── jwt.go │ │ │ └── sdk.go │ │ ├── internal │ │ │ ├── doc.go │ │ │ ├── oauth2.go │ │ │ ├── token.go │ │ │ └── transport.go │ │ ├── jws │ │ │ └── jws.go │ │ ├── jwt │ │ │ └── jwt.go │ │ ├── oauth2.go │ │ ├── pkce.go │ │ ├── token.go │ │ └── transport.go │ │ ├── sync │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── errgroup │ │ │ └── errgroup.go │ │ ├── semaphore │ │ │ └── semaphore.go │ │ └── singleflight │ │ │ └── singleflight.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cpu │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_darwin_x86_gc.s │ │ │ ├── byteorder.go │ │ │ ├── cpu.go │ │ │ ├── cpu_aix.go │ │ │ ├── cpu_arm.go │ │ │ ├── cpu_arm64.go │ │ │ ├── cpu_arm64.s │ │ │ ├── cpu_darwin_x86.go │ │ │ ├── cpu_gc_arm64.go │ │ │ ├── cpu_gc_s390x.go │ │ │ ├── cpu_gc_x86.go │ │ │ ├── cpu_gc_x86.s │ │ │ ├── cpu_gccgo_arm64.go │ │ │ ├── cpu_gccgo_s390x.go │ │ │ ├── cpu_gccgo_x86.c │ │ │ ├── cpu_gccgo_x86.go │ │ │ ├── cpu_linux.go │ │ │ ├── cpu_linux_arm.go │ │ │ ├── cpu_linux_arm64.go │ │ │ ├── cpu_linux_loong64.go │ │ │ ├── cpu_linux_mips64x.go │ │ │ ├── cpu_linux_noinit.go │ │ │ ├── cpu_linux_ppc64x.go │ │ │ ├── cpu_linux_riscv64.go │ │ │ ├── cpu_linux_s390x.go │ │ │ ├── cpu_loong64.go │ │ │ ├── cpu_loong64.s │ │ │ ├── cpu_mips64x.go │ │ │ ├── cpu_mipsx.go │ │ │ ├── cpu_netbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.go │ │ │ ├── cpu_openbsd_arm64.s │ │ │ ├── cpu_other_arm.go │ │ │ ├── cpu_other_arm64.go │ │ │ ├── cpu_other_mips64x.go │ │ │ ├── cpu_other_ppc64x.go │ │ │ ├── cpu_other_riscv64.go │ │ │ ├── cpu_other_x86.go │ │ │ ├── cpu_ppc64x.go │ │ │ ├── cpu_riscv64.go │ │ │ ├── cpu_s390x.go │ │ │ ├── cpu_s390x.s │ │ │ ├── cpu_wasm.go │ │ │ ├── cpu_x86.go │ │ │ ├── cpu_zos.go │ │ │ ├── cpu_zos_s390x.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── hwcap_linux.go │ │ │ ├── parse.go │ │ │ ├── proc_cpuinfo_linux.go │ │ │ ├── runtime_auxv.go │ │ │ ├── runtime_auxv_go121.go │ │ │ ├── syscall_aix_gccgo.go │ │ │ ├── syscall_aix_ppc64_gc.go │ │ │ └── syscall_darwin_x86_gc.go │ │ ├── execabs │ │ │ ├── execabs.go │ │ │ ├── execabs_go118.go │ │ │ └── execabs_go119.go │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── asm_plan9_arm.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ ├── zsyscall_plan9_arm.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── auxv.go │ │ │ ├── auxv_unsupported.go │ │ │ ├── bluetooth_linux.go │ │ │ ├── bpxsvc_zos.go │ │ │ ├── bpxsvc_zos.s │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_signed.go │ │ │ ├── ioctl_unsigned.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mmap_nomremap.go │ │ │ ├── mremap.go │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── sockcmsg_zos.go │ │ │ ├── symaddr_zos_s390x.s │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── vgetrandom_linux.go │ │ │ ├── vgetrandom_unsupported.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsymaddr_zos_s390x.s │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── term │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── term.go │ │ ├── term_plan9.go │ │ ├── term_unix.go │ │ ├── term_unix_bsd.go │ │ ├── term_unix_other.go │ │ ├── term_unsupported.go │ │ ├── term_windows.go │ │ └── terminal.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ └── trieval.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ └── unicode.go │ │ ├── internal │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ │ └── precis │ │ │ │ ├── class.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ └── rangetable │ │ │ │ ├── merge.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables12.0.0.go │ │ │ │ ├── tables13.0.0.go │ │ │ │ ├── tables15.0.0.go │ │ │ │ └── tables9.0.0.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables12.0.0.go │ │ │ ├── tables13.0.0.go │ │ │ ├── tables15.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── go │ │ ├── ast │ │ │ ├── astutil │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ │ ├── edge │ │ │ │ └── edge.go │ │ │ └── inspector │ │ │ │ ├── cursor.go │ │ │ │ ├── inspector.go │ │ │ │ ├── iter.go │ │ │ │ ├── typeof.go │ │ │ │ └── walk.go │ │ ├── gcexportdata │ │ │ ├── gcexportdata.go │ │ │ └── importer.go │ │ ├── packages │ │ │ ├── doc.go │ │ │ ├── external.go │ │ │ ├── golist.go │ │ │ ├── golist_overlay.go │ │ │ ├── loadmode_string.go │ │ │ ├── packages.go │ │ │ └── visit.go │ │ └── types │ │ │ ├── objectpath │ │ │ └── objectpath.go │ │ │ └── typeutil │ │ │ ├── callee.go │ │ │ ├── imports.go │ │ │ ├── map.go │ │ │ ├── methodsetcache.go │ │ │ └── ui.go │ │ ├── imports │ │ └── forward.go │ │ └── internal │ │ ├── aliases │ │ ├── aliases.go │ │ └── aliases_go122.go │ │ ├── event │ │ ├── core │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys │ │ │ ├── keys.go │ │ │ ├── standard.go │ │ │ └── util.go │ │ └── label │ │ │ └── label.go │ │ ├── gcimporter │ │ ├── bimport.go │ │ ├── exportdata.go │ │ ├── gcimporter.go │ │ ├── iexport.go │ │ ├── iimport.go │ │ ├── predeclared.go │ │ ├── support.go │ │ └── ureader_yes.go │ │ ├── gocommand │ │ ├── invoke.go │ │ ├── invoke_notunix.go │ │ ├── invoke_unix.go │ │ ├── vendor.go │ │ └── version.go │ │ ├── gopathwalk │ │ └── walk.go │ │ ├── imports │ │ ├── fix.go │ │ ├── imports.go │ │ ├── mod.go │ │ ├── mod_cache.go │ │ ├── sortimports.go │ │ ├── source.go │ │ ├── source_env.go │ │ └── source_modindex.go │ │ ├── modindex │ │ ├── directories.go │ │ ├── index.go │ │ ├── lookup.go │ │ ├── modindex.go │ │ └── symbols.go │ │ ├── packagesinternal │ │ └── packages.go │ │ ├── pkgbits │ │ ├── codes.go │ │ ├── decoder.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── flags.go │ │ ├── reloc.go │ │ ├── support.go │ │ ├── sync.go │ │ ├── syncmarker_string.go │ │ └── version.go │ │ ├── stdlib │ │ ├── deps.go │ │ ├── import.go │ │ ├── manifest.go │ │ └── stdlib.go │ │ ├── typeparams │ │ ├── common.go │ │ ├── coretype.go │ │ ├── free.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ └── typeterm.go │ │ ├── typesinternal │ │ ├── classify_call.go │ │ ├── element.go │ │ ├── errorcode.go │ │ ├── errorcode_string.go │ │ ├── fx.go │ │ ├── isnamed.go │ │ ├── qualifier.go │ │ ├── recv.go │ │ ├── toonew.go │ │ ├── types.go │ │ ├── varkind.go │ │ ├── varkind_go124.go │ │ └── zerovalue.go │ │ └── versions │ │ ├── features.go │ │ ├── gover.go │ │ ├── types.go │ │ └── versions.go ├── google.golang.org │ ├── genproto │ │ └── googleapis │ │ │ └── rpc │ │ │ ├── LICENSE │ │ │ └── status │ │ │ └── status.pb.go │ ├── grpc │ │ ├── AUTHORS │ │ ├── CODE-OF-CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile │ │ ├── NOTICE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── attributes │ │ │ └── attributes.go │ │ ├── backoff.go │ │ ├── backoff │ │ │ └── backoff.go │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ ├── conn_state_evaluator.go │ │ │ ├── endpointsharding │ │ │ │ └── endpointsharding.go │ │ │ ├── grpclb │ │ │ │ └── state │ │ │ │ │ └── state.go │ │ │ ├── pickfirst │ │ │ │ ├── internal │ │ │ │ │ └── internal.go │ │ │ │ ├── pickfirst.go │ │ │ │ └── pickfirstleaf │ │ │ │ │ └── pickfirstleaf.go │ │ │ ├── roundrobin │ │ │ │ └── roundrobin.go │ │ │ └── subconn.go │ │ ├── balancer_wrapper.go │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ ├── call.go │ │ ├── channelz │ │ │ └── channelz.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ ├── connectivity │ │ │ └── connectivity.go │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── insecure │ │ │ │ └── insecure.go │ │ │ ├── oauth │ │ │ │ └── oauth.go │ │ │ └── tls.go │ │ ├── dialoptions.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ ├── encoding_v2.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ ├── experimental │ │ │ └── stats │ │ │ │ ├── metricregistry.go │ │ │ │ └── metrics.go │ │ ├── grpclog │ │ │ ├── component.go │ │ │ ├── grpclog.go │ │ │ ├── internal │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ ├── interceptor.go │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancer │ │ │ │ └── gracefulswitch │ │ │ │ │ ├── config.go │ │ │ │ │ └── gracefulswitch.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ └── sink.go │ │ │ ├── buffer │ │ │ │ └── unbounded.go │ │ │ ├── channelz │ │ │ │ ├── channel.go │ │ │ │ ├── channelmap.go │ │ │ │ ├── funcs.go │ │ │ │ ├── logging.go │ │ │ │ ├── server.go │ │ │ │ ├── socket.go │ │ │ │ ├── subchannel.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_nonlinux.go │ │ │ │ └── trace.go │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── spiffe.go │ │ │ │ ├── syscallconn.go │ │ │ │ └── util.go │ │ │ ├── envconfig │ │ │ │ ├── envconfig.go │ │ │ │ ├── observability.go │ │ │ │ └── xds.go │ │ │ ├── experimental.go │ │ │ ├── grpclog │ │ │ │ └── prefix_logger.go │ │ │ ├── grpcsync │ │ │ │ ├── callback_serializer.go │ │ │ │ ├── event.go │ │ │ │ └── pubsub.go │ │ │ ├── grpcutil │ │ │ │ ├── compressor.go │ │ │ │ ├── encode_duration.go │ │ │ │ ├── grpcutil.go │ │ │ │ ├── metadata.go │ │ │ │ ├── method.go │ │ │ │ └── regex.go │ │ │ ├── idle │ │ │ │ └── idle.go │ │ │ ├── internal.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── pretty │ │ │ │ └── pretty.go │ │ │ ├── proxyattributes │ │ │ │ └── proxyattributes.go │ │ │ ├── resolver │ │ │ │ ├── config_selector.go │ │ │ │ ├── delegatingresolver │ │ │ │ │ └── delegatingresolver.go │ │ │ │ ├── dns │ │ │ │ │ ├── dns_resolver.go │ │ │ │ │ └── internal │ │ │ │ │ │ └── internal.go │ │ │ │ ├── passthrough │ │ │ │ │ └── passthrough.go │ │ │ │ └── unix │ │ │ │ │ └── unix.go │ │ │ ├── serviceconfig │ │ │ │ ├── duration.go │ │ │ │ └── serviceconfig.go │ │ │ ├── stats │ │ │ │ ├── labels.go │ │ │ │ └── metrics_recorder_list.go │ │ │ ├── status │ │ │ │ └── status.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ ├── tcp_keepalive_others.go │ │ │ ├── tcp_keepalive_unix.go │ │ │ ├── tcp_keepalive_windows.go │ │ │ └── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── client_stream.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── logging.go │ │ │ │ ├── networktype │ │ │ │ └── networktype.go │ │ │ │ ├── proxy.go │ │ │ │ ├── server_stream.go │ │ │ │ └── transport.go │ │ ├── keepalive │ │ │ └── keepalive.go │ │ ├── mem │ │ │ ├── buffer_pool.go │ │ │ ├── buffer_slice.go │ │ │ └── buffers.go │ │ ├── metadata │ │ │ └── metadata.go │ │ ├── peer │ │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── preloader.go │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── map.go │ │ │ └── resolver.go │ │ ├── resolver_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ ├── stats │ │ │ ├── handlers.go │ │ │ ├── metrics.go │ │ │ └── stats.go │ │ ├── status │ │ │ └── status.go │ │ ├── stream.go │ │ ├── stream_interfaces.go │ │ ├── tap │ │ │ └── tap.go │ │ ├── trace.go │ │ ├── trace_notrace.go │ │ ├── trace_withtrace.go │ │ └── version.go │ └── protobuf │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ ├── protodelim │ │ │ └── protodelim.go │ │ ├── protojson │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ └── well_known_types.go │ │ ├── prototext │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ │ └── protowire │ │ │ └── wire.go │ │ ├── internal │ │ ├── descfmt │ │ │ └── stringer.go │ │ ├── descopts │ │ │ └── options.go │ │ ├── detrand │ │ │ └── rand.go │ │ ├── editiondefaults │ │ │ ├── defaults.go │ │ │ └── editions_defaults.binpb │ │ ├── encoding │ │ │ ├── defval │ │ │ │ └── default.go │ │ │ ├── json │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ └── encode.go │ │ │ ├── messageset │ │ │ │ └── messageset.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── text │ │ │ │ ├── decode.go │ │ │ │ ├── decode_number.go │ │ │ │ ├── decode_string.go │ │ │ │ ├── decode_token.go │ │ │ │ ├── doc.go │ │ │ │ └── encode.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── filedesc │ │ │ ├── build.go │ │ │ ├── desc.go │ │ │ ├── desc_init.go │ │ │ ├── desc_lazy.go │ │ │ ├── desc_list.go │ │ │ ├── desc_list_gen.go │ │ │ ├── editions.go │ │ │ ├── placeholder.go │ │ │ └── presence.go │ │ ├── filetype │ │ │ └── build.go │ │ ├── flags │ │ │ ├── flags.go │ │ │ ├── proto_legacy_disable.go │ │ │ └── proto_legacy_enable.go │ │ ├── genid │ │ │ ├── any_gen.go │ │ │ ├── api_gen.go │ │ │ ├── descriptor_gen.go │ │ │ ├── doc.go │ │ │ ├── duration_gen.go │ │ │ ├── empty_gen.go │ │ │ ├── field_mask_gen.go │ │ │ ├── go_features_gen.go │ │ │ ├── goname.go │ │ │ ├── map_entry.go │ │ │ ├── name.go │ │ │ ├── source_context_gen.go │ │ │ ├── struct_gen.go │ │ │ ├── timestamp_gen.go │ │ │ ├── type_gen.go │ │ │ ├── wrappers.go │ │ │ └── wrappers_gen.go │ │ ├── impl │ │ │ ├── api_export.go │ │ │ ├── api_export_opaque.go │ │ │ ├── bitmap.go │ │ │ ├── bitmap_race.go │ │ │ ├── checkinit.go │ │ │ ├── codec_extension.go │ │ │ ├── codec_field.go │ │ │ ├── codec_field_opaque.go │ │ │ ├── codec_gen.go │ │ │ ├── codec_map.go │ │ │ ├── codec_message.go │ │ │ ├── codec_message_opaque.go │ │ │ ├── codec_messageset.go │ │ │ ├── codec_tables.go │ │ │ ├── codec_unsafe.go │ │ │ ├── convert.go │ │ │ ├── convert_list.go │ │ │ ├── convert_map.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── enum.go │ │ │ ├── equal.go │ │ │ ├── extension.go │ │ │ ├── lazy.go │ │ │ ├── legacy_enum.go │ │ │ ├── legacy_export.go │ │ │ ├── legacy_extension.go │ │ │ ├── legacy_file.go │ │ │ ├── legacy_message.go │ │ │ ├── merge.go │ │ │ ├── merge_gen.go │ │ │ ├── message.go │ │ │ ├── message_opaque.go │ │ │ ├── message_opaque_gen.go │ │ │ ├── message_reflect.go │ │ │ ├── message_reflect_field.go │ │ │ ├── message_reflect_field_gen.go │ │ │ ├── message_reflect_gen.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_opaque.go │ │ │ ├── presence.go │ │ │ └── validate.go │ │ ├── order │ │ │ ├── order.go │ │ │ └── range.go │ │ ├── pragma │ │ │ └── pragma.go │ │ ├── protolazy │ │ │ ├── bufferreader.go │ │ │ ├── lazy.go │ │ │ └── pointer_unsafe.go │ │ ├── set │ │ │ └── ints.go │ │ ├── strs │ │ │ ├── strings.go │ │ │ └── strings_unsafe.go │ │ └── version │ │ │ └── version.go │ │ ├── proto │ │ ├── checkinit.go │ │ ├── decode.go │ │ ├── decode_gen.go │ │ ├── doc.go │ │ ├── encode.go │ │ ├── encode_gen.go │ │ ├── equal.go │ │ ├── extension.go │ │ ├── merge.go │ │ ├── messageset.go │ │ ├── proto.go │ │ ├── proto_methods.go │ │ ├── proto_reflect.go │ │ ├── reset.go │ │ ├── size.go │ │ ├── size_gen.go │ │ ├── wrapperopaque.go │ │ └── wrappers.go │ │ ├── protoadapt │ │ └── convert.go │ │ ├── reflect │ │ ├── protoreflect │ │ │ ├── methods.go │ │ │ ├── proto.go │ │ │ ├── source.go │ │ │ ├── source_gen.go │ │ │ ├── type.go │ │ │ ├── value.go │ │ │ ├── value_equal.go │ │ │ ├── value_union.go │ │ │ └── value_unsafe.go │ │ └── protoregistry │ │ │ └── registry.go │ │ ├── runtime │ │ ├── protoiface │ │ │ ├── legacy.go │ │ │ └── methods.go │ │ └── protoimpl │ │ │ ├── impl.go │ │ │ └── version.go │ │ └── types │ │ └── known │ │ ├── anypb │ │ └── any.pb.go │ │ ├── durationpb │ │ └── duration.pb.go │ │ └── timestamppb │ │ └── timestamp.pb.go ├── gopkg.in │ ├── natefinch │ │ └── lumberjack.v2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chown.go │ │ │ ├── chown_linux.go │ │ │ └── lumberjack.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── gorm.io │ ├── driver │ │ ├── postgres │ │ │ ├── .gitignore │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── error_translator.go │ │ │ ├── migrator.go │ │ │ └── postgres.go │ │ └── sqlserver │ │ │ ├── License │ │ │ ├── README.md │ │ │ ├── create.go │ │ │ ├── error_translator.go │ │ │ ├── migrator.go │ │ │ ├── sqlserver.go │ │ │ └── update.go │ └── gorm │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── CODE_OF_CONDUCT.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── association.go │ │ ├── callbacks.go │ │ ├── callbacks │ │ ├── associations.go │ │ ├── callbacks.go │ │ ├── callmethod.go │ │ ├── create.go │ │ ├── delete.go │ │ ├── helper.go │ │ ├── interfaces.go │ │ ├── preload.go │ │ ├── query.go │ │ ├── raw.go │ │ ├── row.go │ │ ├── transaction.go │ │ └── update.go │ │ ├── chainable_api.go │ │ ├── clause │ │ ├── association.go │ │ ├── clause.go │ │ ├── delete.go │ │ ├── expression.go │ │ ├── from.go │ │ ├── group_by.go │ │ ├── insert.go │ │ ├── joins.go │ │ ├── limit.go │ │ ├── locking.go │ │ ├── on_conflict.go │ │ ├── order_by.go │ │ ├── returning.go │ │ ├── select.go │ │ ├── set.go │ │ ├── update.go │ │ ├── values.go │ │ ├── where.go │ │ └── with.go │ │ ├── errors.go │ │ ├── finisher_api.go │ │ ├── generics.go │ │ ├── gorm.go │ │ ├── interfaces.go │ │ ├── internal │ │ ├── lru │ │ │ └── lru.go │ │ └── stmt_store │ │ │ └── stmt_store.go │ │ ├── logger │ │ ├── logger.go │ │ ├── slog.go │ │ └── sql.go │ │ ├── migrator.go │ │ ├── migrator │ │ ├── column_type.go │ │ ├── index.go │ │ ├── migrator.go │ │ └── table_type.go │ │ ├── model.go │ │ ├── prepare_stmt.go │ │ ├── scan.go │ │ ├── schema │ │ ├── constraint.go │ │ ├── field.go │ │ ├── index.go │ │ ├── interfaces.go │ │ ├── naming.go │ │ ├── pool.go │ │ ├── relationship.go │ │ ├── schema.go │ │ ├── serializer.go │ │ └── utils.go │ │ ├── soft_delete.go │ │ ├── statement.go │ │ └── utils │ │ └── utils.go ├── modules.txt └── rsc.io │ └── qr │ ├── LICENSE │ ├── README.md │ ├── coding │ └── qr.go │ ├── gf256 │ └── gf256.go │ ├── png.go │ └── qr.go └── whatsapp_connect ├── whatsapp_connect.go └── whatsapp_connect_test.go /.env_empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/.env_empty -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/README.md -------------------------------------------------------------------------------- /calendar/calendar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/calendar/calendar.go -------------------------------------------------------------------------------- /calendar/calendar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/calendar/calendar_test.go -------------------------------------------------------------------------------- /camunda_connect/camunda_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/camunda_connect/camunda_connect.go -------------------------------------------------------------------------------- /camunda_connect/camunda_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/camunda_connect/camunda_connect_test.go -------------------------------------------------------------------------------- /camunda_connect2/camunda_connect2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/camunda_connect2/camunda_connect2.go -------------------------------------------------------------------------------- /chatgpt_connect/chatgpt_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/chatgpt_connect/chatgpt_connect.go -------------------------------------------------------------------------------- /chatgpt_connect/chatgpt_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/chatgpt_connect/chatgpt_connect_test.go -------------------------------------------------------------------------------- /chatgpt_proxy/chatgpt_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/chatgpt_proxy/chatgpt_proxy.go -------------------------------------------------------------------------------- /chatgpt_proxy/chatgpt_proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/chatgpt_proxy/chatgpt_proxy_test.go -------------------------------------------------------------------------------- /config_main/config_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/config_main/config_main.go -------------------------------------------------------------------------------- /config_main/config_main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/config_main/config_main_test.go -------------------------------------------------------------------------------- /constants_starter/constants_starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/constants_starter/constants_starter.go -------------------------------------------------------------------------------- /constraints/constraints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/constraints/constraints.go -------------------------------------------------------------------------------- /contextmain/contextmain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/contextmain/contextmain.go -------------------------------------------------------------------------------- /contextmain/contextmain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/contextmain/contextmain_test.go -------------------------------------------------------------------------------- /docs/lines_count.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/docs/lines_count.txt -------------------------------------------------------------------------------- /docs/packages.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/docs/packages.graphml -------------------------------------------------------------------------------- /docs/packages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/docs/packages.jpg -------------------------------------------------------------------------------- /email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/email/email.go -------------------------------------------------------------------------------- /email/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/email/email_test.go -------------------------------------------------------------------------------- /email_imap/email_imap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/email_imap/email_imap.go -------------------------------------------------------------------------------- /email_imap/email_imap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/email_imap/email_imap_test.go -------------------------------------------------------------------------------- /fiber_connect/fiber_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/fiber_connect/fiber_connect.go -------------------------------------------------------------------------------- /fiber_connect/fiber_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/fiber_connect/fiber_connect_test.go -------------------------------------------------------------------------------- /folders/folders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/folders/folders.go -------------------------------------------------------------------------------- /folders/folders_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/folders/folders_test.go -------------------------------------------------------------------------------- /git/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/git/git.go -------------------------------------------------------------------------------- /git/git_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/git/git_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/go.sum -------------------------------------------------------------------------------- /graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/graph.svg -------------------------------------------------------------------------------- /http_connect/http_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/http_connect/http_connect.go -------------------------------------------------------------------------------- /humanize/humanize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/humanize/humanize.go -------------------------------------------------------------------------------- /humanize/humanize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/humanize/humanize_test.go -------------------------------------------------------------------------------- /kafka_connect/kafka_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/kafka_connect/kafka_connect.go -------------------------------------------------------------------------------- /kafka_connect/kafka_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/kafka_connect/kafka_connect_test.go -------------------------------------------------------------------------------- /liveness/liveness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/liveness/liveness.go -------------------------------------------------------------------------------- /liveness/liveness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/liveness/liveness_test.go -------------------------------------------------------------------------------- /log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/log/logger.go -------------------------------------------------------------------------------- /log/logger_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/log/logger_proxy.go -------------------------------------------------------------------------------- /log/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/log/logger_test.go -------------------------------------------------------------------------------- /logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/logger/logger.go -------------------------------------------------------------------------------- /logger/logger_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/logger/logger_proxy.go -------------------------------------------------------------------------------- /logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/logger/logger_test.go -------------------------------------------------------------------------------- /make_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/make_version.sh -------------------------------------------------------------------------------- /micro/microfunctions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/micro/microfunctions.go -------------------------------------------------------------------------------- /micro/microfunctions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/micro/microfunctions_test.go -------------------------------------------------------------------------------- /microl/microl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/microl/microl.go -------------------------------------------------------------------------------- /microl/microl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/microl/microl_test.go -------------------------------------------------------------------------------- /micros/micros.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/micros/micros.go -------------------------------------------------------------------------------- /minio_connect/minio_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/minio_connect/minio_connect.go -------------------------------------------------------------------------------- /minio_connect/minio_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/minio_connect/minio_connect_test.go -------------------------------------------------------------------------------- /mssql_connect/mssql_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_connect/mssql_connect.go -------------------------------------------------------------------------------- /mssql_connect/mssql_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_connect/mssql_connect_test.go -------------------------------------------------------------------------------- /mssql_func/mssql_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_func/mssql_func.go -------------------------------------------------------------------------------- /mssql_func/mssql_func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_func/mssql_func_test.go -------------------------------------------------------------------------------- /mssql_gorm/mssql_gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_gorm/mssql_gorm.go -------------------------------------------------------------------------------- /mssql_gorm/mssql_gorm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_gorm/mssql_gorm_test.go -------------------------------------------------------------------------------- /mssql_stek/mssql_stek.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/mssql_stek/mssql_stek.zip -------------------------------------------------------------------------------- /nats_connect/nats_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/nats_connect/nats_connect.go -------------------------------------------------------------------------------- /nats_connect/nats_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/nats_connect/nats_connect_test.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/version/version.txt: -------------------------------------------------------------------------------- 1 | v1.0.231 2025-11-11 14:55:39 +0300 2 | -------------------------------------------------------------------------------- /pkg/version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/pkg/version/version_test.go -------------------------------------------------------------------------------- /port_checker/port_checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/port_checker/port_checker.go -------------------------------------------------------------------------------- /port_checker/port_checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/port_checker/port_checker_test.go -------------------------------------------------------------------------------- /postgres_func/postgres_func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_func/postgres_func.go -------------------------------------------------------------------------------- /postgres_func/postgres_func_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_func/postgres_func_test.go -------------------------------------------------------------------------------- /postgres_gorm/postgres_gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_gorm/postgres_gorm.go -------------------------------------------------------------------------------- /postgres_gorm/postgres_gorm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_gorm/postgres_gorm_test.go -------------------------------------------------------------------------------- /postgres_gorm2/postgres_gorm2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_gorm2/postgres_gorm2.go -------------------------------------------------------------------------------- /postgres_gorm2/postgres_gorm2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_gorm2/postgres_gorm2_test.go -------------------------------------------------------------------------------- /postgres_pgtype/builtin_wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/builtin_wrappers.go -------------------------------------------------------------------------------- /postgres_pgtype/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/date.go -------------------------------------------------------------------------------- /postgres_pgtype/interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/interval.go -------------------------------------------------------------------------------- /postgres_pgtype/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/numeric.go -------------------------------------------------------------------------------- /postgres_pgtype/pgtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/pgtype.go -------------------------------------------------------------------------------- /postgres_pgtype/pgtype_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/pgtype_default.go -------------------------------------------------------------------------------- /postgres_pgtype/sanek.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/sanek.go -------------------------------------------------------------------------------- /postgres_pgtype/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/time.go -------------------------------------------------------------------------------- /postgres_pgtype/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/timestamp.go -------------------------------------------------------------------------------- /postgres_pgtype/timestamptz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/timestamptz.go -------------------------------------------------------------------------------- /postgres_pgtype/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgtype/write.go -------------------------------------------------------------------------------- /postgres_pgx/postgres_pgx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgx/postgres_pgx.go -------------------------------------------------------------------------------- /postgres_pgx/postgres_pgx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgx/postgres_pgx_test.go -------------------------------------------------------------------------------- /postgres_pgxpool/postgres_pgxpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgxpool/postgres_pgxpool.go -------------------------------------------------------------------------------- /postgres_pgxpool2/postgres_pgxpool2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_pgxpool2/postgres_pgxpool2.go -------------------------------------------------------------------------------- /postgres_sqlx/postgres_sqlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_sqlx/postgres_sqlx.go -------------------------------------------------------------------------------- /postgres_sqlx/postgres_sqlx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_sqlx/postgres_sqlx_test.go -------------------------------------------------------------------------------- /postgres_stek/postgres_stek.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/postgres_stek/postgres_stek.zip -------------------------------------------------------------------------------- /readme.eng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/readme.eng -------------------------------------------------------------------------------- /stopapp/stopapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/stopapp/stopapp.go -------------------------------------------------------------------------------- /stopapp/stopapp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/stopapp/stopapp_test.go -------------------------------------------------------------------------------- /telegram_bot/telegram_bot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/telegram_bot/telegram_bot.go -------------------------------------------------------------------------------- /telegram_bot/telegram_bot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/telegram_bot/telegram_bot_test.go -------------------------------------------------------------------------------- /telegram_client/telegram_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/telegram_client/telegram_client.go -------------------------------------------------------------------------------- /telegram_client/telegram_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/telegram_client/telegram_client_test.go -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | export SERVICE_NAME="nikitin" 2 | -------------------------------------------------------------------------------- /tinkoff_connect/tinkoff_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/tinkoff_connect/tinkoff_connect.go -------------------------------------------------------------------------------- /tinkoff_connect/tinkoff_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/tinkoff_connect/tinkoff_connect_test.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/filippo.io/edwards25519/LICENSE -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/filippo.io/edwards25519/README.md -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/filippo.io/edwards25519/doc.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/filippo.io/edwards25519/extra.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/scalar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/filippo.io/edwards25519/scalar.go -------------------------------------------------------------------------------- /vendor/filippo.io/edwards25519/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/filippo.io/edwards25519/tables.go -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/README.md -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/bits.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/clevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/clevels.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/cover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/cover.c -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/cover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/cover.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/cpu.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/debug.c -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/debug.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/errors.go -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/fse.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/hist.c -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/hist.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/huf.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/mem.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/pool.c -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/pool.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/xxhash.c -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/xxhash.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/zbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/zbuff.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/zdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/zdict.c -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/zdict.h -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/zstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/zstd.go -------------------------------------------------------------------------------- /vendor/github.com/DataDog/zstd/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/DataDog/zstd/zstd.h -------------------------------------------------------------------------------- /vendor/github.com/ManyakRus/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/andybalholm/brotli/.gitignore: -------------------------------------------------------------------------------- 1 | cpu.out 2 | brotli.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/beeper/argo-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/beeper/argo-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/camunda/zeebe/clients/go/v8/internal/embedded/data/VERSION: -------------------------------------------------------------------------------- 1 | 8.5.25 2 | -------------------------------------------------------------------------------- /vendor/github.com/clipperhouse/stringish/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.test 3 | -------------------------------------------------------------------------------- /vendor/github.com/coder/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/coder/websocket/doc.go -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/ATTRIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/dlclark/regexp2/ATTRIB -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/fatih/color/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/fatih/color/color.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/color/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/fatih/color/doc.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/.gitattributes: -------------------------------------------------------------------------------- 1 | # Never modify line endings of corpus. 2 | testdata/fuzz/** text eol=lf 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/Makefile -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/dec.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/enc.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/generate.go: -------------------------------------------------------------------------------- 1 | package jx 2 | 3 | //go:generate go run ./tools/mkint 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/jx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/jx.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/num.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/num.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/w.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/w.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/w_b64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/w_b64.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/w_int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/w_int.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/w_num.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/w_num.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/jx/w_str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/jx/w_str.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/xor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/xor/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-faster/xor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/xor/Makefile -------------------------------------------------------------------------------- /vendor/github.com/go-faster/xor/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/xor/xor.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/.gitattributes: -------------------------------------------------------------------------------- 1 | # Never modify line endings of corpus. 2 | testdata/fuzz/** text eol=lf 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/AUTHORS: -------------------------------------------------------------------------------- 1 | Kirill Simonov 2 | Canonical Ltd 3 | The Go Faster Authors 4 | -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/yaml/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/yaml/apic.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/yaml/json.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/yaml/node.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-faster/yaml/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-faster/yaml/zero.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/Makefile -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/codecov.yml -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/error.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/file.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/helper.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/ini.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/key.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/parser.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/section.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/section.go -------------------------------------------------------------------------------- /vendor/github.com/go-ini/ini/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/go-ini/ini/struct.go -------------------------------------------------------------------------------- /vendor/github.com/go-telegram-bot-api/telegram-bot-api/v5/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | coverage.out 3 | tmp/ 4 | book/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/dce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/dce.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/hash.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/node.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/node_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/node_js.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/null.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/time.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/util.go -------------------------------------------------------------------------------- /vendor/github.com/google/uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/google/uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/contrib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/contrib/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/README.md -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/decrypt.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/encrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/encrypt.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/gotd/ige/ige.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/ige/ige.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/README.md -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/go.test.sh -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/moment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/moment.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/neo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/neo.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/net.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/ticker.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/time.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/neo/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/neo/timer.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/ascii/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/ascii/ascii.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/bin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/bin.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/buffer.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/const.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/errors.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/fields.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/int128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/int128.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/int256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/int256.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/pool.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/bin/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/bin/string.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/clock/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/clock/clock.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/dh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/dh.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/key.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/keys.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/pq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/pq.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/rand.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/rsa.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/crypto/salt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/crypto/salt.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/mt/mt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/mt/mt.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/mtproto/ack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/mtproto/ack.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/mtproto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/mtproto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/mtproto/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/mtproto/rpc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/mtproto/zap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/mtproto/zap.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/mtproxy/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/mtproxy/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/oteltg/keys.go: -------------------------------------------------------------------------------- 1 | package oteltg 2 | -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/pool/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/pool/pool.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/proto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/proto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/proto/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/proto/gzip.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/rpc/ack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/rpc/ack.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/rpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/rpc/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/rpc/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/rpc/engine.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/rpc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/rpc/errors.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/rpc/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/rpc/options.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/syncio/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/syncio/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/tdjson/obj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/tdjson/obj.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/tdp/tdp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/tdp/tdp.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/tdp/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/tdp/type.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/tg/tg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/tg/tg.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/tgerr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/tgerr/error.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/tmap/tmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/tmap/tmap.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/wsutil/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/wsutil/conn.go -------------------------------------------------------------------------------- /vendor/github.com/gotd/td/wsutil/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/gotd/td/wsutil/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/README.md -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/Rakefile -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/batch.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/conn.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/rows.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/tracer.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/tx.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/pgx/v5/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/pgx/v5/values.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/puddle/v2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jackc/puddle/v2/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jackc/puddle/v2/log.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/Guardfile: -------------------------------------------------------------------------------- 1 | guard 'gotest' do 2 | watch(%r{\.go$}) 3 | end 4 | -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jinzhu/now/License -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jinzhu/now/README.md -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jinzhu/now/main.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/now.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jinzhu/now/now.go -------------------------------------------------------------------------------- /vendor/github.com/jinzhu/now/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jinzhu/now/time.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/Makefile -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/README.md -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/bind.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/doc.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/named.go -------------------------------------------------------------------------------- /vendor/github.com/jmoiron/sqlx/sqlx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/jmoiron/sqlx/sqlx.go -------------------------------------------------------------------------------- /vendor/github.com/joho/godotenv/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /vendor/github.com/joho/godotenv/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/joho/godotenv/LICENCE -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/gen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd s2/cmd/_s2sx/ || exit 1 4 | go generate . 5 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/huff0/.gitignore: -------------------------------------------------------------------------------- 1 | /huff0-fuzz.zip 2 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.mod: -------------------------------------------------------------------------------- 1 | module github.com/klauspost/compress 2 | 3 | go 1.22 4 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/s2sx.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/klauspost/crc32/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/klauspost/crc32/gen.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/.gitignore: -------------------------------------------------------------------------------- 1 | [568].out 2 | _go* 3 | _test* 4 | _obj 5 | /.idea 6 | -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/pretty/License -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/pretty/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/pretty/diff.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/pretty/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/pretty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/pretty/pretty.go -------------------------------------------------------------------------------- /vendor/github.com/kr/pretty/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/pretty/zero.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/text/License -------------------------------------------------------------------------------- /vendor/github.com/kr/text/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/text/Readme -------------------------------------------------------------------------------- /vendor/github.com/kr/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/text/doc.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/text/indent.go -------------------------------------------------------------------------------- /vendor/github.com/kr/text/wrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/kr/text/wrap.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | .idea 6 | .vscode -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/TESTS.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go115.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/conn_go115.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/connector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/connector.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/krb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/krb.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/notice.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/rows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/rows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/scram/scram.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/user_other.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mdp/qrterminal/v3/.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/minio/md5-simd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/minio/md5-simd/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/minio/md5-simd/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/minio/md5-simd/md5.go -------------------------------------------------------------------------------- /vendor/github.com/minio/minio-go/v7/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.test 3 | validator 4 | golangci-lint 5 | functional_tests 6 | .idea -------------------------------------------------------------------------------- /vendor/github.com/minio/minio-go/v7/CNAME: -------------------------------------------------------------------------------- 1 | minio-go.min.io -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nats.go/.words: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nats.go/.words -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nats.go/enc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nats.go/enc.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nats.go/js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nats.go/js.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nats.go/jsm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nats.go/jsm.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nats.go/kv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nats.go/kv.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nats.go/ws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nats.go/ws.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nkeys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nkeys/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nkeys/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nkeys/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nkeys/crc16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nkeys/crc16.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nkeys/nkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nkeys/nkeys.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nkeys/xkeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nkeys/xkeys.go -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/nats-io/nuid/nuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/nats-io/nuid/nuid.go -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/.gitattributes: -------------------------------------------------------------------------------- 1 | gen/_template/** text eol=lf 2 | -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/Makefile -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/README.md -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/dsl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/dsl.go -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/ogen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/ogen.go -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/schema.go -------------------------------------------------------------------------------- /vendor/github.com/ogen-go/ogen/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/ogen-go/ogen/spec.go -------------------------------------------------------------------------------- /vendor/github.com/petermattis/goid/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.test 3 | .*.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pierrec/lz4/v4/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pierrec/lz4/v4/lz4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pierrec/lz4/v4/lz4.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | command-line-arguments.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/ttar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/prometheus/procfs/ttar -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/.appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | .DS_Store -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/README.md -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/error.go -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/hostid_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/hostid_linux.go -------------------------------------------------------------------------------- /vendor/github.com/rs/xid/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/xid/id.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/README.md -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/array.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/console.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/context.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/ctx.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/event.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/fields.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/globals.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/go112.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/go112.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/hook.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/log.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/pretty.png -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/sampler.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/syslog.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/rs/zerolog/writer.go -------------------------------------------------------------------------------- /vendor/github.com/rugatling/go-openai/README.md: -------------------------------------------------------------------------------- 1 | # Fork [Go OpenAI](https://github.com/sashabaranov/go-openai) 2 | -------------------------------------------------------------------------------- /vendor/github.com/segmentio/asm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/segmentio/asm/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/segmentio/kafka-go/.gitattributes: -------------------------------------------------------------------------------- 1 | fixtures/*.hex binary 2 | -------------------------------------------------------------------------------- /vendor/github.com/tinylib/msgp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/tinylib/msgp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/toorop/go-dkim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/toorop/go-dkim/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/toorop/go-dkim/dkim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/toorop/go-dkim/dkim.go -------------------------------------------------------------------------------- /vendor/github.com/toorop/go-dkim/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/toorop/go-dkim/watch -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/valyala/fasthttp/TODO -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/github.com/valyala/fasthttp/fs.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/.gitignore -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/.go-version: -------------------------------------------------------------------------------- 1 | 1.23.12 2 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/OWNERS -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/README.md -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_aix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_android.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_android.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_linux.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_openbsd.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_solaris.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bolt_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bolt_windows.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/boltsync_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/boltsync_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/bucket.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/compact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/compact.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/cursor.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/db.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/errors.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/errors/errors.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/logger.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/mlock_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/mlock_unix.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/mlock_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/mlock_windows.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/node.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.etcd.io/bbolt/tx_check.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/libsignal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/libsignal/LICENSE -------------------------------------------------------------------------------- /vendor/go.mau.fi/libsignal/cipher/Cbc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/libsignal/cipher/Cbc.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/libsignal/ecc/Curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/libsignal/ecc/Curve.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/libsignal/ecc/Doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/libsignal/ecc/Doc.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/libsignal/kdf/HKDF.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/libsignal/kdf/HKDF.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/LICENSE -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/connlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/connlog.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/database.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/iter.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/json.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/log.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/module.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/dbutil/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/dbutil/upgrades.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exbytes/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exbytes/string.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exbytes/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exbytes/writer.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exerrors/must.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exerrors/must.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exhttp/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exhttp/cors.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exhttp/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exhttp/json.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exmaps/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exmaps/clone.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exmaps/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exmaps/set.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exslices/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exslices/cast.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exslices/chunk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exslices/chunk.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exslices/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exslices/delete.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exslices/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exslices/diff.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exslices/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exslices/stack.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exsync/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exsync/event.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exsync/syncmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exsync/syncmap.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/exsync/syncset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/exsync/syncset.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/fallocate/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/fallocate/doc.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/jsontime/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/jsontime/string.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/ptr/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/ptr/ptr.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/random/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/random/bytes.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/util/random/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/util/random/string.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/.editorconfig -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/LICENSE -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/README.md -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/appstate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/appstate.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/argo/argo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/argo/argo.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/binary/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/binary/xml.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/broadcast.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/call.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/client.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/download.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/errors.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/group.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/handshake.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/internals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/internals.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/keepalive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/keepalive.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/mediaconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/mediaconn.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/mediaretry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/mediaretry.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/message.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/msgsecret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/msgsecret.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/newsletter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/newsletter.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/pair-code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/pair-code.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/pair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/pair.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/prekeys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/prekeys.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/presence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/presence.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/proto/.gitignore: -------------------------------------------------------------------------------- 1 | protos.js 2 | -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/push.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/qrchan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/qrchan.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/receipt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/receipt.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/request.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/retry.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/send.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/sendfb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/sendfb.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/store/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/store/noop.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/types/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/types/call.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/types/jid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/types/jid.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/types/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/types/user.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/update.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/upload.go -------------------------------------------------------------------------------- /vendor/go.mau.fi/whatsmeow/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.mau.fi/whatsmeow/user.go -------------------------------------------------------------------------------- /vendor/go.opentelemetry.io/otel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.opentelemetry.io/otel/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/bool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/bool_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/bool_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/duration.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/error_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/error_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/float32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float32_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/float32_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/float64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/float64_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/float64_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/gen.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/int32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/int64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/nocmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/nocmp.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/string_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/time_ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/time_ext.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/uint32.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/uint64.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/uintptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/uintptr.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/atomic/value.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/.golangci.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/LICENSE -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/checklicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/checklicense.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/sink.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/clock.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/.travis.yml -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/LICENSE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/NOTICE -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/README.md -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/apic.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/decode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/emitterc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/encode.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/parserc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/readerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/resolve.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/scannerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/sorter.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/writerc.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/yaml.go -------------------------------------------------------------------------------- /vendor/go.yaml.in/yaml/v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/go.yaml.in/yaml/v2/yamlh.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/maps/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/maps/maps.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/rand/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/rand/exp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/rand/normal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/rand/normal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/rand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/rand/rand.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/rand/rng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/rand/rng.go -------------------------------------------------------------------------------- /vendor/golang.org/x/exp/rand/zipf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/exp/rand/zipf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/mod/module/pseudo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ascii.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/ascii.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/go118.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/idna/go118.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/proxy/dial.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/deviceauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/deviceauth.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/google/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/pkce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/pkce.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/byteorder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_gc_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_gc_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_wasm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_wasm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/cpu_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/cpu/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/auxv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/auxv.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mremap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/mremap.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/term/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/term/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/term/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/term.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/term_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/term_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/term_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/term/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/term/terminal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/NOTICE.txt -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gorm.io/driver/postgres/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /vendor/gorm.io/driver/postgres/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/driver/postgres/License -------------------------------------------------------------------------------- /vendor/gorm.io/driver/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/driver/postgres/README.md -------------------------------------------------------------------------------- /vendor/gorm.io/driver/sqlserver/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/driver/sqlserver/License -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/.gitignore: -------------------------------------------------------------------------------- 1 | TODO* 2 | documents 3 | coverage.txt 4 | _book 5 | .idea 6 | vendor 7 | .vscode 8 | -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/.golangci.yml -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/LICENSE -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/README.md -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/association.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/association.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/callbacks.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/callbacks/raw.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/callbacks/row.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/callbacks/row.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/chainable_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/chainable_api.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/clause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/clause.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/delete.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/from.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/insert.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/joins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/joins.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/limit.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/locking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/locking.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/select.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/set.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/update.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/values.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/where.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/clause/where.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/clause/with.go: -------------------------------------------------------------------------------- 1 | package clause 2 | 3 | type With struct{} 4 | -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/errors.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/finisher_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/finisher_api.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/generics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/generics.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/gorm.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/interfaces.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/logger/logger.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/logger/slog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/logger/slog.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/logger/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/logger/sql.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/migrator.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/migrator/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/migrator/index.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/model.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/prepare_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/prepare_stmt.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/scan.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/schema/field.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/schema/index.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/schema/naming.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/schema/pool.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/schema/schema.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/schema/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/schema/utils.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/soft_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/soft_delete.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/statement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/statement.go -------------------------------------------------------------------------------- /vendor/gorm.io/gorm/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/gorm.io/gorm/utils/utils.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /vendor/rsc.io/qr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/rsc.io/qr/LICENSE -------------------------------------------------------------------------------- /vendor/rsc.io/qr/README.md: -------------------------------------------------------------------------------- 1 | Basic QR encoder. 2 | 3 | go get [-u] rsc.io/qr 4 | -------------------------------------------------------------------------------- /vendor/rsc.io/qr/coding/qr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/rsc.io/qr/coding/qr.go -------------------------------------------------------------------------------- /vendor/rsc.io/qr/gf256/gf256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/rsc.io/qr/gf256/gf256.go -------------------------------------------------------------------------------- /vendor/rsc.io/qr/png.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/rsc.io/qr/png.go -------------------------------------------------------------------------------- /vendor/rsc.io/qr/qr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/vendor/rsc.io/qr/qr.go -------------------------------------------------------------------------------- /whatsapp_connect/whatsapp_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ManyakRus/starter/HEAD/whatsapp_connect/whatsapp_connect.go --------------------------------------------------------------------------------