content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class SagemakerData(object): amazon_reviews_raw_data = "s3://amazon-reviews-pds/tsv/amazon_reviews_us_Digital_Video_Download_v1_00.tsv.gz" sagemaker_data_repo = SagemakerData()
class Sagemakerdata(object): amazon_reviews_raw_data = 's3://amazon-reviews-pds/tsv/amazon_reviews_us_Digital_Video_Download_v1_00.tsv.gz' sagemaker_data_repo = sagemaker_data()
class Feature(object): def __init__(self): self.docCountOfClasses = {} self.frequencies = {} # Increase class of a document. def increaseClass(self, className): self.docCountOfClasses[className] = self.docCountOfClasses.get(className, 0) + 1 # Increase token of a class. def increaseToken(self, token, className): if not token in self.frequencies: self.frequencies[token] = {} self.frequencies[token][className] = self.frequencies[token].get(className, 0) + 1 # Get all documents count. def getDocCount(self): return sum(self.docCountOfClasses.values()) # Get the available classes as list. def getClasses(self): return self.docCountOfClasses.keys() # Get the class count of the document. Returns None if it was not found. def getClassDocCount(self, className): return self.docCountOfClasses.get(className, None) # Get frequency of a token in the class. Returns None if it was not found. def getFrequency(self, token, className): try: foundToken = self.frequencies[token] return foundToken[className] except: return None
class Feature(object): def __init__(self): self.docCountOfClasses = {} self.frequencies = {} def increase_class(self, className): self.docCountOfClasses[className] = self.docCountOfClasses.get(className, 0) + 1 def increase_token(self, token, className): if not token in self.frequencies: self.frequencies[token] = {} self.frequencies[token][className] = self.frequencies[token].get(className, 0) + 1 def get_doc_count(self): return sum(self.docCountOfClasses.values()) def get_classes(self): return self.docCountOfClasses.keys() def get_class_doc_count(self, className): return self.docCountOfClasses.get(className, None) def get_frequency(self, token, className): try: found_token = self.frequencies[token] return foundToken[className] except: return None
load("@bazel_gazelle//:deps.bzl", "go_repository") def go_repositories(): go_repository( name = "com_google_cloud_go", importpath = "cloud.google.com/go", version = "v0.51.0", sum = "h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_azure_go_ansiterm", importpath = "github.com/Azure/go-ansiterm", version = "v0.0.0-20170929234023-d6e3b3328b78", sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_burntsushi_toml", importpath = "github.com/BurntSushi/toml", version = "v0.3.1", sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_makenowjust_heredoc", importpath = "github.com/MakeNowJust/heredoc", version = "v0.0.0-20170808103936-bb23615498cd", sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_masterminds_semver", importpath = "github.com/Masterminds/semver", version = "v1.4.2", sum = "h1:WBLTQ37jOCzSLtXNdoo8bNM8876KhNqOKvrlGITgsTc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_masterminds_sprig", importpath = "github.com/Masterminds/sprig", version = "v2.15.0+incompatible", sum = "h1:0gSxPGWS9PAr7U2NsQ2YQg6juRDINkUyuvbb4b2Xm8w=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_microsoft_go_winio", importpath = "github.com/Microsoft/go-winio", version = "v0.4.14", sum = "h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_microsoft_hcsshim", importpath = "github.com/Microsoft/hcsshim", version = "v0.8.10", sum = "h1:k5wTrpnVU2/xv8ZuzGkbXVd3js5zJ8RnumPo5RxiIxU=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_nytimes_gziphandler", importpath = "github.com/NYTimes/gziphandler", version = "v0.0.0-20170623195520-56545f4a5d46", sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_puerkitobio_purell", importpath = "github.com/PuerkitoBio/purell", version = "v1.1.1", sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_puerkitobio_urlesc", importpath = "github.com/PuerkitoBio/urlesc", version = "v0.0.0-20170810143723-de5bf2ad4578", sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_adrg_xdg", importpath = "github.com/adrg/xdg", version = "v0.4.0", sum = "h1:RzRqFcjH4nE5C6oTAxhBtoE2IRyjBSa62SCbyPidvls=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_alexflint_go_filemutex", importpath = "github.com/alexflint/go-filemutex", version = "v0.0.0-20171022225611-72bdc8eae2ae", sum = "h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_aokoli_goutils", importpath = "github.com/aokoli/goutils", version = "v1.0.1", sum = "h1:7fpzNGoJ3VA8qcrm++XEE1QUe0mIwNeLa02Nwq7RDkg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_armon_circbuf", importpath = "github.com/armon/circbuf", version = "v0.0.0-20150827004946-bbbad097214e", sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_asaskevich_govalidator", importpath = "github.com/asaskevich/govalidator", version = "v0.0.0-20190424111038-f61b66f89f4a", sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_beorn7_perks", importpath = "github.com/beorn7/perks", version = "v1.0.1", sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_bgentry_speakeasy", importpath = "github.com/bgentry/speakeasy", version = "v0.1.0", sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_blang_semver", importpath = "github.com/blang/semver", version = "v3.5.0+incompatible", sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_caddyserver_caddy", importpath = "github.com/caddyserver/caddy", version = "v1.0.5", sum = "h1:5B1Hs0UF2x2tggr2X9jL2qOZtDXbIWQb9YLbmlxHSuM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cenkalti_backoff", importpath = "github.com/cenkalti/backoff", version = "v1.1.1-0.20190506075156-2146c9339422", sum = "h1:8eZxmY1yvxGHzdzTEhI09npjMVGzNAdrqzruTX6jcK4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cenkalti_backoff_v4", importpath = "github.com/cenkalti/backoff/v4", version = "v4.0.2", sum = "h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cespare_xxhash_v2", importpath = "github.com/cespare/xxhash/v2", version = "v2.1.1", sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_chai2010_gettext_go", importpath = "github.com/chai2010/gettext-go", version = "v0.0.0-20160711120539-c6fed771bfd5", sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_checkpoint_restore_go_criu_v4", importpath = "github.com/checkpoint-restore/go-criu/v4", version = "v4.1.0", sum = "h1:WW2B2uxx9KWF6bGlHqhm8Okiafwwx7Y2kcpn8lCpjgo=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cilium_ebpf", importpath = "github.com/cilium/ebpf", version = "v0.0.0-20200702112145-1c8d4c9ef775", sum = "h1:cHzBGGVew0ezFsq2grfy2RsB8hO/eNyBgOLHBCqfR1U=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_container_storage_interface_spec", importpath = "github.com/container-storage-interface/spec", version = "v1.2.0", sum = "h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_btrfs", importpath = "github.com/containerd/btrfs", version = "v0.0.0-20201111183144-404b9149801e", sum = "h1:chFw/cg0TDyK43qm8DKbblny2WHc4ML+j1KOkdEp9pI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_cgroups", importpath = "github.com/containerd/cgroups", version = "v0.0.0-20200710171044-318312a37340", sum = "h1:9atoWyI9RtXFwf7UDbme/6M8Ud0rFrx+Q3ZWgSnsxtw=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_console", importpath = "github.com/containerd/console", version = "v1.0.0", sum = "h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_containerd", importpath = "github.com/containerd/containerd", version = "v1.4.3", sum = "h1:ijQT13JedHSHrQGWFcGEwzcNKrAGIiZ+jSD5QQG07SY=", build_file_proto_mode = "disable", build_tags = [ "no_zfs", "no_aufs", "no_devicemapper", "no_btrfs", ], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_continuity", importpath = "github.com/containerd/continuity", version = "v0.0.0-20200710164510-efbc4488d8fe", sum = "h1:PEmIrUvwG9Yyv+0WKZqjXfSFDeZjs/q15g0m08BYS9k=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_cri", importpath = "github.com/containerd/cri", version = "v1.19.1-0.20201126003523-adc0b6a578ed", sum = "h1:M2yIwrNSafh4rW/yXAiAlSqpydW7vjvDjZ0ClMb+EMQ=", build_file_proto_mode = "disable", patches = [ "//third_party/go/patches:containerd-netns-statedir.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_fifo", importpath = "github.com/containerd/fifo", version = "v0.0.0-20200410184934-f15a3290365b", sum = "h1:qUtCegLdOUVfVJOw+KDg6eJyE1TGvLlkGEd1091kSSQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_go_cni", importpath = "github.com/containerd/go-cni", version = "v1.0.1", sum = "h1:VXr2EkOPD0v1gu7CKfof6XzEIDzsE/dI9yj/W7PSWLs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_go_runc", importpath = "github.com/containerd/go-runc", version = "v0.0.0-20200220073739-7016d3ce2328", sum = "h1:PRTagVMbJcCezLcHXe8UJvR1oBzp2lG3CEumeFOLOds=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_imgcrypt", importpath = "github.com/containerd/imgcrypt", version = "v1.0.1", sum = "h1:IyI3IIP4m6zrNFuNFT7HizGVcuD6BYJFpdM1JvPKCbQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_ttrpc", importpath = "github.com/containerd/ttrpc", version = "v1.0.2-0.20210119122237-222b428f008e", sum = "h1:+Fbjfo26pg4HtkAw9sC/YhUwaAb16355o/J/oHkyCDc=", replace = "github.com/monogon-dev/ttrpc", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containerd_typeurl", importpath = "github.com/containerd/typeurl", version = "v1.0.1", sum = "h1:PvuK4E3D5S5q6IqsPDCy928FhP0LUIGcmZ/Yhgp5Djw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containernetworking_cni", importpath = "github.com/containernetworking/cni", version = "v0.8.0", sum = "h1:BT9lpgGoH4jw3lFC7Odz2prU5ruiYKcgAjMCbgybcKI=", patches = [ "//third_party/go/patches:cni-fix-cachepath.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containernetworking_plugins", importpath = "github.com/containernetworking/plugins", version = "v0.8.2", sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_containers_ocicrypt", importpath = "github.com/containers/ocicrypt", version = "v1.0.1", sum = "h1:EToign46OSLTFWnb2oNj9RG3XDnkOX8r28ZIXUuk5Pc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coredns_coredns", importpath = "github.com/coredns/coredns", version = "v1.7.0", sum = "h1:Tm2ZSdhTk+4okgjUp4K6KYzvBI2u34cdD4fKQRC4Eeo=", pre_patches = [ "//third_party/go/patches:coredns-remove-unused-plugins.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coreos_go_iptables", importpath = "github.com/coreos/go-iptables", version = "v0.4.2", sum = "h1:KH0EwId05JwWIfb96gWvkiT2cbuOu8ygqUaB+yPAwIg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coreos_go_oidc", importpath = "github.com/coreos/go-oidc", version = "v2.1.0+incompatible", sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coreos_go_semver", importpath = "github.com/coreos/go-semver", version = "v0.3.0", sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coreos_go_systemd", importpath = "github.com/coreos/go-systemd", version = "v0.0.0-20190321100706-95778dfbb74e", sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coreos_go_systemd_v22", importpath = "github.com/coreos/go-systemd/v22", version = "v22.1.0", sum = "h1:kq/SbG2BCKLkDKkjQf5OWwKWUKj1lgs3lFI4PxnR5lg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_coreos_pkg", importpath = "github.com/coreos/pkg", version = "v0.0.0-20180928190104-399ea9e2e55f", sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_corverroos_commentwrap", importpath = "github.com/corverroos/commentwrap", version = "v0.0.0-20191204065359-2926638be44c", sum = "h1:toeMwwechJKH0iwOoGJLZK6x42Ba9si+816KxqmgFc8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cosiner_argv", importpath = "github.com/cosiner/argv", version = "v0.0.0-20170225145430-13bacc38a0a5", sum = "h1:rIXlvz2IWiupMFlC45cZCXZFvKX/ExBcSLrDy2G0Lp8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cpuguy83_go_md2man_v2", importpath = "github.com/cpuguy83/go-md2man/v2", version = "v2.0.0", sum = "h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_cyphar_filepath_securejoin", importpath = "github.com/cyphar/filepath-securejoin", version = "v0.2.2", sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_davecgh_go_spew", importpath = "github.com/davecgh/go-spew", version = "v1.1.1", sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_daviddengcn_go_colortext", importpath = "github.com/daviddengcn/go-colortext", version = "v0.0.0-20160507010035-511bcaf42ccd", sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_dgrijalva_jwt_go", importpath = "github.com/dgrijalva/jwt-go", version = "v3.2.0+incompatible", sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_diskfs_go_diskfs", importpath = "github.com/diskfs/go-diskfs", version = "v1.2.0", sum = "h1:Ow4xorEDw1VNYKbC+SA/qQNwi5gWIwdKUxmUcLFST24=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_dnstap_golang_dnstap", importpath = "github.com/dnstap/golang-dnstap", version = "v0.2.0", sum = "h1:+NrmP4mkaTeKYV7xJ5FXpUxRn0RpcgoQcsOCTS8WQPk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_distribution", importpath = "github.com/docker/distribution", version = "v2.7.1+incompatible", sum = "h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_docker", importpath = "github.com/docker/docker", version = "v17.12.0-ce-rc1.0.20200310163718-4634ce647cf2+incompatible", sum = "h1:ax4NateCD5bjRTqLvQBlFrSUPOoZRgEXWpJ6Bmu6OO0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_go_connections", importpath = "github.com/docker/go-connections", version = "v0.4.0", sum = "h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_go_events", importpath = "github.com/docker/go-events", version = "v0.0.0-20190806004212-e31b211e4f1c", sum = "h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_go_metrics", importpath = "github.com/docker/go-metrics", version = "v0.0.1", sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_go_units", importpath = "github.com/docker/go-units", version = "v0.4.0", sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_docker_spdystream", importpath = "github.com/docker/spdystream", version = "v0.0.0-20160310174837-449fdfce4d96", sum = "h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_dustin_go_humanize", importpath = "github.com/dustin/go-humanize", version = "v1.0.0", sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_elazarl_goproxy", importpath = "github.com/elazarl/goproxy", version = "v0.0.0-20180725130230-947c36da3153", sum = "h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_emicklei_go_restful", importpath = "github.com/emicklei/go-restful", version = "v2.9.5+incompatible", sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_euank_go_kmsg_parser", importpath = "github.com/euank/go-kmsg-parser", version = "v2.0.0+incompatible", sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_evanphx_json_patch", importpath = "github.com/evanphx/json-patch", version = "v4.9.0+incompatible", sum = "h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_exponent_io_jsonpath", importpath = "github.com/exponent-io/jsonpath", version = "v0.0.0-20151013193312-d6023ce2651d", sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_farsightsec_golang_framestream", importpath = "github.com/farsightsec/golang-framestream", version = "v0.0.0-20190425193708-fa4b164d59b8", sum = "h1:/iPdQppoAsTfML+yqFSq2EBChiEMnRkh5WvhFgtWwcU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_fatih_camelcase", importpath = "github.com/fatih/camelcase", version = "v1.0.0", sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_fatih_color", importpath = "github.com/fatih/color", version = "v1.7.0", sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_flynn_go_shlex", importpath = "github.com/flynn/go-shlex", version = "v0.0.0-20150515145356-3f9db97f8568", sum = "h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_fullsailor_pkcs7", importpath = "github.com/fullsailor/pkcs7", version = "v0.0.0-20180613152042-8306686428a5", sum = "h1:v+vxrd9XS8uWIXG2RK0BHCnXc30qLVQXVqbK+IOmpXk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_ghodss_yaml", importpath = "github.com/ghodss/yaml", version = "v1.0.0", sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_delve_delve", importpath = "github.com/go-delve/delve", version = "v1.4.1", sum = "h1:kZs0umEv+VKnK84kY9/ZXWrakdLTeRTyYjFdgLelZCQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_logr_logr", importpath = "github.com/go-logr/logr", version = "v0.2.0", sum = "h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_analysis", importpath = "github.com/go-openapi/analysis", version = "v0.19.5", sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_errors", importpath = "github.com/go-openapi/errors", version = "v0.19.2", sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_jsonpointer", importpath = "github.com/go-openapi/jsonpointer", version = "v0.19.3", sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_jsonreference", importpath = "github.com/go-openapi/jsonreference", version = "v0.19.3", sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_loads", importpath = "github.com/go-openapi/loads", version = "v0.19.4", sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_runtime", importpath = "github.com/go-openapi/runtime", version = "v0.19.4", sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_spec", importpath = "github.com/go-openapi/spec", version = "v0.19.3", sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_strfmt", importpath = "github.com/go-openapi/strfmt", version = "v0.19.3", sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_swag", importpath = "github.com/go-openapi/swag", version = "v0.19.5", sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_openapi_validate", importpath = "github.com/go-openapi/validate", version = "v0.19.5", sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_go_stack_stack", importpath = "github.com/go-stack/stack", version = "v1.8.0", sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_godbus_dbus_v5", importpath = "github.com/godbus/dbus/v5", version = "v5.0.3", sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_gofrs_flock", importpath = "github.com/gofrs/flock", version = "v0.8.0", sum = "h1:MSdYClljsF3PbENUUEx85nkWfJSGfzYI9yEBZOJz6CY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_gogo_googleapis", importpath = "github.com/gogo/googleapis", version = "v1.3.2", sum = "h1:kX1es4djPJrsDhY7aZKJy7aZasdcB5oSOEphMjSB53c=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_gogo_protobuf", importpath = "github.com/gogo/protobuf", version = "v1.3.1", sum = "h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_golang_groupcache", importpath = "github.com/golang/groupcache", version = "v0.0.0-20191227052852-215e87163ea7", sum = "h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_btree", importpath = "github.com/google/btree", version = "v1.0.0", sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_cadvisor", importpath = "github.com/google/cadvisor", version = "v0.37.3", sum = "h1:qsH/np74sg1/tEe+bn+e2JIPFxrw6En3gCVuQdolc74=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_certificate_transparency_go", importpath = "github.com/google/certificate-transparency-go", version = "v1.1.0", sum = "h1:10MlrYzh5wfkToxWI4yJzffsxLfxcEDlOATMx/V9Kzw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_go_cmp", importpath = "github.com/google/go-cmp", version = "v0.4.0", sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_go_dap", importpath = "github.com/google/go-dap", version = "v0.2.0", sum = "h1:whjIGQRumwbR40qRU7CEKuFLmePUUc2s4Nt9DoXXxWk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_go_tpm", importpath = "github.com/google/go-tpm", version = "v0.1.2-0.20190725015402-ae6dd98980d4", sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_go_tpm_tools", importpath = "github.com/google/go-tpm-tools", version = "v0.0.0-20190731025042-f8c04ff88181", sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_gofuzz", importpath = "github.com/google/gofuzz", version = "v1.1.0", sum = "h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_gopacket", importpath = "github.com/google/gopacket", version = "v1.1.17", sum = "h1:rMrlX2ZY2UbvT+sdz3+6J+pp2z+msCq9MxTU6ymxbBY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_gvisor", importpath = "github.com/google/gvisor", version = "v0.0.0-20211029210316-b822923b706d", sum = "h1:DLypxrLRMq0P4f96vlutTfJpM5/Y8q6rDafgBU1pxAs=", patches = [ "//third_party/go/patches:gvisor.patch", "//third_party/go/patches:gvisor-build-against-newer-runtime-specs.patch", "//third_party/go/patches:gvisor-cgroup-fix.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_nftables", importpath = "github.com/google/nftables", version = "v0.0.0-20200316075819-7127d9d22474", sum = "h1:D6bN82zzK92ywYsE+Zjca7EHZCRZbcNTU3At7WdxQ+c=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_subcommands", importpath = "github.com/google/subcommands", version = "v1.0.2-0.20190508160503-636abe8753b8", sum = "h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_google_uuid", importpath = "github.com/google/uuid", version = "v1.1.1", sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_googleapis_gnostic", importpath = "github.com/googleapis/gnostic", version = "v0.4.1", sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_gorilla_websocket", importpath = "github.com/gorilla/websocket", version = "v1.4.0", sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_gregjones_httpcache", importpath = "github.com/gregjones/httpcache", version = "v0.0.0-20180305231024-9cad4c3443a7", sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_grpc_ecosystem_go_grpc_middleware", importpath = "github.com/grpc-ecosystem/go-grpc-middleware", version = "v1.0.1-0.20190118093823-f849b5445de4", sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_grpc_ecosystem_go_grpc_prometheus", importpath = "github.com/grpc-ecosystem/go-grpc-prometheus", version = "v1.2.0", sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_grpc_ecosystem_grpc_gateway", importpath = "github.com/grpc-ecosystem/grpc-gateway", version = "v1.9.5", sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_grpc_ecosystem_grpc_opentracing", importpath = "github.com/grpc-ecosystem/grpc-opentracing", version = "v0.0.0-20180507213350-8e809c8a8645", sum = "h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_grpc_grpc", importpath = "github.com/grpc/grpc", version = "v1.29.1", sum = "h1:oDOYav2X6WE7espebiQ//iP9N+/gGygUv6XuuyvkFMc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_hashicorp_errwrap", importpath = "github.com/hashicorp/errwrap", version = "v1.0.0", sum = "h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_hashicorp_go_multierror", importpath = "github.com/hashicorp/go-multierror", version = "v1.0.0", sum = "h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_hashicorp_golang_lru", importpath = "github.com/hashicorp/golang-lru", version = "v0.5.3", sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_hashicorp_hcl", importpath = "github.com/hashicorp/hcl", version = "v1.0.0", sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_hpcloud_tail", importpath = "github.com/hpcloud/tail", version = "v1.0.0", sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_huandu_xstrings", importpath = "github.com/huandu/xstrings", version = "v1.0.0", sum = "h1:pO2K/gKgKaat5LdpAhxhluX2GPQMaI3W5FUz/I/UnWk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_imdario_mergo", importpath = "github.com/imdario/mergo", version = "v0.3.7", sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_inconshreveable_mousetrap", importpath = "github.com/inconshreveable/mousetrap", version = "v1.0.0", sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_infobloxopen_go_trees", importpath = "github.com/infobloxopen/go-trees", version = "v0.0.0-20190313150506-2af4e13f9062", sum = "h1:d3VSuNcgTCn21dNMm8g412Fck/XWFmMj4nJhhHT7ZZ0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_insomniacslk_dhcp", importpath = "github.com/insomniacslk/dhcp", version = "v0.0.0-20200922210017-67c425063dca", sum = "h1:zhwTlFGM8ZkD5J/c43IWkxSJQWzhm20QWou8zajbCck=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_j_keck_arping", importpath = "github.com/j-keck/arping", version = "v0.0.0-20160618110441-2cf9dc699c56", sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_joho_godotenv", importpath = "github.com/joho/godotenv", version = "v1.3.0", sum = "h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_jonboulle_clockwork", importpath = "github.com/jonboulle/clockwork", version = "v0.1.0", sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_json_iterator_go", importpath = "github.com/json-iterator/go", version = "v1.1.10", sum = "h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_karrick_godirwalk", importpath = "github.com/karrick/godirwalk", version = "v1.7.5", sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_kevinburke_go_bindata", importpath = "github.com/kevinburke/go-bindata", version = "v3.16.0+incompatible", sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_koneu_natend", importpath = "github.com/koneu/natend", version = "v0.0.0-20150829182554-ec0926ea948d", sum = "h1:MFX8DxRnKMY/2M3H61iSsVbo/n3h0MWGmWNN1UViOU0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_konsorten_go_windows_terminal_sequences", importpath = "github.com/konsorten/go-windows-terminal-sequences", version = "v1.0.3", sum = "h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_kr_pretty", importpath = "github.com/kr/pretty", version = "v0.1.0", sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_kr_pty", importpath = "github.com/kr/pty", version = "v1.1.4-0.20190131011033-7dc38fb350b1", sum = "h1:zc0R6cOw98cMengLA0fvU55mqbnN7sd/tBMLzSejp+M=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_liggitt_tabwriter", importpath = "github.com/liggitt/tabwriter", version = "v0.0.0-20181228230101-89fcab3d43de", sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_lithammer_dedent", importpath = "github.com/lithammer/dedent", version = "v1.1.0", sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_magiconair_properties", importpath = "github.com/magiconair/properties", version = "v1.8.1", sum = "h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mailru_easyjson", importpath = "github.com/mailru/easyjson", version = "v0.7.0", sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mattn_go_colorable", importpath = "github.com/mattn/go-colorable", version = "v0.0.9", sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mattn_go_isatty", importpath = "github.com/mattn/go-isatty", version = "v0.0.4", sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mattn_go_runewidth", importpath = "github.com/mattn/go-runewidth", version = "v0.0.2", sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mattn_go_shellwords", importpath = "github.com/mattn/go-shellwords", version = "v1.0.11", sum = "h1:vCoR9VPpsk/TZFW2JwK5I9S0xdrtUq2bph6/YjEPnaw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_matttproud_golang_protobuf_extensions", importpath = "github.com/matttproud/golang_protobuf_extensions", version = "v1.0.1", sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mdlayher_ethernet", importpath = "github.com/mdlayher/ethernet", version = "v0.0.0-20190606142754-0394541c37b7", sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mdlayher_genetlink", importpath = "github.com/mdlayher/genetlink", version = "v1.0.0", sum = "h1:OoHN1OdyEIkScEmRgxLEe2M9U8ClMytqA5niynLtfj0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mdlayher_netlink", importpath = "github.com/mdlayher/netlink", version = "v1.1.0", sum = "h1:mpdLgm+brq10nI9zM1BpX1kpDbh3NLl3RSnVq6ZSkfg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mdlayher_raw", importpath = "github.com/mdlayher/raw", version = "v0.0.0-20191009151244-50f2db8cc065", sum = "h1:aFkJ6lx4FPip+S+Uw4aTegFMct9shDvP+79PsSxpm3w=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_miekg_dns", importpath = "github.com/miekg/dns", version = "v1.1.29", sum = "h1:xHBEhR+t5RzcFJjBLJlax2daXOrTYtr9z4WdKEfWFzg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mindprince_gonvml", importpath = "github.com/mindprince/gonvml", version = "v0.0.0-20190828220739-9ebdce4bb989", sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mistifyio_go_zfs", importpath = "github.com/mistifyio/go-zfs", version = "v2.1.2-0.20190413222219-f784269be439+incompatible", sum = "h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mitchellh_go_wordwrap", importpath = "github.com/mitchellh/go-wordwrap", version = "v1.0.0", sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mitchellh_mapstructure", importpath = "github.com/mitchellh/mapstructure", version = "v1.1.2", sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_moby_sys_mountinfo", importpath = "github.com/moby/sys/mountinfo", version = "v0.1.3", sum = "h1:KIrhRO14+AkwKvG/g2yIpNMOUVZ02xNhOw8KY1WsLOI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_moby_term", importpath = "github.com/moby/term", version = "v0.0.0-20200312100748-672ec06f55cd", sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_modern_go_concurrent", importpath = "github.com/modern-go/concurrent", version = "v0.0.0-20180306012644-bacd9c7ef1dd", sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_modern_go_reflect2", importpath = "github.com/modern-go/reflect2", version = "v1.0.1", sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mohae_deepcopy", importpath = "github.com/mohae/deepcopy", version = "v0.0.0-20170308212314-bb9b5e7adda9", sum = "h1:Sha2bQdoWE5YQPTlJOL31rmce94/tYi113SlFo1xQ2c=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_morikuni_aec", importpath = "github.com/morikuni/aec", version = "v1.0.0", sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mrunalp_fileutils", importpath = "github.com/mrunalp/fileutils", version = "v0.0.0-20200520151820-abd8a0e76976", sum = "h1:aZQToFSLH8ejFeSkTc3r3L4dPImcj7Ib/KgmkQqbGGg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_muesli_reflow", importpath = "github.com/muesli/reflow", version = "v0.0.0-20191128061954-86f094cbed14", sum = "h1:99aDTygRy9yEwggATz+ZLrDFRsjRog5BqbAfsr47Ztw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_munnerz_goautoneg", importpath = "github.com/munnerz/goautoneg", version = "v0.0.0-20191010083416-a7dc8b61c822", sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_mxk_go_flowrate", importpath = "github.com/mxk/go-flowrate", version = "v0.0.0-20140419014527-cca7078d478f", sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_olekukonko_tablewriter", importpath = "github.com/olekukonko/tablewriter", version = "v0.0.0-20170122224234-a0225b3f23b5", sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_onsi_ginkgo", importpath = "github.com/onsi/ginkgo", version = "v1.11.0", sum = "h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_onsi_gomega", importpath = "github.com/onsi/gomega", version = "v1.7.0", sum = "h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_opencontainers_go_digest", importpath = "github.com/opencontainers/go-digest", version = "v1.0.0", sum = "h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_opencontainers_image_spec", importpath = "github.com/opencontainers/image-spec", version = "v1.0.1", sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_opencontainers_runc", importpath = "github.com/opencontainers/runc", version = "v1.0.0-rc92", sum = "h1:+IczUKCRzDzFDnw99O/PAqrcBBCoRp9xN3cB1SYSNS4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_opencontainers_runtime_spec", importpath = "github.com/opencontainers/runtime-spec", version = "v1.0.3-0.20200728170252-4d89ac9fbff6", sum = "h1:NhsM2gc769rVWDqJvapK37r+7+CBXI8xHhnfnt8uQsg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_opencontainers_selinux", importpath = "github.com/opencontainers/selinux", version = "v1.6.0", sum = "h1:+bIAS/Za3q5FTwWym4fTB0vObnfCf3G/NC7K6Jx62mY=", build_tags = [ "selinux", ], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_opentracing_opentracing_go", importpath = "github.com/opentracing/opentracing-go", version = "v1.1.0", sum = "h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_peterbourgon_diskv", importpath = "github.com/peterbourgon/diskv", version = "v2.0.1+incompatible", sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_peterh_liner", importpath = "github.com/peterh/liner", version = "v0.0.0-20170317030525-88609521dc4b", sum = "h1:8uaXtUkxiy+T/zdLWuxa/PG4so0TPZDZfafFNNSaptE=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_pierrec_lz4", importpath = "github.com/pierrec/lz4", version = "v2.3.0+incompatible", sum = "h1:CZzRn4Ut9GbUkHlQ7jqBXeZQV41ZSKWFc302ZU6lUTk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_pkg_errors", importpath = "github.com/pkg/errors", version = "v0.9.1", sum = "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_pkg_xattr", importpath = "github.com/pkg/xattr", version = "v0.4.1", sum = "h1:dhclzL6EqOXNaPDWqoeb9tIxATfBSmjqL0b4DpSjwRw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_pquerna_cachecontrol", importpath = "github.com/pquerna/cachecontrol", version = "v0.0.0-20171018203845-0dec1b30a021", sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_prometheus_client_golang", importpath = "github.com/prometheus/client_golang", version = "v1.6.0", sum = "h1:YVPodQOcK15POxhgARIvnDRVpLcuK8mglnMrWfyrw6A=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_prometheus_client_model", importpath = "github.com/prometheus/client_model", version = "v0.2.0", sum = "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_prometheus_common", importpath = "github.com/prometheus/common", version = "v0.9.1", sum = "h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_prometheus_procfs", importpath = "github.com/prometheus/procfs", version = "v0.0.11", sum = "h1:DhHlBtkHWPYi8O2y31JkK0TF+DGM+51OopZjH/Ia5qI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_pseudomuto_protoc_gen_doc", importpath = "github.com/pseudomuto/protoc-gen-doc", version = "v1.5.0", sum = "h1:pHZp0MEiT68jrZV8js8BS7E9ZEnlSLegoQbbtXj5lfo=", patches = [ "//third_party/go/patches:protoc-gen-doc-no-gogo.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_pseudomuto_protokit", importpath = "github.com/pseudomuto/protokit", version = "v0.2.0", sum = "h1:hlnBDcy3YEDXH7kc9gV+NLaN0cDzhDvD1s7Y6FZ8RpM=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_rekby_gpt", importpath = "github.com/rekby/gpt", version = "v0.0.0-20200219180433-a930afbc6edc", sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_robfig_cron", importpath = "github.com/robfig/cron", version = "v1.1.0", sum = "h1:jk4/Hud3TTdcrJgUOBgsqrZBarcxl6ADIjSC2iniwLY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_russross_blackfriday", importpath = "github.com/russross/blackfriday", version = "v1.5.2", sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_russross_blackfriday_v2", importpath = "github.com/russross/blackfriday/v2", version = "v2.0.1", sum = "h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_safchain_ethtool", importpath = "github.com/safchain/ethtool", version = "v0.0.0-20190326074333-42ed695e3de8", sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_sbezverk_nfproxy", importpath = "github.com/sbezverk/nfproxy", version = "v0.0.0-20200514180651-7fac5f39824e", sum = "h1:fJ2lHQ7ZUjmgJbvVQ509ioBmrGHcbvlwfjUieExw/dU=", patches = [ "//third_party/go/patches:nfproxy.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_sbezverk_nftableslib", importpath = "github.com/sbezverk/nftableslib", version = "v0.0.0-20200402150358-c20bed91f482", sum = "h1:k7gEZ/EwJhHDTRXFUZQlE4/p1cmoha7zL7PWCDG3ZHQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_shurcool_sanitized_anchor_name", importpath = "github.com/shurcooL/sanitized_anchor_name", version = "v1.0.0", sum = "h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_sirupsen_logrus", importpath = "github.com/sirupsen/logrus", version = "v1.6.0", sum = "h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_soheilhy_cmux", importpath = "github.com/soheilhy/cmux", version = "v0.1.4", sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_spf13_afero", importpath = "github.com/spf13/afero", version = "v1.2.2", sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_spf13_cast", importpath = "github.com/spf13/cast", version = "v1.3.0", sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_spf13_cobra", importpath = "github.com/spf13/cobra", version = "v1.2.1", sum = "h1:+KmjbUw1hriSNMF55oPrkZcb27aECyrj8V2ytv7kWDw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_spf13_jwalterweatherman", importpath = "github.com/spf13/jwalterweatherman", version = "v1.1.0", sum = "h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_spf13_pflag", importpath = "github.com/spf13/pflag", version = "v1.0.5", sum = "h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_spf13_viper", importpath = "github.com/spf13/viper", version = "v1.9.0", sum = "h1:yR6EXjTp0y0cLN8OZg1CRZmOBdI88UcGkhgyJhu6nZk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_stretchr_testify", importpath = "github.com/stretchr/testify", version = "v1.4.0", sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_subosito_gotenv", importpath = "github.com/subosito/gotenv", version = "v1.2.0", sum = "h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_syndtr_gocapability", importpath = "github.com/syndtr/gocapability", version = "v0.0.0-20180916011248-d98352740cb2", sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_tchap_go_patricia", importpath = "github.com/tchap/go-patricia", version = "v2.2.6+incompatible", sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_tmc_grpc_websocket_proxy", importpath = "github.com/tmc/grpc-websocket-proxy", version = "v0.0.0-20190109142713-0ad062ec5ee5", sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_u_root_u_root", importpath = "github.com/u-root/u-root", version = "v7.0.0+incompatible", sum = "h1:u+KSS04pSxJGI5E7WE4Bs9+Zd75QjFv+REkjy/aoAc8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_ulikunitz_xz", importpath = "github.com/ulikunitz/xz", version = "v0.5.6", sum = "h1:jGHAfXawEGZQ3blwU5wnWKQJvAraT7Ftq9EXjnXYgt8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_urfave_cli", importpath = "github.com/urfave/cli", version = "v1.22.1", sum = "h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_vishvananda_netlink", importpath = "github.com/vishvananda/netlink", version = "v1.1.0", sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_vishvananda_netns", importpath = "github.com/vishvananda/netns", version = "v0.0.0-20200520041808-52d707b772fe", sum = "h1:mjAZxE1nh8yvuwhGHpdDqdhtNu2dgbpk93TwoXuk5so=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_willf_bitset", importpath = "github.com/willf/bitset", version = "v1.1.11", sum = "h1:N7Z7E9UvjW+sGsEl7k/SJrvY2reP1A07MrGuCjIOjRE=", build_tags = [ "selinux", ], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_xiang90_probing", importpath = "github.com/xiang90/probing", version = "v0.0.0-20190116061207-43a291ad63a2", sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_github_yalue_native_endian", importpath = "github.com/yalue/native_endian", version = "v0.0.0-20180607135909-51013b03be4f", sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_etcd_go_bbolt", importpath = "go.etcd.io/bbolt", version = "v1.3.5", sum = "h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_etcd_go_etcd", importpath = "go.etcd.io/etcd", version = "v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5", sum = "h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_mongodb_go_mongo_driver", importpath = "go.mongodb.org/mongo-driver", version = "v1.1.2", sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_opencensus_go", importpath = "go.opencensus.io", version = "v0.22.0", sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "net_starlark_go", importpath = "go.starlark.net", version = "v0.0.0-20190702223751-32f345186213", sum = "h1:lkYv5AKwvvduv5XWP6szk/bvvgO6aDeUujhZQXIFTes=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_uber_go_atomic", importpath = "go.uber.org/atomic", version = "v1.4.0", sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_uber_go_multierr", importpath = "go.uber.org/multierr", version = "v1.1.0", sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_uber_go_zap", importpath = "go.uber.org/zap", version = "v1.15.0", sum = "h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_arch", importpath = "golang.org/x/arch", version = "v0.0.0-20190927153633-4e8777c89be4", sum = "h1:QlVATYS7JBoZMVaf+cNjb90WD/beKVHnIxFKT4QaHVI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_crypto", importpath = "golang.org/x/crypto", version = "v0.0.0-20200622213623-75b288015ac9", sum = "h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_mod", importpath = "golang.org/x/mod", version = "v0.3.0", sum = "h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=", build_extra_args = [ "-go_naming_convention=import_alias", "-go_naming_convention_external=import_alias", ], ) go_repository( name = "org_golang_x_net", importpath = "golang.org/x/net", version = "v0.0.0-20201110031124-69a78807bb2b", sum = "h1:uwuIcX0g4Yl1NC5XAz37xsr2lTtcqevgzYNVt49waME=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_oauth2", importpath = "golang.org/x/oauth2", version = "v0.0.0-20191202225959-858c2ad4c8b6", sum = "h1:pE8b58s1HRDMi8RDc79m0HISf9D4TzseP40cEA6IGfs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_sync", importpath = "golang.org/x/sync", version = "v0.0.0-20181108010431-42b317875d0f", sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=", build_extra_args = [ "-go_naming_convention=import_alias", "-go_naming_convention_external=import_alias", ], ) go_repository( name = "org_golang_x_text", importpath = "golang.org/x/text", version = "v0.3.0", sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_time", importpath = "golang.org/x/time", version = "v0.0.0-20191024005414-555d28b269f0", sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_tools", importpath = "golang.org/x/tools", version = "v0.1.2-0.20210518182153-17b346669257", sum = "h1:e7SbNJfMEurLnwdNnaP7LItYhtCPChdiq+j3RwB8YGY=", patches = [ "//third_party/go/patches:goimports-group-merging.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_x_xerrors", importpath = "golang.org/x/xerrors", version = "v0.0.0-20191204190536-9bdfabe68543", sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "com_zx2c4_golang_wireguard_wgctrl", importpath = "golang.zx2c4.com/wireguard/wgctrl", version = "v0.0.0-20200515170644-ec7f26be9d9e", sum = "h1:fqDhK9OlzaaiFjnyaAfR9Q1RPKCK7OCTLlHGP9f74Nk=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_gonum_v1_gonum", importpath = "gonum.org/v1/gonum", version = "v0.6.2", sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_google_genproto", importpath = "google.golang.org/genproto", version = "v0.0.0-20200224152610-e50cd9704f63", sum = "h1:YzfoEYWbODU5Fbt37+h7X16BWQbad7Q4S6gclTKFXM8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "org_golang_google_grpc", importpath = "google.golang.org/grpc", version = "v1.29.1", sum = "h1:EC2SB8S04d2r73uptxphDSUG+kTKVgjRPF+N3xpxRB4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_djherbis_times_v1", importpath = "gopkg.in/djherbis/times.v1", version = "v1.2.0", sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_fsnotify_v1", importpath = "gopkg.in/fsnotify.v1", version = "v1.4.7", sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_inf_v0", importpath = "gopkg.in/inf.v0", version = "v0.9.1", sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_ini_v1", importpath = "gopkg.in/ini.v1", version = "v1.63.2", sum = "h1:tGK/CyBg7SMzb60vP1M03vNZ3VDu3wGQJwn7Sxi9r3c=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_natefinch_lumberjack_v2", importpath = "gopkg.in/natefinch/lumberjack.v2", version = "v2.0.0", sum = "h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_square_go_jose_v2", importpath = "gopkg.in/square/go-jose.v2", version = "v2.2.2", sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_tomb_v1", importpath = "gopkg.in/tomb.v1", version = "v1.0.0-20141024135613-dd632973f1e7", sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "in_gopkg_yaml_v2", importpath = "gopkg.in/yaml.v2", version = "v2.2.8", sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_api", importpath = "k8s.io/api", version = "v0.19.7", sum = "h1:MpHhls03C2pyzoYcpbe4QqYiiZjdvW+tuWq6TbjV14Y=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_apiextensions_apiserver", importpath = "k8s.io/apiextensions-apiserver", version = "v0.19.7", sum = "h1:aV9DANMSCCYBEMbtoT/5oesrtcciQrjy9yqWVtZZL5A=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_apimachinery", importpath = "k8s.io/apimachinery", version = "v0.19.8-rc.0", sum = "h1:/vt04+wL+Y79Qsu8hAo2K4QJA+AKGkJCYmoTTVrUiPQ=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_apiserver", importpath = "k8s.io/apiserver", version = "v0.19.7", sum = "h1:fOOELJ9TNC6DgKL3GUkQLE/EBMLjwBseTstx2eRP61o=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_cli_runtime", importpath = "k8s.io/cli-runtime", version = "v0.19.7", sum = "h1:VkHsqrQYCD6+yBm2k9lOxLJtfo1tmb/TdYIHQ2RSCsY=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_client_go", importpath = "k8s.io/client-go", version = "v0.19.7", sum = "h1:SoJ4mzZ9LyXBGDe8MmpMznw0CwQ1ITWgsmG7GixvhUU=", pre_patches = [ "//third_party/go/patches:k8s-client-go.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_cloud_provider", importpath = "k8s.io/cloud-provider", version = "v0.19.7", sum = "h1:01fiPTLkTU/MNKZBcMmeYQ5DWqRS4d3GhYGGGlkjgOw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_cluster_bootstrap", importpath = "k8s.io/cluster-bootstrap", version = "v0.19.7", sum = "h1:xlI+YfeS5gOVa33WVh1viiPZMDN9j7BAiY0iJkg2LwI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_code_generator", importpath = "k8s.io/code-generator", version = "v0.19.9-rc.0", sum = "h1:ci5Y09V0Uiim61fltZsjHYp+i6eNaMMmtIlIveHqQ9Y=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_component_base", importpath = "k8s.io/component-base", version = "v0.19.7", sum = "h1:ZXS2VRWOWBOc2fTd1zjzhi/b/mkqFT9FDqiNsn1cH30=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_cri_api", importpath = "k8s.io/cri-api", version = "v0.19.8-rc.0", sum = "h1:aXNNIIoVcmIB/mlz/otcULQOgnErxnLB4uaWENHKblA=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_csi_translation_lib", importpath = "k8s.io/csi-translation-lib", version = "v0.19.7", sum = "h1:Spr0XWqXufEUQA47axmPTm1xOabdMYG9MUbJVaRRb0g=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_gengo", importpath = "k8s.io/gengo", version = "v0.0.0-20200428234225-8167cfdcfc14", sum = "h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_heapster", importpath = "k8s.io/heapster", version = "v1.2.0-beta.1", sum = "h1:lUsE/AHOMHpi3MLlBEkaU8Esxm5QhdyCrv1o7ot0s84=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_klog_v2", importpath = "k8s.io/klog/v2", version = "v2.2.0", sum = "h1:XRvcwJozkgZ1UQJmfMGpvRthQHOvihEhYtDfAaxMz/A=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kube_aggregator", importpath = "k8s.io/kube-aggregator", version = "v0.19.7", sum = "h1:Eol5vPNFKaDScdVuTh0AofhuSr4cJxP5Vfv8JXW8OAQ=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kube_controller_manager", importpath = "k8s.io/kube-controller-manager", version = "v0.19.7", sum = "h1:3rNXjHM5LHcv2HiO2JjdV4yW3EN+2tCPaKXWL/Cl8TM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kube_openapi", importpath = "k8s.io/kube-openapi", version = "v0.0.0-20200805222855-6aeccd4b50c6", sum = "h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kube_proxy", importpath = "k8s.io/kube-proxy", version = "v0.19.7", sum = "h1:QQUwEnHA1jawodclndlmK/6Ifc9XVNlUaQ4Vq5RVbI8=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kube_scheduler", importpath = "k8s.io/kube-scheduler", version = "v0.19.7", sum = "h1:TlQFoH7rATVqU7myNZ4FBgnXdGIwR7iBBNk3ir8Y9WM=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kubectl", importpath = "k8s.io/kubectl", version = "v0.19.7", sum = "h1:pSsha+MBr9KLhn0IKrRikeAZ7g2oeShIGHLgqAzE3Ak=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kubelet", importpath = "k8s.io/kubelet", version = "v0.19.7", sum = "h1:cPp0fXN99cxyXeoI3nG2ZBORUvR0liT+bg6ofCybJzw=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_kubernetes", importpath = "k8s.io/kubernetes", version = "v1.19.7", sum = "h1:Yk9W5SL1KR2mwy0nNZwjFXNImfK7ihrbKhXttidNTiE=", build_file_proto_mode = "disable", build_tags = [ "providerless", ], patches = [ "//third_party/go/patches:k8s-kubernetes.patch", "//third_party/go/patches:k8s-kubernetes-build.patch", "//third_party/go/patches:k8s-native-metrics.patch", "//third_party/go/patches:k8s-use-native.patch", "//third_party/go/patches:k8s-revert-seccomp-runtime-default.patch", "//third_party/go/patches:k8s-removed-block-device-pseudo-locks.patch", ], pre_patches = [ "//third_party/go/patches:k8s-e2e-tests-providerless.patch", "//third_party/go/patches:k8s-fix-paths.patch", "//third_party/go/patches:k8s-fix-logs-path.patch", "//third_party/go/patches:k8s-drop-legacy-log-path.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_legacy_cloud_providers", importpath = "k8s.io/legacy-cloud-providers", version = "v0.19.7", sum = "h1:YJ/l/8/Hn56I9m1cudK8aNypRA/NvI/hYhg8fo/CTus=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_metrics", importpath = "k8s.io/metrics", version = "v0.19.7", sum = "h1:fpTtFhNtS0DwJiYGGsL4YoSjHlLw8qugkgw3EXSWaUA=", build_file_proto_mode = "disable", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_repo_infra", importpath = "k8s.io/repo-infra", version = "v0.1.4-0.20210105022653-a3483874bd37", sum = "h1:0GPavEcPKBA0rYl7f6dO0mXYmx7t9RaXD3be2g23Ps4=", pre_patches = [ "//third_party/go/patches:k8s-infra-bzl4-compat.patch", "//third_party/go/patches:k8s-infra-fix-go116.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_sample_apiserver", importpath = "k8s.io/sample-apiserver", version = "v0.19.7", sum = "h1:ZWD6dsvqpqhWj3jKRb19/m/bo/0r+TRgjkX+h5m7f4g=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_utils", importpath = "k8s.io/utils", version = "v0.0.0-20200729134348-d5654de09c73", sum = "h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=", patches = [ "//third_party/go/patches:k8s-native-mounter.patch", ], patch_args = ["-p1"], build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client", importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client", version = "v0.0.9", sum = "h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_sigs_kustomize", importpath = "sigs.k8s.io/kustomize", version = "v2.0.3+incompatible", sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_sigs_structured_merge_diff_v4", importpath = "sigs.k8s.io/structured-merge-diff/v4", version = "v4.0.1", sum = "h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "io_k8s_sigs_yaml", importpath = "sigs.k8s.io/yaml", version = "v1.2.0", sum = "h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], ) go_repository( name = "ml_vbom_util", importpath = "vbom.ml/util", version = "v0.0.0-20160121211510-db5cfe13f5cc", sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=", build_extra_args = [ "-go_naming_convention=go_default_library", "-go_naming_convention_external=go_default_library", ], )
load('@bazel_gazelle//:deps.bzl', 'go_repository') def go_repositories(): go_repository(name='com_google_cloud_go', importpath='cloud.google.com/go', version='v0.51.0', sum='h1:PvKAVQWCtlGUSlZkGW3QLelKaWq7KYv/MW1EboG8bfM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_azure_go_ansiterm', importpath='github.com/Azure/go-ansiterm', version='v0.0.0-20170929234023-d6e3b3328b78', sum='h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_burntsushi_toml', importpath='github.com/BurntSushi/toml', version='v0.3.1', sum='h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_makenowjust_heredoc', importpath='github.com/MakeNowJust/heredoc', version='v0.0.0-20170808103936-bb23615498cd', sum='h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_masterminds_semver', importpath='github.com/Masterminds/semver', version='v1.4.2', sum='h1:WBLTQ37jOCzSLtXNdoo8bNM8876KhNqOKvrlGITgsTc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_masterminds_sprig', importpath='github.com/Masterminds/sprig', version='v2.15.0+incompatible', sum='h1:0gSxPGWS9PAr7U2NsQ2YQg6juRDINkUyuvbb4b2Xm8w=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_microsoft_go_winio', importpath='github.com/Microsoft/go-winio', version='v0.4.14', sum='h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_microsoft_hcsshim', importpath='github.com/Microsoft/hcsshim', version='v0.8.10', sum='h1:k5wTrpnVU2/xv8ZuzGkbXVd3js5zJ8RnumPo5RxiIxU=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_nytimes_gziphandler', importpath='github.com/NYTimes/gziphandler', version='v0.0.0-20170623195520-56545f4a5d46', sum='h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_puerkitobio_purell', importpath='github.com/PuerkitoBio/purell', version='v1.1.1', sum='h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_puerkitobio_urlesc', importpath='github.com/PuerkitoBio/urlesc', version='v0.0.0-20170810143723-de5bf2ad4578', sum='h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_adrg_xdg', importpath='github.com/adrg/xdg', version='v0.4.0', sum='h1:RzRqFcjH4nE5C6oTAxhBtoE2IRyjBSa62SCbyPidvls=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_alexflint_go_filemutex', importpath='github.com/alexflint/go-filemutex', version='v0.0.0-20171022225611-72bdc8eae2ae', sum='h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_aokoli_goutils', importpath='github.com/aokoli/goutils', version='v1.0.1', sum='h1:7fpzNGoJ3VA8qcrm++XEE1QUe0mIwNeLa02Nwq7RDkg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_armon_circbuf', importpath='github.com/armon/circbuf', version='v0.0.0-20150827004946-bbbad097214e', sum='h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_asaskevich_govalidator', importpath='github.com/asaskevich/govalidator', version='v0.0.0-20190424111038-f61b66f89f4a', sum='h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_beorn7_perks', importpath='github.com/beorn7/perks', version='v1.0.1', sum='h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_bgentry_speakeasy', importpath='github.com/bgentry/speakeasy', version='v0.1.0', sum='h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_blang_semver', importpath='github.com/blang/semver', version='v3.5.0+incompatible', sum='h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_caddyserver_caddy', importpath='github.com/caddyserver/caddy', version='v1.0.5', sum='h1:5B1Hs0UF2x2tggr2X9jL2qOZtDXbIWQb9YLbmlxHSuM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cenkalti_backoff', importpath='github.com/cenkalti/backoff', version='v1.1.1-0.20190506075156-2146c9339422', sum='h1:8eZxmY1yvxGHzdzTEhI09npjMVGzNAdrqzruTX6jcK4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cenkalti_backoff_v4', importpath='github.com/cenkalti/backoff/v4', version='v4.0.2', sum='h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cespare_xxhash_v2', importpath='github.com/cespare/xxhash/v2', version='v2.1.1', sum='h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_chai2010_gettext_go', importpath='github.com/chai2010/gettext-go', version='v0.0.0-20160711120539-c6fed771bfd5', sum='h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_checkpoint_restore_go_criu_v4', importpath='github.com/checkpoint-restore/go-criu/v4', version='v4.1.0', sum='h1:WW2B2uxx9KWF6bGlHqhm8Okiafwwx7Y2kcpn8lCpjgo=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cilium_ebpf', importpath='github.com/cilium/ebpf', version='v0.0.0-20200702112145-1c8d4c9ef775', sum='h1:cHzBGGVew0ezFsq2grfy2RsB8hO/eNyBgOLHBCqfR1U=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_container_storage_interface_spec', importpath='github.com/container-storage-interface/spec', version='v1.2.0', sum='h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_btrfs', importpath='github.com/containerd/btrfs', version='v0.0.0-20201111183144-404b9149801e', sum='h1:chFw/cg0TDyK43qm8DKbblny2WHc4ML+j1KOkdEp9pI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_cgroups', importpath='github.com/containerd/cgroups', version='v0.0.0-20200710171044-318312a37340', sum='h1:9atoWyI9RtXFwf7UDbme/6M8Ud0rFrx+Q3ZWgSnsxtw=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_console', importpath='github.com/containerd/console', version='v1.0.0', sum='h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_containerd', importpath='github.com/containerd/containerd', version='v1.4.3', sum='h1:ijQT13JedHSHrQGWFcGEwzcNKrAGIiZ+jSD5QQG07SY=', build_file_proto_mode='disable', build_tags=['no_zfs', 'no_aufs', 'no_devicemapper', 'no_btrfs'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_continuity', importpath='github.com/containerd/continuity', version='v0.0.0-20200710164510-efbc4488d8fe', sum='h1:PEmIrUvwG9Yyv+0WKZqjXfSFDeZjs/q15g0m08BYS9k=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_cri', importpath='github.com/containerd/cri', version='v1.19.1-0.20201126003523-adc0b6a578ed', sum='h1:M2yIwrNSafh4rW/yXAiAlSqpydW7vjvDjZ0ClMb+EMQ=', build_file_proto_mode='disable', patches=['//third_party/go/patches:containerd-netns-statedir.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_fifo', importpath='github.com/containerd/fifo', version='v0.0.0-20200410184934-f15a3290365b', sum='h1:qUtCegLdOUVfVJOw+KDg6eJyE1TGvLlkGEd1091kSSQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_go_cni', importpath='github.com/containerd/go-cni', version='v1.0.1', sum='h1:VXr2EkOPD0v1gu7CKfof6XzEIDzsE/dI9yj/W7PSWLs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_go_runc', importpath='github.com/containerd/go-runc', version='v0.0.0-20200220073739-7016d3ce2328', sum='h1:PRTagVMbJcCezLcHXe8UJvR1oBzp2lG3CEumeFOLOds=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_imgcrypt', importpath='github.com/containerd/imgcrypt', version='v1.0.1', sum='h1:IyI3IIP4m6zrNFuNFT7HizGVcuD6BYJFpdM1JvPKCbQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_ttrpc', importpath='github.com/containerd/ttrpc', version='v1.0.2-0.20210119122237-222b428f008e', sum='h1:+Fbjfo26pg4HtkAw9sC/YhUwaAb16355o/J/oHkyCDc=', replace='github.com/monogon-dev/ttrpc', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containerd_typeurl', importpath='github.com/containerd/typeurl', version='v1.0.1', sum='h1:PvuK4E3D5S5q6IqsPDCy928FhP0LUIGcmZ/Yhgp5Djw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containernetworking_cni', importpath='github.com/containernetworking/cni', version='v0.8.0', sum='h1:BT9lpgGoH4jw3lFC7Odz2prU5ruiYKcgAjMCbgybcKI=', patches=['//third_party/go/patches:cni-fix-cachepath.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containernetworking_plugins', importpath='github.com/containernetworking/plugins', version='v0.8.2', sum='h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_containers_ocicrypt', importpath='github.com/containers/ocicrypt', version='v1.0.1', sum='h1:EToign46OSLTFWnb2oNj9RG3XDnkOX8r28ZIXUuk5Pc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coredns_coredns', importpath='github.com/coredns/coredns', version='v1.7.0', sum='h1:Tm2ZSdhTk+4okgjUp4K6KYzvBI2u34cdD4fKQRC4Eeo=', pre_patches=['//third_party/go/patches:coredns-remove-unused-plugins.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coreos_go_iptables', importpath='github.com/coreos/go-iptables', version='v0.4.2', sum='h1:KH0EwId05JwWIfb96gWvkiT2cbuOu8ygqUaB+yPAwIg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coreos_go_oidc', importpath='github.com/coreos/go-oidc', version='v2.1.0+incompatible', sum='h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coreos_go_semver', importpath='github.com/coreos/go-semver', version='v0.3.0', sum='h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coreos_go_systemd', importpath='github.com/coreos/go-systemd', version='v0.0.0-20190321100706-95778dfbb74e', sum='h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coreos_go_systemd_v22', importpath='github.com/coreos/go-systemd/v22', version='v22.1.0', sum='h1:kq/SbG2BCKLkDKkjQf5OWwKWUKj1lgs3lFI4PxnR5lg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_coreos_pkg', importpath='github.com/coreos/pkg', version='v0.0.0-20180928190104-399ea9e2e55f', sum='h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_corverroos_commentwrap', importpath='github.com/corverroos/commentwrap', version='v0.0.0-20191204065359-2926638be44c', sum='h1:toeMwwechJKH0iwOoGJLZK6x42Ba9si+816KxqmgFc8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cosiner_argv', importpath='github.com/cosiner/argv', version='v0.0.0-20170225145430-13bacc38a0a5', sum='h1:rIXlvz2IWiupMFlC45cZCXZFvKX/ExBcSLrDy2G0Lp8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cpuguy83_go_md2man_v2', importpath='github.com/cpuguy83/go-md2man/v2', version='v2.0.0', sum='h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_cyphar_filepath_securejoin', importpath='github.com/cyphar/filepath-securejoin', version='v0.2.2', sum='h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_davecgh_go_spew', importpath='github.com/davecgh/go-spew', version='v1.1.1', sum='h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_daviddengcn_go_colortext', importpath='github.com/daviddengcn/go-colortext', version='v0.0.0-20160507010035-511bcaf42ccd', sum='h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_dgrijalva_jwt_go', importpath='github.com/dgrijalva/jwt-go', version='v3.2.0+incompatible', sum='h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_diskfs_go_diskfs', importpath='github.com/diskfs/go-diskfs', version='v1.2.0', sum='h1:Ow4xorEDw1VNYKbC+SA/qQNwi5gWIwdKUxmUcLFST24=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_dnstap_golang_dnstap', importpath='github.com/dnstap/golang-dnstap', version='v0.2.0', sum='h1:+NrmP4mkaTeKYV7xJ5FXpUxRn0RpcgoQcsOCTS8WQPk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_distribution', importpath='github.com/docker/distribution', version='v2.7.1+incompatible', sum='h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_docker', importpath='github.com/docker/docker', version='v17.12.0-ce-rc1.0.20200310163718-4634ce647cf2+incompatible', sum='h1:ax4NateCD5bjRTqLvQBlFrSUPOoZRgEXWpJ6Bmu6OO0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_go_connections', importpath='github.com/docker/go-connections', version='v0.4.0', sum='h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_go_events', importpath='github.com/docker/go-events', version='v0.0.0-20190806004212-e31b211e4f1c', sum='h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_go_metrics', importpath='github.com/docker/go-metrics', version='v0.0.1', sum='h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_go_units', importpath='github.com/docker/go-units', version='v0.4.0', sum='h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_docker_spdystream', importpath='github.com/docker/spdystream', version='v0.0.0-20160310174837-449fdfce4d96', sum='h1:cenwrSVm+Z7QLSV/BsnenAOcDXdX4cMv4wP0B/5QbPg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_dustin_go_humanize', importpath='github.com/dustin/go-humanize', version='v1.0.0', sum='h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_elazarl_goproxy', importpath='github.com/elazarl/goproxy', version='v0.0.0-20180725130230-947c36da3153', sum='h1:yUdfgN0XgIJw7foRItutHYUIhlcKzcSf5vDpdhQAKTc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_emicklei_go_restful', importpath='github.com/emicklei/go-restful', version='v2.9.5+incompatible', sum='h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_euank_go_kmsg_parser', importpath='github.com/euank/go-kmsg-parser', version='v2.0.0+incompatible', sum='h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_evanphx_json_patch', importpath='github.com/evanphx/json-patch', version='v4.9.0+incompatible', sum='h1:kLcOMZeuLAJvL2BPWLMIj5oaZQobrkAqrL+WFZwQses=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_exponent_io_jsonpath', importpath='github.com/exponent-io/jsonpath', version='v0.0.0-20151013193312-d6023ce2651d', sum='h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_farsightsec_golang_framestream', importpath='github.com/farsightsec/golang-framestream', version='v0.0.0-20190425193708-fa4b164d59b8', sum='h1:/iPdQppoAsTfML+yqFSq2EBChiEMnRkh5WvhFgtWwcU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_fatih_camelcase', importpath='github.com/fatih/camelcase', version='v1.0.0', sum='h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_fatih_color', importpath='github.com/fatih/color', version='v1.7.0', sum='h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_flynn_go_shlex', importpath='github.com/flynn/go-shlex', version='v0.0.0-20150515145356-3f9db97f8568', sum='h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_fullsailor_pkcs7', importpath='github.com/fullsailor/pkcs7', version='v0.0.0-20180613152042-8306686428a5', sum='h1:v+vxrd9XS8uWIXG2RK0BHCnXc30qLVQXVqbK+IOmpXk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_ghodss_yaml', importpath='github.com/ghodss/yaml', version='v1.0.0', sum='h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_delve_delve', importpath='github.com/go-delve/delve', version='v1.4.1', sum='h1:kZs0umEv+VKnK84kY9/ZXWrakdLTeRTyYjFdgLelZCQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_logr_logr', importpath='github.com/go-logr/logr', version='v0.2.0', sum='h1:QvGt2nLcHH0WK9orKa+ppBPAxREcH364nPUedEpK0TY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_analysis', importpath='github.com/go-openapi/analysis', version='v0.19.5', sum='h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_errors', importpath='github.com/go-openapi/errors', version='v0.19.2', sum='h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_jsonpointer', importpath='github.com/go-openapi/jsonpointer', version='v0.19.3', sum='h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_jsonreference', importpath='github.com/go-openapi/jsonreference', version='v0.19.3', sum='h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_loads', importpath='github.com/go-openapi/loads', version='v0.19.4', sum='h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_runtime', importpath='github.com/go-openapi/runtime', version='v0.19.4', sum='h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_spec', importpath='github.com/go-openapi/spec', version='v0.19.3', sum='h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_strfmt', importpath='github.com/go-openapi/strfmt', version='v0.19.3', sum='h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_swag', importpath='github.com/go-openapi/swag', version='v0.19.5', sum='h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_openapi_validate', importpath='github.com/go-openapi/validate', version='v0.19.5', sum='h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_go_stack_stack', importpath='github.com/go-stack/stack', version='v1.8.0', sum='h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_godbus_dbus_v5', importpath='github.com/godbus/dbus/v5', version='v5.0.3', sum='h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_gofrs_flock', importpath='github.com/gofrs/flock', version='v0.8.0', sum='h1:MSdYClljsF3PbENUUEx85nkWfJSGfzYI9yEBZOJz6CY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_gogo_googleapis', importpath='github.com/gogo/googleapis', version='v1.3.2', sum='h1:kX1es4djPJrsDhY7aZKJy7aZasdcB5oSOEphMjSB53c=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_gogo_protobuf', importpath='github.com/gogo/protobuf', version='v1.3.1', sum='h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_golang_groupcache', importpath='github.com/golang/groupcache', version='v0.0.0-20191227052852-215e87163ea7', sum='h1:5ZkaAPbicIKTF2I64qf5Fh8Aa83Q/dnOafMYV0OMwjA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_btree', importpath='github.com/google/btree', version='v1.0.0', sum='h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_cadvisor', importpath='github.com/google/cadvisor', version='v0.37.3', sum='h1:qsH/np74sg1/tEe+bn+e2JIPFxrw6En3gCVuQdolc74=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_certificate_transparency_go', importpath='github.com/google/certificate-transparency-go', version='v1.1.0', sum='h1:10MlrYzh5wfkToxWI4yJzffsxLfxcEDlOATMx/V9Kzw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_go_cmp', importpath='github.com/google/go-cmp', version='v0.4.0', sum='h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_go_dap', importpath='github.com/google/go-dap', version='v0.2.0', sum='h1:whjIGQRumwbR40qRU7CEKuFLmePUUc2s4Nt9DoXXxWk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_go_tpm', importpath='github.com/google/go-tpm', version='v0.1.2-0.20190725015402-ae6dd98980d4', sum='h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_go_tpm_tools', importpath='github.com/google/go-tpm-tools', version='v0.0.0-20190731025042-f8c04ff88181', sum='h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_gofuzz', importpath='github.com/google/gofuzz', version='v1.1.0', sum='h1:Hsa8mG0dQ46ij8Sl2AYJDUv1oA9/d6Vk+3LG99Oe02g=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_gopacket', importpath='github.com/google/gopacket', version='v1.1.17', sum='h1:rMrlX2ZY2UbvT+sdz3+6J+pp2z+msCq9MxTU6ymxbBY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_gvisor', importpath='github.com/google/gvisor', version='v0.0.0-20211029210316-b822923b706d', sum='h1:DLypxrLRMq0P4f96vlutTfJpM5/Y8q6rDafgBU1pxAs=', patches=['//third_party/go/patches:gvisor.patch', '//third_party/go/patches:gvisor-build-against-newer-runtime-specs.patch', '//third_party/go/patches:gvisor-cgroup-fix.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_nftables', importpath='github.com/google/nftables', version='v0.0.0-20200316075819-7127d9d22474', sum='h1:D6bN82zzK92ywYsE+Zjca7EHZCRZbcNTU3At7WdxQ+c=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_subcommands', importpath='github.com/google/subcommands', version='v1.0.2-0.20190508160503-636abe8753b8', sum='h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_google_uuid', importpath='github.com/google/uuid', version='v1.1.1', sum='h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_googleapis_gnostic', importpath='github.com/googleapis/gnostic', version='v0.4.1', sum='h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_gorilla_websocket', importpath='github.com/gorilla/websocket', version='v1.4.0', sum='h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_gregjones_httpcache', importpath='github.com/gregjones/httpcache', version='v0.0.0-20180305231024-9cad4c3443a7', sum='h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_grpc_ecosystem_go_grpc_middleware', importpath='github.com/grpc-ecosystem/go-grpc-middleware', version='v1.0.1-0.20190118093823-f849b5445de4', sum='h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_grpc_ecosystem_go_grpc_prometheus', importpath='github.com/grpc-ecosystem/go-grpc-prometheus', version='v1.2.0', sum='h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_grpc_ecosystem_grpc_gateway', importpath='github.com/grpc-ecosystem/grpc-gateway', version='v1.9.5', sum='h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_grpc_ecosystem_grpc_opentracing', importpath='github.com/grpc-ecosystem/grpc-opentracing', version='v0.0.0-20180507213350-8e809c8a8645', sum='h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_grpc_grpc', importpath='github.com/grpc/grpc', version='v1.29.1', sum='h1:oDOYav2X6WE7espebiQ//iP9N+/gGygUv6XuuyvkFMc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_hashicorp_errwrap', importpath='github.com/hashicorp/errwrap', version='v1.0.0', sum='h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_hashicorp_go_multierror', importpath='github.com/hashicorp/go-multierror', version='v1.0.0', sum='h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_hashicorp_golang_lru', importpath='github.com/hashicorp/golang-lru', version='v0.5.3', sum='h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_hashicorp_hcl', importpath='github.com/hashicorp/hcl', version='v1.0.0', sum='h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_hpcloud_tail', importpath='github.com/hpcloud/tail', version='v1.0.0', sum='h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_huandu_xstrings', importpath='github.com/huandu/xstrings', version='v1.0.0', sum='h1:pO2K/gKgKaat5LdpAhxhluX2GPQMaI3W5FUz/I/UnWk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_imdario_mergo', importpath='github.com/imdario/mergo', version='v0.3.7', sum='h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_inconshreveable_mousetrap', importpath='github.com/inconshreveable/mousetrap', version='v1.0.0', sum='h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_infobloxopen_go_trees', importpath='github.com/infobloxopen/go-trees', version='v0.0.0-20190313150506-2af4e13f9062', sum='h1:d3VSuNcgTCn21dNMm8g412Fck/XWFmMj4nJhhHT7ZZ0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_insomniacslk_dhcp', importpath='github.com/insomniacslk/dhcp', version='v0.0.0-20200922210017-67c425063dca', sum='h1:zhwTlFGM8ZkD5J/c43IWkxSJQWzhm20QWou8zajbCck=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_j_keck_arping', importpath='github.com/j-keck/arping', version='v0.0.0-20160618110441-2cf9dc699c56', sum='h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_joho_godotenv', importpath='github.com/joho/godotenv', version='v1.3.0', sum='h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_jonboulle_clockwork', importpath='github.com/jonboulle/clockwork', version='v0.1.0', sum='h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_json_iterator_go', importpath='github.com/json-iterator/go', version='v1.1.10', sum='h1:Kz6Cvnvv2wGdaG/V8yMvfkmNiXq9Ya2KUv4rouJJr68=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_karrick_godirwalk', importpath='github.com/karrick/godirwalk', version='v1.7.5', sum='h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_kevinburke_go_bindata', importpath='github.com/kevinburke/go-bindata', version='v3.16.0+incompatible', sum='h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_koneu_natend', importpath='github.com/koneu/natend', version='v0.0.0-20150829182554-ec0926ea948d', sum='h1:MFX8DxRnKMY/2M3H61iSsVbo/n3h0MWGmWNN1UViOU0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_konsorten_go_windows_terminal_sequences', importpath='github.com/konsorten/go-windows-terminal-sequences', version='v1.0.3', sum='h1:CE8S1cTafDpPvMhIxNJKvHsGVBgn1xWYf1NbHQhywc8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_kr_pretty', importpath='github.com/kr/pretty', version='v0.1.0', sum='h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_kr_pty', importpath='github.com/kr/pty', version='v1.1.4-0.20190131011033-7dc38fb350b1', sum='h1:zc0R6cOw98cMengLA0fvU55mqbnN7sd/tBMLzSejp+M=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_liggitt_tabwriter', importpath='github.com/liggitt/tabwriter', version='v0.0.0-20181228230101-89fcab3d43de', sum='h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_lithammer_dedent', importpath='github.com/lithammer/dedent', version='v1.1.0', sum='h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_magiconair_properties', importpath='github.com/magiconair/properties', version='v1.8.1', sum='h1:ZC2Vc7/ZFkGmsVC9KvOjumD+G5lXy2RtTKyzRKO2BQ4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mailru_easyjson', importpath='github.com/mailru/easyjson', version='v0.7.0', sum='h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mattn_go_colorable', importpath='github.com/mattn/go-colorable', version='v0.0.9', sum='h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mattn_go_isatty', importpath='github.com/mattn/go-isatty', version='v0.0.4', sum='h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mattn_go_runewidth', importpath='github.com/mattn/go-runewidth', version='v0.0.2', sum='h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mattn_go_shellwords', importpath='github.com/mattn/go-shellwords', version='v1.0.11', sum='h1:vCoR9VPpsk/TZFW2JwK5I9S0xdrtUq2bph6/YjEPnaw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_matttproud_golang_protobuf_extensions', importpath='github.com/matttproud/golang_protobuf_extensions', version='v1.0.1', sum='h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mdlayher_ethernet', importpath='github.com/mdlayher/ethernet', version='v0.0.0-20190606142754-0394541c37b7', sum='h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mdlayher_genetlink', importpath='github.com/mdlayher/genetlink', version='v1.0.0', sum='h1:OoHN1OdyEIkScEmRgxLEe2M9U8ClMytqA5niynLtfj0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mdlayher_netlink', importpath='github.com/mdlayher/netlink', version='v1.1.0', sum='h1:mpdLgm+brq10nI9zM1BpX1kpDbh3NLl3RSnVq6ZSkfg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mdlayher_raw', importpath='github.com/mdlayher/raw', version='v0.0.0-20191009151244-50f2db8cc065', sum='h1:aFkJ6lx4FPip+S+Uw4aTegFMct9shDvP+79PsSxpm3w=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_miekg_dns', importpath='github.com/miekg/dns', version='v1.1.29', sum='h1:xHBEhR+t5RzcFJjBLJlax2daXOrTYtr9z4WdKEfWFzg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mindprince_gonvml', importpath='github.com/mindprince/gonvml', version='v0.0.0-20190828220739-9ebdce4bb989', sum='h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mistifyio_go_zfs', importpath='github.com/mistifyio/go-zfs', version='v2.1.2-0.20190413222219-f784269be439+incompatible', sum='h1:aKW/4cBs+yK6gpqU3K/oIwk9Q/XICqd3zOX/UFuvqmk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mitchellh_go_wordwrap', importpath='github.com/mitchellh/go-wordwrap', version='v1.0.0', sum='h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mitchellh_mapstructure', importpath='github.com/mitchellh/mapstructure', version='v1.1.2', sum='h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_moby_sys_mountinfo', importpath='github.com/moby/sys/mountinfo', version='v0.1.3', sum='h1:KIrhRO14+AkwKvG/g2yIpNMOUVZ02xNhOw8KY1WsLOI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_moby_term', importpath='github.com/moby/term', version='v0.0.0-20200312100748-672ec06f55cd', sum='h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_modern_go_concurrent', importpath='github.com/modern-go/concurrent', version='v0.0.0-20180306012644-bacd9c7ef1dd', sum='h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_modern_go_reflect2', importpath='github.com/modern-go/reflect2', version='v1.0.1', sum='h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mohae_deepcopy', importpath='github.com/mohae/deepcopy', version='v0.0.0-20170308212314-bb9b5e7adda9', sum='h1:Sha2bQdoWE5YQPTlJOL31rmce94/tYi113SlFo1xQ2c=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_morikuni_aec', importpath='github.com/morikuni/aec', version='v1.0.0', sum='h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mrunalp_fileutils', importpath='github.com/mrunalp/fileutils', version='v0.0.0-20200520151820-abd8a0e76976', sum='h1:aZQToFSLH8ejFeSkTc3r3L4dPImcj7Ib/KgmkQqbGGg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_muesli_reflow', importpath='github.com/muesli/reflow', version='v0.0.0-20191128061954-86f094cbed14', sum='h1:99aDTygRy9yEwggATz+ZLrDFRsjRog5BqbAfsr47Ztw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_munnerz_goautoneg', importpath='github.com/munnerz/goautoneg', version='v0.0.0-20191010083416-a7dc8b61c822', sum='h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_mxk_go_flowrate', importpath='github.com/mxk/go-flowrate', version='v0.0.0-20140419014527-cca7078d478f', sum='h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_olekukonko_tablewriter', importpath='github.com/olekukonko/tablewriter', version='v0.0.0-20170122224234-a0225b3f23b5', sum='h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_onsi_ginkgo', importpath='github.com/onsi/ginkgo', version='v1.11.0', sum='h1:JAKSXpt1YjtLA7YpPiqO9ss6sNXEsPfSGdwN0UHqzrw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_onsi_gomega', importpath='github.com/onsi/gomega', version='v1.7.0', sum='h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_opencontainers_go_digest', importpath='github.com/opencontainers/go-digest', version='v1.0.0', sum='h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_opencontainers_image_spec', importpath='github.com/opencontainers/image-spec', version='v1.0.1', sum='h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_opencontainers_runc', importpath='github.com/opencontainers/runc', version='v1.0.0-rc92', sum='h1:+IczUKCRzDzFDnw99O/PAqrcBBCoRp9xN3cB1SYSNS4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_opencontainers_runtime_spec', importpath='github.com/opencontainers/runtime-spec', version='v1.0.3-0.20200728170252-4d89ac9fbff6', sum='h1:NhsM2gc769rVWDqJvapK37r+7+CBXI8xHhnfnt8uQsg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_opencontainers_selinux', importpath='github.com/opencontainers/selinux', version='v1.6.0', sum='h1:+bIAS/Za3q5FTwWym4fTB0vObnfCf3G/NC7K6Jx62mY=', build_tags=['selinux'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_opentracing_opentracing_go', importpath='github.com/opentracing/opentracing-go', version='v1.1.0', sum='h1:pWlfV3Bxv7k65HYwkikxat0+s3pV4bsqf19k25Ur8rU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_peterbourgon_diskv', importpath='github.com/peterbourgon/diskv', version='v2.0.1+incompatible', sum='h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_peterh_liner', importpath='github.com/peterh/liner', version='v0.0.0-20170317030525-88609521dc4b', sum='h1:8uaXtUkxiy+T/zdLWuxa/PG4so0TPZDZfafFNNSaptE=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_pierrec_lz4', importpath='github.com/pierrec/lz4', version='v2.3.0+incompatible', sum='h1:CZzRn4Ut9GbUkHlQ7jqBXeZQV41ZSKWFc302ZU6lUTk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_pkg_errors', importpath='github.com/pkg/errors', version='v0.9.1', sum='h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_pkg_xattr', importpath='github.com/pkg/xattr', version='v0.4.1', sum='h1:dhclzL6EqOXNaPDWqoeb9tIxATfBSmjqL0b4DpSjwRw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_pquerna_cachecontrol', importpath='github.com/pquerna/cachecontrol', version='v0.0.0-20171018203845-0dec1b30a021', sum='h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_prometheus_client_golang', importpath='github.com/prometheus/client_golang', version='v1.6.0', sum='h1:YVPodQOcK15POxhgARIvnDRVpLcuK8mglnMrWfyrw6A=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_prometheus_client_model', importpath='github.com/prometheus/client_model', version='v0.2.0', sum='h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_prometheus_common', importpath='github.com/prometheus/common', version='v0.9.1', sum='h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_prometheus_procfs', importpath='github.com/prometheus/procfs', version='v0.0.11', sum='h1:DhHlBtkHWPYi8O2y31JkK0TF+DGM+51OopZjH/Ia5qI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_pseudomuto_protoc_gen_doc', importpath='github.com/pseudomuto/protoc-gen-doc', version='v1.5.0', sum='h1:pHZp0MEiT68jrZV8js8BS7E9ZEnlSLegoQbbtXj5lfo=', patches=['//third_party/go/patches:protoc-gen-doc-no-gogo.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_pseudomuto_protokit', importpath='github.com/pseudomuto/protokit', version='v0.2.0', sum='h1:hlnBDcy3YEDXH7kc9gV+NLaN0cDzhDvD1s7Y6FZ8RpM=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_rekby_gpt', importpath='github.com/rekby/gpt', version='v0.0.0-20200219180433-a930afbc6edc', sum='h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_robfig_cron', importpath='github.com/robfig/cron', version='v1.1.0', sum='h1:jk4/Hud3TTdcrJgUOBgsqrZBarcxl6ADIjSC2iniwLY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_russross_blackfriday', importpath='github.com/russross/blackfriday', version='v1.5.2', sum='h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_russross_blackfriday_v2', importpath='github.com/russross/blackfriday/v2', version='v2.0.1', sum='h1:lPqVAte+HuHNfhJ/0LC98ESWRz8afy9tM/0RK8m9o+Q=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_safchain_ethtool', importpath='github.com/safchain/ethtool', version='v0.0.0-20190326074333-42ed695e3de8', sum='h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_sbezverk_nfproxy', importpath='github.com/sbezverk/nfproxy', version='v0.0.0-20200514180651-7fac5f39824e', sum='h1:fJ2lHQ7ZUjmgJbvVQ509ioBmrGHcbvlwfjUieExw/dU=', patches=['//third_party/go/patches:nfproxy.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_sbezverk_nftableslib', importpath='github.com/sbezverk/nftableslib', version='v0.0.0-20200402150358-c20bed91f482', sum='h1:k7gEZ/EwJhHDTRXFUZQlE4/p1cmoha7zL7PWCDG3ZHQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_shurcool_sanitized_anchor_name', importpath='github.com/shurcooL/sanitized_anchor_name', version='v1.0.0', sum='h1:PdmoCO6wvbs+7yrJyMORt4/BmY5IYyJwS/kOiWx8mHo=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_sirupsen_logrus', importpath='github.com/sirupsen/logrus', version='v1.6.0', sum='h1:UBcNElsrwanuuMsnGSlYmtmgbb23qDR5dG+6X6Oo89I=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_soheilhy_cmux', importpath='github.com/soheilhy/cmux', version='v0.1.4', sum='h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_spf13_afero', importpath='github.com/spf13/afero', version='v1.2.2', sum='h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_spf13_cast', importpath='github.com/spf13/cast', version='v1.3.0', sum='h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_spf13_cobra', importpath='github.com/spf13/cobra', version='v1.2.1', sum='h1:+KmjbUw1hriSNMF55oPrkZcb27aECyrj8V2ytv7kWDw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_spf13_jwalterweatherman', importpath='github.com/spf13/jwalterweatherman', version='v1.1.0', sum='h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_spf13_pflag', importpath='github.com/spf13/pflag', version='v1.0.5', sum='h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_spf13_viper', importpath='github.com/spf13/viper', version='v1.9.0', sum='h1:yR6EXjTp0y0cLN8OZg1CRZmOBdI88UcGkhgyJhu6nZk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_stretchr_testify', importpath='github.com/stretchr/testify', version='v1.4.0', sum='h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_subosito_gotenv', importpath='github.com/subosito/gotenv', version='v1.2.0', sum='h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_syndtr_gocapability', importpath='github.com/syndtr/gocapability', version='v0.0.0-20180916011248-d98352740cb2', sum='h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_tchap_go_patricia', importpath='github.com/tchap/go-patricia', version='v2.2.6+incompatible', sum='h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_tmc_grpc_websocket_proxy', importpath='github.com/tmc/grpc-websocket-proxy', version='v0.0.0-20190109142713-0ad062ec5ee5', sum='h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_u_root_u_root', importpath='github.com/u-root/u-root', version='v7.0.0+incompatible', sum='h1:u+KSS04pSxJGI5E7WE4Bs9+Zd75QjFv+REkjy/aoAc8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_ulikunitz_xz', importpath='github.com/ulikunitz/xz', version='v0.5.6', sum='h1:jGHAfXawEGZQ3blwU5wnWKQJvAraT7Ftq9EXjnXYgt8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_urfave_cli', importpath='github.com/urfave/cli', version='v1.22.1', sum='h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_vishvananda_netlink', importpath='github.com/vishvananda/netlink', version='v1.1.0', sum='h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_vishvananda_netns', importpath='github.com/vishvananda/netns', version='v0.0.0-20200520041808-52d707b772fe', sum='h1:mjAZxE1nh8yvuwhGHpdDqdhtNu2dgbpk93TwoXuk5so=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_willf_bitset', importpath='github.com/willf/bitset', version='v1.1.11', sum='h1:N7Z7E9UvjW+sGsEl7k/SJrvY2reP1A07MrGuCjIOjRE=', build_tags=['selinux'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_xiang90_probing', importpath='github.com/xiang90/probing', version='v0.0.0-20190116061207-43a291ad63a2', sum='h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_github_yalue_native_endian', importpath='github.com/yalue/native_endian', version='v0.0.0-20180607135909-51013b03be4f', sum='h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_etcd_go_bbolt', importpath='go.etcd.io/bbolt', version='v1.3.5', sum='h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_etcd_go_etcd', importpath='go.etcd.io/etcd', version='v0.5.0-alpha.5.0.20200819165624-17cef6e3e9d5', sum='h1:Gqga3zA9tdAcfqobUGjSoCob5L3f8Dt5EuOp3ihNZko=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_mongodb_go_mongo_driver', importpath='go.mongodb.org/mongo-driver', version='v1.1.2', sum='h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_opencensus_go', importpath='go.opencensus.io', version='v0.22.0', sum='h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='net_starlark_go', importpath='go.starlark.net', version='v0.0.0-20190702223751-32f345186213', sum='h1:lkYv5AKwvvduv5XWP6szk/bvvgO6aDeUujhZQXIFTes=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_uber_go_atomic', importpath='go.uber.org/atomic', version='v1.4.0', sum='h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_uber_go_multierr', importpath='go.uber.org/multierr', version='v1.1.0', sum='h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_uber_go_zap', importpath='go.uber.org/zap', version='v1.15.0', sum='h1:ZZCA22JRF2gQE5FoNmhmrf7jeJJ2uhqDUNRYKm8dvmM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_arch', importpath='golang.org/x/arch', version='v0.0.0-20190927153633-4e8777c89be4', sum='h1:QlVATYS7JBoZMVaf+cNjb90WD/beKVHnIxFKT4QaHVI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_crypto', importpath='golang.org/x/crypto', version='v0.0.0-20200622213623-75b288015ac9', sum='h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_mod', importpath='golang.org/x/mod', version='v0.3.0', sum='h1:RM4zey1++hCTbCVQfnWeKs9/IEsaBLA8vTkd0WVtmH4=', build_extra_args=['-go_naming_convention=import_alias', '-go_naming_convention_external=import_alias']) go_repository(name='org_golang_x_net', importpath='golang.org/x/net', version='v0.0.0-20201110031124-69a78807bb2b', sum='h1:uwuIcX0g4Yl1NC5XAz37xsr2lTtcqevgzYNVt49waME=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_oauth2', importpath='golang.org/x/oauth2', version='v0.0.0-20191202225959-858c2ad4c8b6', sum='h1:pE8b58s1HRDMi8RDc79m0HISf9D4TzseP40cEA6IGfs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_sync', importpath='golang.org/x/sync', version='v0.0.0-20181108010431-42b317875d0f', sum='h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=', build_extra_args=['-go_naming_convention=import_alias', '-go_naming_convention_external=import_alias']) go_repository(name='org_golang_x_text', importpath='golang.org/x/text', version='v0.3.0', sum='h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_time', importpath='golang.org/x/time', version='v0.0.0-20191024005414-555d28b269f0', sum='h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_tools', importpath='golang.org/x/tools', version='v0.1.2-0.20210518182153-17b346669257', sum='h1:e7SbNJfMEurLnwdNnaP7LItYhtCPChdiq+j3RwB8YGY=', patches=['//third_party/go/patches:goimports-group-merging.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_x_xerrors', importpath='golang.org/x/xerrors', version='v0.0.0-20191204190536-9bdfabe68543', sum='h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='com_zx2c4_golang_wireguard_wgctrl', importpath='golang.zx2c4.com/wireguard/wgctrl', version='v0.0.0-20200515170644-ec7f26be9d9e', sum='h1:fqDhK9OlzaaiFjnyaAfR9Q1RPKCK7OCTLlHGP9f74Nk=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_gonum_v1_gonum', importpath='gonum.org/v1/gonum', version='v0.6.2', sum='h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_google_genproto', importpath='google.golang.org/genproto', version='v0.0.0-20200224152610-e50cd9704f63', sum='h1:YzfoEYWbODU5Fbt37+h7X16BWQbad7Q4S6gclTKFXM8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='org_golang_google_grpc', importpath='google.golang.org/grpc', version='v1.29.1', sum='h1:EC2SB8S04d2r73uptxphDSUG+kTKVgjRPF+N3xpxRB4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_djherbis_times_v1', importpath='gopkg.in/djherbis/times.v1', version='v1.2.0', sum='h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_fsnotify_v1', importpath='gopkg.in/fsnotify.v1', version='v1.4.7', sum='h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_inf_v0', importpath='gopkg.in/inf.v0', version='v0.9.1', sum='h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_ini_v1', importpath='gopkg.in/ini.v1', version='v1.63.2', sum='h1:tGK/CyBg7SMzb60vP1M03vNZ3VDu3wGQJwn7Sxi9r3c=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_natefinch_lumberjack_v2', importpath='gopkg.in/natefinch/lumberjack.v2', version='v2.0.0', sum='h1:1Lc07Kr7qY4U2YPouBjpCLxpiyxIVoxqXgkXLknAOE8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_square_go_jose_v2', importpath='gopkg.in/square/go-jose.v2', version='v2.2.2', sum='h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_tomb_v1', importpath='gopkg.in/tomb.v1', version='v1.0.0-20141024135613-dd632973f1e7', sum='h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='in_gopkg_yaml_v2', importpath='gopkg.in/yaml.v2', version='v2.2.8', sum='h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_api', importpath='k8s.io/api', version='v0.19.7', sum='h1:MpHhls03C2pyzoYcpbe4QqYiiZjdvW+tuWq6TbjV14Y=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_apiextensions_apiserver', importpath='k8s.io/apiextensions-apiserver', version='v0.19.7', sum='h1:aV9DANMSCCYBEMbtoT/5oesrtcciQrjy9yqWVtZZL5A=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_apimachinery', importpath='k8s.io/apimachinery', version='v0.19.8-rc.0', sum='h1:/vt04+wL+Y79Qsu8hAo2K4QJA+AKGkJCYmoTTVrUiPQ=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_apiserver', importpath='k8s.io/apiserver', version='v0.19.7', sum='h1:fOOELJ9TNC6DgKL3GUkQLE/EBMLjwBseTstx2eRP61o=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_cli_runtime', importpath='k8s.io/cli-runtime', version='v0.19.7', sum='h1:VkHsqrQYCD6+yBm2k9lOxLJtfo1tmb/TdYIHQ2RSCsY=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_client_go', importpath='k8s.io/client-go', version='v0.19.7', sum='h1:SoJ4mzZ9LyXBGDe8MmpMznw0CwQ1ITWgsmG7GixvhUU=', pre_patches=['//third_party/go/patches:k8s-client-go.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_cloud_provider', importpath='k8s.io/cloud-provider', version='v0.19.7', sum='h1:01fiPTLkTU/MNKZBcMmeYQ5DWqRS4d3GhYGGGlkjgOw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_cluster_bootstrap', importpath='k8s.io/cluster-bootstrap', version='v0.19.7', sum='h1:xlI+YfeS5gOVa33WVh1viiPZMDN9j7BAiY0iJkg2LwI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_code_generator', importpath='k8s.io/code-generator', version='v0.19.9-rc.0', sum='h1:ci5Y09V0Uiim61fltZsjHYp+i6eNaMMmtIlIveHqQ9Y=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_component_base', importpath='k8s.io/component-base', version='v0.19.7', sum='h1:ZXS2VRWOWBOc2fTd1zjzhi/b/mkqFT9FDqiNsn1cH30=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_cri_api', importpath='k8s.io/cri-api', version='v0.19.8-rc.0', sum='h1:aXNNIIoVcmIB/mlz/otcULQOgnErxnLB4uaWENHKblA=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_csi_translation_lib', importpath='k8s.io/csi-translation-lib', version='v0.19.7', sum='h1:Spr0XWqXufEUQA47axmPTm1xOabdMYG9MUbJVaRRb0g=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_gengo', importpath='k8s.io/gengo', version='v0.0.0-20200428234225-8167cfdcfc14', sum='h1:t4L10Qfx/p7ASH3gXCdIUtPbbIuegCoUJf3TMSFekjw=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_heapster', importpath='k8s.io/heapster', version='v1.2.0-beta.1', sum='h1:lUsE/AHOMHpi3MLlBEkaU8Esxm5QhdyCrv1o7ot0s84=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_klog_v2', importpath='k8s.io/klog/v2', version='v2.2.0', sum='h1:XRvcwJozkgZ1UQJmfMGpvRthQHOvihEhYtDfAaxMz/A=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kube_aggregator', importpath='k8s.io/kube-aggregator', version='v0.19.7', sum='h1:Eol5vPNFKaDScdVuTh0AofhuSr4cJxP5Vfv8JXW8OAQ=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kube_controller_manager', importpath='k8s.io/kube-controller-manager', version='v0.19.7', sum='h1:3rNXjHM5LHcv2HiO2JjdV4yW3EN+2tCPaKXWL/Cl8TM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kube_openapi', importpath='k8s.io/kube-openapi', version='v0.0.0-20200805222855-6aeccd4b50c6', sum='h1:+WnxoVtG8TMiudHBSEtrVL1egv36TkkJm+bA8AxicmQ=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kube_proxy', importpath='k8s.io/kube-proxy', version='v0.19.7', sum='h1:QQUwEnHA1jawodclndlmK/6Ifc9XVNlUaQ4Vq5RVbI8=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kube_scheduler', importpath='k8s.io/kube-scheduler', version='v0.19.7', sum='h1:TlQFoH7rATVqU7myNZ4FBgnXdGIwR7iBBNk3ir8Y9WM=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kubectl', importpath='k8s.io/kubectl', version='v0.19.7', sum='h1:pSsha+MBr9KLhn0IKrRikeAZ7g2oeShIGHLgqAzE3Ak=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kubelet', importpath='k8s.io/kubelet', version='v0.19.7', sum='h1:cPp0fXN99cxyXeoI3nG2ZBORUvR0liT+bg6ofCybJzw=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_kubernetes', importpath='k8s.io/kubernetes', version='v1.19.7', sum='h1:Yk9W5SL1KR2mwy0nNZwjFXNImfK7ihrbKhXttidNTiE=', build_file_proto_mode='disable', build_tags=['providerless'], patches=['//third_party/go/patches:k8s-kubernetes.patch', '//third_party/go/patches:k8s-kubernetes-build.patch', '//third_party/go/patches:k8s-native-metrics.patch', '//third_party/go/patches:k8s-use-native.patch', '//third_party/go/patches:k8s-revert-seccomp-runtime-default.patch', '//third_party/go/patches:k8s-removed-block-device-pseudo-locks.patch'], pre_patches=['//third_party/go/patches:k8s-e2e-tests-providerless.patch', '//third_party/go/patches:k8s-fix-paths.patch', '//third_party/go/patches:k8s-fix-logs-path.patch', '//third_party/go/patches:k8s-drop-legacy-log-path.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_legacy_cloud_providers', importpath='k8s.io/legacy-cloud-providers', version='v0.19.7', sum='h1:YJ/l/8/Hn56I9m1cudK8aNypRA/NvI/hYhg8fo/CTus=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_metrics', importpath='k8s.io/metrics', version='v0.19.7', sum='h1:fpTtFhNtS0DwJiYGGsL4YoSjHlLw8qugkgw3EXSWaUA=', build_file_proto_mode='disable', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_repo_infra', importpath='k8s.io/repo-infra', version='v0.1.4-0.20210105022653-a3483874bd37', sum='h1:0GPavEcPKBA0rYl7f6dO0mXYmx7t9RaXD3be2g23Ps4=', pre_patches=['//third_party/go/patches:k8s-infra-bzl4-compat.patch', '//third_party/go/patches:k8s-infra-fix-go116.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_sample_apiserver', importpath='k8s.io/sample-apiserver', version='v0.19.7', sum='h1:ZWD6dsvqpqhWj3jKRb19/m/bo/0r+TRgjkX+h5m7f4g=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_utils', importpath='k8s.io/utils', version='v0.0.0-20200729134348-d5654de09c73', sum='h1:uJmqzgNWG7XyClnU/mLPBWwfKKF1K8Hf8whTseBgJcg=', patches=['//third_party/go/patches:k8s-native-mounter.patch'], patch_args=['-p1'], build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_sigs_apiserver_network_proxy_konnectivity_client', importpath='sigs.k8s.io/apiserver-network-proxy/konnectivity-client', version='v0.0.9', sum='h1:rusRLrDhjBp6aYtl9sGEvQJr6faoHoDLd0YcUBTZguI=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_sigs_kustomize', importpath='sigs.k8s.io/kustomize', version='v2.0.3+incompatible', sum='h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_sigs_structured_merge_diff_v4', importpath='sigs.k8s.io/structured-merge-diff/v4', version='v4.0.1', sum='h1:YXTMot5Qz/X1iBRJhAt+vI+HVttY0WkSqqhKxQ0xVbA=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='io_k8s_sigs_yaml', importpath='sigs.k8s.io/yaml', version='v1.2.0', sum='h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library']) go_repository(name='ml_vbom_util', importpath='vbom.ml/util', version='v0.0.0-20160121211510-db5cfe13f5cc', sum='h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=', build_extra_args=['-go_naming_convention=go_default_library', '-go_naming_convention_external=go_default_library'])
def dp_fibonacci(num): ''' Returns fibonacci number of a given integer using dynamic programming for faster runtime Runtime: O(n) ''' # Returns -1 if num is negative if num < 0: return -1 if num == 0: return 0 if num == 1 or num == 2: return 1 dp = [1,1] for i in range(2,num): dp.append(dp[i-1]+dp[i-2]) return dp[-1]
def dp_fibonacci(num): """ Returns fibonacci number of a given integer using dynamic programming for faster runtime Runtime: O(n) """ if num < 0: return -1 if num == 0: return 0 if num == 1 or num == 2: return 1 dp = [1, 1] for i in range(2, num): dp.append(dp[i - 1] + dp[i - 2]) return dp[-1]
Clock.bpm=var([120,60,30,15,2],[124,2,1,1/2,1/2]) # wait for the drop! Scale.default="major" d1 >> play("<|V0|:>< O ><|[--]5|>", sample=2) d2 >> play("<...(+|L2|)>< m>") c1 >> play("n", dur=1/4, sample=PRand(8), pan=PWhite(-1,1)) b1 >> dbass(var([0,-2],8), dur=PDur(3,9), shape=PWhite(0,0.5), sus=2, chop=4, pan=PWhite(-1,1)) p1 >> pads((0,2,4,6), dur=16, amp=1/2, room=1, drive=0, shape=0.2, vib=12, slide=1, slidedelay=0.5, chop=16, delay=0.5) p2 >> space([[0,2],4], dur=[6,2]).spread() p3 >> pulse([0,1,0,[1,2],0,4,5,4], lpf=linvar([500,2000],32), lpr=linvar([0.1,1],12), dur=1/2, amp=2*P[1,1,1,1,0,1,1,1]).spread().penta() + var([0,[1,2,3,-1]],[6,2]) cr >> play("#", dur=32, room=1, amp=2).spread()
Clock.bpm = var([120, 60, 30, 15, 2], [124, 2, 1, 1 / 2, 1 / 2]) Scale.default = 'major' d1 >> play('<|V0|:>< O ><|[--]5|>', sample=2) d2 >> play('<...(+|L2|)>< m>') c1 >> play('n', dur=1 / 4, sample=p_rand(8), pan=p_white(-1, 1)) b1 >> dbass(var([0, -2], 8), dur=p_dur(3, 9), shape=p_white(0, 0.5), sus=2, chop=4, pan=p_white(-1, 1)) p1 >> pads((0, 2, 4, 6), dur=16, amp=1 / 2, room=1, drive=0, shape=0.2, vib=12, slide=1, slidedelay=0.5, chop=16, delay=0.5) p2 >> space([[0, 2], 4], dur=[6, 2]).spread() p3 >> pulse([0, 1, 0, [1, 2], 0, 4, 5, 4], lpf=linvar([500, 2000], 32), lpr=linvar([0.1, 1], 12), dur=1 / 2, amp=2 * P[1, 1, 1, 1, 0, 1, 1, 1]).spread().penta() + var([0, [1, 2, 3, -1]], [6, 2]) cr >> play('#', dur=32, room=1, amp=2).spread()
# Find the duplicate number - Leetcode def findDuplicate(self, nums): """ :type nums: List[int] :rtype: int """ freq = {} for i in range(len(nums)): if nums[i] not in freq.keys(): freq[nums[i]] = 1 else: freq[nums[i]] += 1 for num in freq: if freq[num] > 1: duplicate = num return duplicate
def find_duplicate(self, nums): """ :type nums: List[int] :rtype: int """ freq = {} for i in range(len(nums)): if nums[i] not in freq.keys(): freq[nums[i]] = 1 else: freq[nums[i]] += 1 for num in freq: if freq[num] > 1: duplicate = num return duplicate
''' There are N gas stations along a circular route, where the amount of gas at station i is gas[i]. You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to its next station (i+1). You begin the journey with an empty tank at one of the gas stations. Return the starting gas station's index if you can travel around the circuit once in the clockwise direction, otherwise return -1. ''' class Solution(object): def canCompleteCircuit(self, gas, cost): """ :type gas: List[int] :type cost: List[int] :rtype: int """ start, curr_sum, total_sum =0, 0, 0 for index in range(len(gas)): diff = gas[index] - cost[index] total_sum += diff curr_sum += diff if curr_sum < 0: start = index + 1 curr_sum = 0 if total_sum >= 0: return start return -1
""" There are N gas stations along a circular route, where the amount of gas at station i is gas[i]. You have a car with an unlimited gas tank and it costs cost[i] of gas to travel from station i to its next station (i+1). You begin the journey with an empty tank at one of the gas stations. Return the starting gas station's index if you can travel around the circuit once in the clockwise direction, otherwise return -1. """ class Solution(object): def can_complete_circuit(self, gas, cost): """ :type gas: List[int] :type cost: List[int] :rtype: int """ (start, curr_sum, total_sum) = (0, 0, 0) for index in range(len(gas)): diff = gas[index] - cost[index] total_sum += diff curr_sum += diff if curr_sum < 0: start = index + 1 curr_sum = 0 if total_sum >= 0: return start return -1
#!/usr/bin/python3 the_file = input("Enter the file name, e.g. Covid_19.fasta ") o_file = open(the_file, 'r') line_number = 0 number_of_lines = 0 by_hundred = [0] * 6 for line in o_file: line_number += 1 if ">" in line and number_of_lines == 0: virus_name = line continue elif ">" in line: if number_of_lines < 100: by_hundred[0] += 1 elif number_of_lines < 200: by_hundred[1] += 1 elif number_of_lines < 300: print(virus_name) print(line_number) by_hundred[2] += 1 elif number_of_lines < 400: print(virus_name) print(line_number) by_hundred[3] += 1 elif number_of_lines < 500: by_hundred[4] += 1 elif number_of_lines < 600: by_hundred[5] += 1 else: print("bigger") number_of_lines = 0 virus_name = line else: number_of_lines += 1 o_file.close() for a in by_hundred: print(a)
the_file = input('Enter the file name, e.g. Covid_19.fasta ') o_file = open(the_file, 'r') line_number = 0 number_of_lines = 0 by_hundred = [0] * 6 for line in o_file: line_number += 1 if '>' in line and number_of_lines == 0: virus_name = line continue elif '>' in line: if number_of_lines < 100: by_hundred[0] += 1 elif number_of_lines < 200: by_hundred[1] += 1 elif number_of_lines < 300: print(virus_name) print(line_number) by_hundred[2] += 1 elif number_of_lines < 400: print(virus_name) print(line_number) by_hundred[3] += 1 elif number_of_lines < 500: by_hundred[4] += 1 elif number_of_lines < 600: by_hundred[5] += 1 else: print('bigger') number_of_lines = 0 virus_name = line else: number_of_lines += 1 o_file.close() for a in by_hundred: print(a)
# encoding: utf-8 # module Rhino.Runtime.InteropWrappers calls itself InteropWrappers # from Rhino3dmIO,Version=5.1.30000.14,Culture=neutral,PublicKeyToken=null # by generator 1.145 # no doc # no imports # no functions # classes class MeshPointDataStruct(object): # no doc m_ci_index=None m_ci_type=None m_edge_index=None m_et=None m_face_index=None m_Px=None m_Py=None m_Pz=None m_t0=None m_t1=None m_t2=None m_t3=None m_Triangle=None class SimpleArrayBrepPointer(object,IDisposable): """ SimpleArrayBrepPointer() """ def Add(self,brep,asConst): """ Add(self: SimpleArrayBrepPointer,brep: Brep,asConst: bool) """ pass def ConstPointer(self): """ ConstPointer(self: SimpleArrayBrepPointer) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayBrepPointer) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayBrepPointer) -> IntPtr """ pass def ToNonConstArray(self): """ ToNonConstArray(self: SimpleArrayBrepPointer) -> Array[Brep] """ pass def __add__(self,*args): """ x.__add__(y) <==> x+y """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayBrepPointer) -> int """ class SimpleArrayCurvePointer(object,IDisposable): """ SimpleArrayCurvePointer() SimpleArrayCurvePointer(curves: IEnumerable[Curve]) """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayCurvePointer) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayCurvePointer) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayCurvePointer) -> IntPtr """ pass def ToNonConstArray(self): """ ToNonConstArray(self: SimpleArrayCurvePointer) -> Array[Curve] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self,curves=None): """ __new__(cls: type) __new__(cls: type,curves: IEnumerable[Curve]) """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass class SimpleArrayDouble(object,IDisposable): """ SimpleArrayDouble() SimpleArrayDouble(items: IEnumerable[float]) """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayDouble) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayDouble) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayDouble) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayDouble) -> Array[float] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self,items=None): """ __new__(cls: type) __new__(cls: type,items: IEnumerable[float]) """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayDouble) -> int """ class SimpleArrayGeometryPointer(object,IDisposable): """ SimpleArrayGeometryPointer() SimpleArrayGeometryPointer(geometry: IEnumerable[GeometryBase]) SimpleArrayGeometryPointer(geometry: IEnumerable) """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayGeometryPointer) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayGeometryPointer) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayGeometryPointer) -> IntPtr """ pass def ToNonConstArray(self): """ ToNonConstArray(self: SimpleArrayGeometryPointer) -> Array[GeometryBase] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self,geometry=None): """ __new__(cls: type) __new__(cls: type,geometry: IEnumerable[GeometryBase]) __new__(cls: type,geometry: IEnumerable) """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass class SimpleArrayGuid(object,IDisposable): """ SimpleArrayGuid() """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayGuid) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayGuid) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayGuid) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayGuid) -> Array[Guid] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayGuid) -> int """ class SimpleArrayInt(object,IDisposable): """ SimpleArrayInt() SimpleArrayInt(values: IEnumerable[int]) """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayInt) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayInt) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayInt) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayInt) -> Array[int] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self,values=None): """ __new__(cls: type) __new__(cls: type,values: IEnumerable[int]) """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayInt) -> int """ class SimpleArrayInterval(object,IDisposable): """ SimpleArrayInterval() """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayInterval) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayInterval) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayInterval) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayInterval) -> Array[Interval] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayInterval) -> int """ class SimpleArrayLine(object,IDisposable): """ SimpleArrayLine() """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayLine) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayLine) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayLine) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayLine) -> Array[Line] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayLine) -> int """ class SimpleArrayMeshPointer(object,IDisposable): """ SimpleArrayMeshPointer() """ def Add(self,mesh,asConst): """ Add(self: SimpleArrayMeshPointer,mesh: Mesh,asConst: bool) """ pass def ConstPointer(self): """ ConstPointer(self: SimpleArrayMeshPointer) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayMeshPointer) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayMeshPointer) -> IntPtr """ pass def ToNonConstArray(self): """ ToNonConstArray(self: SimpleArrayMeshPointer) -> Array[Mesh] """ pass def __add__(self,*args): """ x.__add__(y) <==> x+y """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayMeshPointer) -> int """ class SimpleArrayPoint2d(object,IDisposable): """ SimpleArrayPoint2d() """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayPoint2d) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayPoint2d) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayPoint2d) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayPoint2d) -> Array[Point2d] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayPoint2d) -> int """ class SimpleArrayPoint3d(object,IDisposable): """ SimpleArrayPoint3d() """ def ConstPointer(self): """ ConstPointer(self: SimpleArrayPoint3d) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArrayPoint3d) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArrayPoint3d) -> IntPtr """ pass def ToArray(self): """ ToArray(self: SimpleArrayPoint3d) -> Array[Point3d] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass Count=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: Count(self: SimpleArrayPoint3d) -> int """ class SimpleArraySurfacePointer(object,IDisposable): """ SimpleArraySurfacePointer() """ def ConstPointer(self): """ ConstPointer(self: SimpleArraySurfacePointer) -> IntPtr """ pass def Dispose(self): """ Dispose(self: SimpleArraySurfacePointer) """ pass def NonConstPointer(self): """ NonConstPointer(self: SimpleArraySurfacePointer) -> IntPtr """ pass def ToNonConstArray(self): """ ToNonConstArray(self: SimpleArraySurfacePointer) -> Array[Surface] """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass class StringHolder(object,IDisposable): """ StringHolder() """ def ConstPointer(self): """ ConstPointer(self: StringHolder) -> IntPtr """ pass def Dispose(self): """ Dispose(self: StringHolder) """ pass @staticmethod def GetString(pStringHolder): """ GetString(pStringHolder: IntPtr) -> str """ pass def NonConstPointer(self): """ NonConstPointer(self: StringHolder) -> IntPtr """ pass def ToString(self): """ ToString(self: StringHolder) -> str """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass def __str__(self,*args): pass class StringWrapper(object,IDisposable): """ StringWrapper() StringWrapper(s: str) """ def Dispose(self): """ Dispose(self: StringWrapper) """ pass @staticmethod def GetStringFromPointer(pConstON_wString): """ GetStringFromPointer(pConstON_wString: IntPtr) -> str """ pass def SetString(self,s): """ SetString(self: StringWrapper,s: str) """ pass @staticmethod def SetStringOnPointer(pON_wString,s): """ SetStringOnPointer(pON_wString: IntPtr,s: str) """ pass def ToString(self): """ ToString(self: StringWrapper) -> str """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self,s=None): """ __new__(cls: type) __new__(cls: type,s: str) """ pass def __repr__(self,*args): """ __repr__(self: object) -> str """ pass def __str__(self,*args): pass ConstPointer=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: ConstPointer(self: StringWrapper) -> IntPtr """ NonConstPointer=property(lambda self: object(),lambda self,v: None,lambda self: None) """Get: NonConstPointer(self: StringWrapper) -> IntPtr """
class Meshpointdatastruct(object): m_ci_index = None m_ci_type = None m_edge_index = None m_et = None m_face_index = None m__px = None m__py = None m__pz = None m_t0 = None m_t1 = None m_t2 = None m_t3 = None m__triangle = None class Simplearraybreppointer(object, IDisposable): """ SimpleArrayBrepPointer() """ def add(self, brep, asConst): """ Add(self: SimpleArrayBrepPointer,brep: Brep,asConst: bool) """ pass def const_pointer(self): """ ConstPointer(self: SimpleArrayBrepPointer) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayBrepPointer) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayBrepPointer) -> IntPtr """ pass def to_non_const_array(self): """ ToNonConstArray(self: SimpleArrayBrepPointer) -> Array[Brep] """ pass def __add__(self, *args): """ x.__add__(y) <==> x+y """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayBrepPointer) -> int\n\n\n\n' class Simplearraycurvepointer(object, IDisposable): """ SimpleArrayCurvePointer() SimpleArrayCurvePointer(curves: IEnumerable[Curve]) """ def const_pointer(self): """ ConstPointer(self: SimpleArrayCurvePointer) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayCurvePointer) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayCurvePointer) -> IntPtr """ pass def to_non_const_array(self): """ ToNonConstArray(self: SimpleArrayCurvePointer) -> Array[Curve] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, curves=None): """ __new__(cls: type) __new__(cls: type,curves: IEnumerable[Curve]) """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass class Simplearraydouble(object, IDisposable): """ SimpleArrayDouble() SimpleArrayDouble(items: IEnumerable[float]) """ def const_pointer(self): """ ConstPointer(self: SimpleArrayDouble) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayDouble) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayDouble) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayDouble) -> Array[float] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, items=None): """ __new__(cls: type) __new__(cls: type,items: IEnumerable[float]) """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayDouble) -> int\n\n\n\n' class Simplearraygeometrypointer(object, IDisposable): """ SimpleArrayGeometryPointer() SimpleArrayGeometryPointer(geometry: IEnumerable[GeometryBase]) SimpleArrayGeometryPointer(geometry: IEnumerable) """ def const_pointer(self): """ ConstPointer(self: SimpleArrayGeometryPointer) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayGeometryPointer) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayGeometryPointer) -> IntPtr """ pass def to_non_const_array(self): """ ToNonConstArray(self: SimpleArrayGeometryPointer) -> Array[GeometryBase] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, geometry=None): """ __new__(cls: type) __new__(cls: type,geometry: IEnumerable[GeometryBase]) __new__(cls: type,geometry: IEnumerable) """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass class Simplearrayguid(object, IDisposable): """ SimpleArrayGuid() """ def const_pointer(self): """ ConstPointer(self: SimpleArrayGuid) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayGuid) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayGuid) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayGuid) -> Array[Guid] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayGuid) -> int\n\n\n\n' class Simplearrayint(object, IDisposable): """ SimpleArrayInt() SimpleArrayInt(values: IEnumerable[int]) """ def const_pointer(self): """ ConstPointer(self: SimpleArrayInt) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayInt) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayInt) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayInt) -> Array[int] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, values=None): """ __new__(cls: type) __new__(cls: type,values: IEnumerable[int]) """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayInt) -> int\n\n\n\n' class Simplearrayinterval(object, IDisposable): """ SimpleArrayInterval() """ def const_pointer(self): """ ConstPointer(self: SimpleArrayInterval) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayInterval) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayInterval) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayInterval) -> Array[Interval] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayInterval) -> int\n\n\n\n' class Simplearrayline(object, IDisposable): """ SimpleArrayLine() """ def const_pointer(self): """ ConstPointer(self: SimpleArrayLine) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayLine) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayLine) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayLine) -> Array[Line] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayLine) -> int\n\n\n\n' class Simplearraymeshpointer(object, IDisposable): """ SimpleArrayMeshPointer() """ def add(self, mesh, asConst): """ Add(self: SimpleArrayMeshPointer,mesh: Mesh,asConst: bool) """ pass def const_pointer(self): """ ConstPointer(self: SimpleArrayMeshPointer) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayMeshPointer) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayMeshPointer) -> IntPtr """ pass def to_non_const_array(self): """ ToNonConstArray(self: SimpleArrayMeshPointer) -> Array[Mesh] """ pass def __add__(self, *args): """ x.__add__(y) <==> x+y """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayMeshPointer) -> int\n\n\n\n' class Simplearraypoint2D(object, IDisposable): """ SimpleArrayPoint2d() """ def const_pointer(self): """ ConstPointer(self: SimpleArrayPoint2d) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayPoint2d) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayPoint2d) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayPoint2d) -> Array[Point2d] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayPoint2d) -> int\n\n\n\n' class Simplearraypoint3D(object, IDisposable): """ SimpleArrayPoint3d() """ def const_pointer(self): """ ConstPointer(self: SimpleArrayPoint3d) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArrayPoint3d) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArrayPoint3d) -> IntPtr """ pass def to_array(self): """ ToArray(self: SimpleArrayPoint3d) -> Array[Point3d] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass count = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: Count(self: SimpleArrayPoint3d) -> int\n\n\n\n' class Simplearraysurfacepointer(object, IDisposable): """ SimpleArraySurfacePointer() """ def const_pointer(self): """ ConstPointer(self: SimpleArraySurfacePointer) -> IntPtr """ pass def dispose(self): """ Dispose(self: SimpleArraySurfacePointer) """ pass def non_const_pointer(self): """ NonConstPointer(self: SimpleArraySurfacePointer) -> IntPtr """ pass def to_non_const_array(self): """ ToNonConstArray(self: SimpleArraySurfacePointer) -> Array[Surface] """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass class Stringholder(object, IDisposable): """ StringHolder() """ def const_pointer(self): """ ConstPointer(self: StringHolder) -> IntPtr """ pass def dispose(self): """ Dispose(self: StringHolder) """ pass @staticmethod def get_string(pStringHolder): """ GetString(pStringHolder: IntPtr) -> str """ pass def non_const_pointer(self): """ NonConstPointer(self: StringHolder) -> IntPtr """ pass def to_string(self): """ ToString(self: StringHolder) -> str """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass def __str__(self, *args): pass class Stringwrapper(object, IDisposable): """ StringWrapper() StringWrapper(s: str) """ def dispose(self): """ Dispose(self: StringWrapper) """ pass @staticmethod def get_string_from_pointer(pConstON_wString): """ GetStringFromPointer(pConstON_wString: IntPtr) -> str """ pass def set_string(self, s): """ SetString(self: StringWrapper,s: str) """ pass @staticmethod def set_string_on_pointer(pON_wString, s): """ SetStringOnPointer(pON_wString: IntPtr,s: str) """ pass def to_string(self): """ ToString(self: StringWrapper) -> str """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, s=None): """ __new__(cls: type) __new__(cls: type,s: str) """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass def __str__(self, *args): pass const_pointer = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: ConstPointer(self: StringWrapper) -> IntPtr\n\n\n\n' non_const_pointer = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Get: NonConstPointer(self: StringWrapper) -> IntPtr\n\n\n\n'
class Solution: def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]: candidates.sort() res = [] self.bt(candidates,0,[],target, res) return res def bt(self, candidates, idx, tempList, target, res): if target < 0: return if target == 0: res.append(tempList) return for i in range(idx, len(candidates)): if i>idx and candidates[i] == candidates[i-1]: continue self.bt(candidates, i+1, tempList+[candidates[i]], target-candidates[i], res)
class Solution: def combination_sum2(self, candidates: List[int], target: int) -> List[List[int]]: candidates.sort() res = [] self.bt(candidates, 0, [], target, res) return res def bt(self, candidates, idx, tempList, target, res): if target < 0: return if target == 0: res.append(tempList) return for i in range(idx, len(candidates)): if i > idx and candidates[i] == candidates[i - 1]: continue self.bt(candidates, i + 1, tempList + [candidates[i]], target - candidates[i], res)
class RoomAlreadyEmpty(Exception): pass class CannotAllocateRoom(Exception): pass
class Roomalreadyempty(Exception): pass class Cannotallocateroom(Exception): pass
file_location = 'results_googlenet.txt' text_file = open(file_location, "r") lines = text_file.readlines() living_room = [] for i in range(74): living_room.append(i) dining_room = [] for i in range(74, 113): dining_room.append(i) for i in range(183, 205): dining_room.append(i) kitchen = [] for i in range(113, 184): kitchen.append(i) hallway = [] for i in range(205, 339): hallway.append(i) bathroom = [] for i in range(339, 355): bathroom.append(i) fail_count = 0 for l in lines: if l.startswith("Image:"): tokens = l.split(' ') img_parts = tokens[1].split('_') img_num = int(img_parts[1].split('.')[0]) classification = tokens[3].replace(" ", "").strip() prediction = "" if img_num in living_room: prediction = "LIVING" if img_num in dining_room: prediction = "DINING" if img_num in kitchen: prediction = "KITCHEN" if img_num in hallway: prediction = "HALLWAY" if img_num in bathroom: prediction = "BATHROOM" if classification != prediction: print(img_num, classification, prediction) fail_count = fail_count + 1 print("FAIL COUNT: ", fail_count) text_file.close()
file_location = 'results_googlenet.txt' text_file = open(file_location, 'r') lines = text_file.readlines() living_room = [] for i in range(74): living_room.append(i) dining_room = [] for i in range(74, 113): dining_room.append(i) for i in range(183, 205): dining_room.append(i) kitchen = [] for i in range(113, 184): kitchen.append(i) hallway = [] for i in range(205, 339): hallway.append(i) bathroom = [] for i in range(339, 355): bathroom.append(i) fail_count = 0 for l in lines: if l.startswith('Image:'): tokens = l.split(' ') img_parts = tokens[1].split('_') img_num = int(img_parts[1].split('.')[0]) classification = tokens[3].replace(' ', '').strip() prediction = '' if img_num in living_room: prediction = 'LIVING' if img_num in dining_room: prediction = 'DINING' if img_num in kitchen: prediction = 'KITCHEN' if img_num in hallway: prediction = 'HALLWAY' if img_num in bathroom: prediction = 'BATHROOM' if classification != prediction: print(img_num, classification, prediction) fail_count = fail_count + 1 print('FAIL COUNT: ', fail_count) text_file.close()
#!/usr/bin/python # Miscellaneous TIFF-related tests # Regression test -- we once had a bug where 'separate' planarconfig # tiled float files would have data corrupted by a buffer overwrite. command += (oiio_app("oiiotool") + "--pattern checker 128x128 4 --tile 64 64 --planarconfig separate -d float -o check1.tif") outputs = [ "check1.tif" ]
command += oiio_app('oiiotool') + '--pattern checker 128x128 4 --tile 64 64 --planarconfig separate -d float -o check1.tif' outputs = ['check1.tif']
patches = [ # Add AWS::MemoryDB::Cluster Endpoint { "op": "add", "path": "/ResourceTypes/AWS::MemoryDB::Cluster/Properties/ClusterEndpoint", "value": {"Type": "Endpoint"}, }, ]
patches = [{'op': 'add', 'path': '/ResourceTypes/AWS::MemoryDB::Cluster/Properties/ClusterEndpoint', 'value': {'Type': 'Endpoint'}}]
class GenerateWPAD: head = [] foot = [] def __init__(self): self.head = [ '/**\n', 'The original template was created by Sam Gleske\n', 'This author and license block must stay intact for use even if this script is \n', 'modified!\n', '\n', 'License:\n', 'This file falls under the MIT Licence \n', 'http://www.opensource.org/licenses/mit-license.php\n', 'Take responsibility for your own actions.\n', '\n', 'Generated using Python and predefined proxy lists!\n', 'http://sourceforge.net/projects/webtechtools/files/Proxy%20wpad.dat%20Generator/\n', '\n', 'You are not authorized to use this proxy configuration for illegal purposes.\n', 'This file follows the Netscape WPAD standard. Please read the documentation\n', 'after the configuration options for additional warnings and tips information.\n', '**/\n', '\n', '/*\n', '* Configuration Options\n', '*/\n', '\n', '//Enables console logging (true/false, default true)\n', 'var ENABLE_LOGGING=true;\n', '\n', '\n', '//Enable friendly excludes (true/false, default true)\n', '//If a request matches an exclude then it will create a direct connection rather than proxy\n', '//This option must be disabled for user defined excludes to work\n', 'var ENABLE_EXCLUDES=true;\n', '\n', '//User defined Protocol excludes (array)\n', 'var protocol_excludes=[];\n', '\n', '//User defined IP excludes (array)\n', 'var ip_excludes=[];\n', '\n', '//User defined Domain excludes (array)\n', 'var domain_excludes=[];\n', '\n', '\n', '//Enable predefined proxy list (true/false, default true)\n', '//This option must be disabled for the user defined proxy list\n', 'var ENABLE_PREDEFINED_PROXY_LIST=true;\n', '\n', '//User defined proxy list (array)\n', 'var proxylist=[];\n', '\n', '/*\n', '* End of Configuration Options\n', '*/\n', '\n', '\n', '\n', '\n', '\n', '/************************************************************************************\n', 'WARNINGS, INFORMATION, AND ADDITIONAL DOCUMENTATION\n', '*************************************************************************************\n', 'It is highly recommended that you keep this documentation block if you modify \n', 'this file.\n', '\n', 'DO NOT, I repeat, DO NOT log into web portals where financial or personal \n', 'information is at risk using an anonymous/3rd party proxy. It is possible that \n', 'an anonymous proxy is set up to record all traffic and to mine usernames and \n', 'passwords for websites. Monitoring insecure authentication or cookies are just a \n', 'few of many methods to achieve this. I have set up some rules which will help \n', 'minimize the effect of this but it is still recommended to disable this proxy \n', 'whenever handling such information. This is not a flaw of this software or \n', 'wpad.dat but more the nature of an anonymous proxy.\n', '\n', 'Public Proxies and the Law\n', 'According to U.S. law, 18 U.S.C. Section 1030 (Fraud and Related Activity in \n', 'Connection with Computers) applies only when anyone who knowingly accesses a \n', 'computer without authorization or has knowingly exceeds his authorized access on \n', 'that computer. Because an opened proxy, by default, allows connections and use of \n', 'the service by anyone in the WWW, its administrator has essentially authorized \n', 'everyone to use the proxy. Therefore browsing the web, via anonymous proxies, is \n', 'not illegal.\n', '\n', '\n', 'This software is geared towards advanced end users and security professionals. By \n', 'using this software you agree to the MIT license which governs any unlicensed \n', 'software or files related to this file.\n', '\n', '\n', 'What is wpad.dat?\n', 'wpad.dat is a Web Proxy Automatic Detection (WPAD) file. Your browser selects a \n', 'proxy based on the pre-defined rules specified in the wpad.dat file. The language \n', 'is JavaScript for wpad.dat.\n', '\n', '\n', 'Pros/Cons of proxying using my wpad.dat method?\n', 'Pros:\n', '* Your IP address is constantly changing from the perspective of the web \n', '\t server making you impossible to track.\n', '* There are pre-defined rules which help to protect your information if you \n', '\t accidently forget to turn off this proxy method while browsing websites \n', '\t where financial or personal information are at risk.\n', '\t* If a website is using an encrypted connection then it does not go through\n', '\t any anonymous proxy. PLEASE NOTE if you opt out of my predefined rules\n', '\t then this is no longer the case.\n', '\n', 'Cons:\n', '* Your browsing speed is slightly diminished because you are visiting \n', '\t websites via a proxy.\n', '* Your browsing habits and information are not guarunteed to be protected \n', '\t from the anonymous proxy if by some happance this file is misconfigured.\n', '\n', '*************************************************************************************\n', 'End of Documentation\n', '*************************************************************************************/\n', '\n', '\n', '\n', '\n', '\n', '//////////////// No need to edit beyond this point ///////////////\n', '\n', '//Custom defined functions for cleaner processing\n', 'function exclude(source,rules)\n', '{\n', '\ttry\n', '\t{\n', '\t\tfor(var i=0;i<rules.length;i++)\n', '\t\t\tif(shExpMatch( source, rules[i]))\n', '\t\t\t\treturn true;\n', '\t\treturn false;\n', '\t}\n', '\tcatch(e)\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("An exception has been encountered!\\n" + source + "\\n" + rules);\n', '\t\treturn false;\n', '\t}\n', '}\n', '\n', '//Initialization Function\n', 'function FindProxyForURL(url, host) \n', '{\n', '\t//These are my personal excludes just in case I accidently go to a login site with this proxy enabled\n', '\tif(ENABLE_EXCLUDES)\n', '\t{\n', '\t\tip_excludes=[\n', '\t\t\t"10.*", //private address range\n', '\t\t\t"172.*", //private address range\n', '\t\t\t"192.*", //private address range\n', '\t\t\t"127.*", //loopback or localhost\n', '\t\t\t"144.118.*", //Drexel University\n', '\t\t\t"74.125.*", //Google\n', '\t\t\t"67.195.*", //Yahoo Inc\n', '\t\t\t"170.201.*", //PNC Bank\n', '\t\t\t"66.95.*", //United Bank\n', '\t\t\t"12.*", //AT&T WorldNet Services (covers AES and other banking websites)\n', '\t\t\t"164.109.*" //Digex, Incorporated. (Covers PECO and Exelon Corp)\n', '\t\t];\n', '\t\tdomain_excludes=[\n', '\t\t\t"*accuweather.com",\n', '\t\t\t"*mozdev.org",\n', '\t\t\t"*mozilla.org",\n', '\t\t\t"*bankofamerica.com",\n', '\t\t\t"*campusfood.com",\n', '\t\t\t"*chase.com*",\n', '\t\t\t"*clubbleach.org",\n', '\t\t\t"*crunchyroll.com",\n', '\t\t\t"*dccc.edu*",\n', '\t\t\t"*domaintools.com",\n', '\t\t\t"*ea.com",\n', '\t\t\t"*ebay.com",\n', '\t\t\t"*ebayrtm.com",\n', '\t\t\t"*ebaystatic.com",\n', '\t\t\t"*expedia.com",\n', '\t\t\t"*experts-exchange.com",\n', '\t\t\t"*facebook.com",\n', '\t\t\t"*fbcdn.net",\n', '\t\t\t"*flagfox.net",\n', '\t\t\t"*fsdn.com",\n', '\t\t\t"*godaddy.com",\n', '\t\t\t"www.google.*", //Needed for when Google randomly decides to load files from another country like www.google.ca or www.google.com.ph\n', '\t\t\t"*.gov",\n', '\t\t\t"*geotrust.com",\n', '\t\t\t"*ingdirect.com",\n', '\t\t\t"*ittoolbox.com",\n', '\t\t\t"*live.com",\n', '\t\t\t"*logmein.com",\n', '\t\t\t"*mqcdn.com",\n', '\t\t\t"*msn.com",\n', '\t\t\t"*newegg.ca",\n', '\t\t\t"*newegg.com",\n', '\t\t\t"*neweggimages.com",\n', '\t\t\t"*passport.com",\n', '\t\t\t"*passport.net",\n', '\t\t\t"*passportimages.com",\n', '\t\t\t"*paypal.com",\n', '\t\t\t"*paypalobjects.com",\n', '\t\t\t"*register.com",\n', '\t\t\t"*sf.net",\n', '\t\t\t"*sourceforge.net",\n', '\t\t\t"*steampowered.com",\n', '\t\t\t"*thawte.com",\n', '\t\t\t"*verisign.com",\n', '\t\t\t"*yahoo.com",\n', '\t\t\t"*whois.net"\n', '\t\t];\n', '\t\tprotocol_excludes=[\n', '\t\t\t"about:*",\n', '\t\t\t"aim:*",\n', '\t\t\t"chrome:*",\n', '\t\t\t"file:*",\n', '\t\t\t"https:*",\n', '\t\t\t"sftp:*",\n', '\t\t\t"socks:*",\n', '\t\t\t"steam:*",\n', '\t\t\t"telnet:*"\n', '\t\t];\n', '\t};\n', '\t\n', '\t//Run exclude rules for protocols, domain names, and ip addresses\n', '\tif(exclude(url.toLowerCase(),protocol_excludes))\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("Exclude rule triggered: protocol\\n" + url);\n', '\t\treturn "DIRECT";\n', '\t};\n', '\tif(exclude(dnsResolve(host),ip_excludes))\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("Exclude rule triggered: ip\\n" + dnsResolve(host));\n', '\t\treturn "DIRECT";\n', '\t};\n', '\tif(exclude(host.toLowerCase(),domain_excludes))\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("Exclude rule triggered: domain\\n" + dnsResolve(host) + "\\n" + host);\n', '\t\treturn "DIRECT";\n', '\t};\n', '\n', '\t//Pre-defined proxy list\n', '\tif(ENABLE_PREDEFINED_PROXY_LIST)\n', '\t{\n', '\t\tproxylist=[\n', '\t\t\t' ] self.foot = [ '\n', '\t\t];\n', '\t};\n', '\t\n', '\t//Generate a random index for the proxy list\n', '\ttry\n', '\t{\n', '\t\tvar index=-1;\n', '\t\twhile(index<0)\n', '\t\t\tindex=Math.ceil(proxylist.length*Math.random())-1;\n', '\n', '\t\tif(proxylist.length)\n', '\t\t{\n', '\t\t\tif(ENABLE_LOGGING)\n', '\t\t\t\talert("Rule not triggered!\\n" + dnsResolve(host) + "\\n" + host.toLowerCase() + "\\n" + url.toLowerCase() + "\\nUsing Proxy: " + proxylist[index]);\n', '\t\t\treturn "PROXY "+proxylist[index];\n', '\t\t}\n', '\t\telse\n', '\t\t\treturn "DIRECT";\n', '\t}\n', '\tcatch(e)\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("An exception has been encountered!\\n" + proxylist);\n', '\t\treturn "DIRECT";\n', '\t};\n', '}\n' ]
class Generatewpad: head = [] foot = [] def __init__(self): self.head = ['/**\n', 'The original template was created by Sam Gleske\n', 'This author and license block must stay intact for use even if this script is \n', 'modified!\n', '\n', 'License:\n', 'This file falls under the MIT Licence \n', 'http://www.opensource.org/licenses/mit-license.php\n', 'Take responsibility for your own actions.\n', '\n', 'Generated using Python and predefined proxy lists!\n', 'http://sourceforge.net/projects/webtechtools/files/Proxy%20wpad.dat%20Generator/\n', '\n', 'You are not authorized to use this proxy configuration for illegal purposes.\n', 'This file follows the Netscape WPAD standard. Please read the documentation\n', 'after the configuration options for additional warnings and tips information.\n', '**/\n', '\n', '/*\n', '* Configuration Options\n', '*/\n', '\n', '//Enables console logging (true/false, default true)\n', 'var ENABLE_LOGGING=true;\n', '\n', '\n', '//Enable friendly excludes (true/false, default true)\n', '//If a request matches an exclude then it will create a direct connection rather than proxy\n', '//This option must be disabled for user defined excludes to work\n', 'var ENABLE_EXCLUDES=true;\n', '\n', '//User defined Protocol excludes (array)\n', 'var protocol_excludes=[];\n', '\n', '//User defined IP excludes (array)\n', 'var ip_excludes=[];\n', '\n', '//User defined Domain excludes (array)\n', 'var domain_excludes=[];\n', '\n', '\n', '//Enable predefined proxy list (true/false, default true)\n', '//This option must be disabled for the user defined proxy list\n', 'var ENABLE_PREDEFINED_PROXY_LIST=true;\n', '\n', '//User defined proxy list (array)\n', 'var proxylist=[];\n', '\n', '/*\n', '* End of Configuration Options\n', '*/\n', '\n', '\n', '\n', '\n', '\n', '/************************************************************************************\n', 'WARNINGS, INFORMATION, AND ADDITIONAL DOCUMENTATION\n', '*************************************************************************************\n', 'It is highly recommended that you keep this documentation block if you modify \n', 'this file.\n', '\n', 'DO NOT, I repeat, DO NOT log into web portals where financial or personal \n', 'information is at risk using an anonymous/3rd party proxy. It is possible that \n', 'an anonymous proxy is set up to record all traffic and to mine usernames and \n', 'passwords for websites. Monitoring insecure authentication or cookies are just a \n', 'few of many methods to achieve this. I have set up some rules which will help \n', 'minimize the effect of this but it is still recommended to disable this proxy \n', 'whenever handling such information. This is not a flaw of this software or \n', 'wpad.dat but more the nature of an anonymous proxy.\n', '\n', 'Public Proxies and the Law\n', 'According to U.S. law, 18 U.S.C. Section 1030 (Fraud and Related Activity in \n', 'Connection with Computers) applies only when anyone who knowingly accesses a \n', 'computer without authorization or has knowingly exceeds his authorized access on \n', 'that computer. Because an opened proxy, by default, allows connections and use of \n', 'the service by anyone in the WWW, its administrator has essentially authorized \n', 'everyone to use the proxy. Therefore browsing the web, via anonymous proxies, is \n', 'not illegal.\n', '\n', '\n', 'This software is geared towards advanced end users and security professionals. By \n', 'using this software you agree to the MIT license which governs any unlicensed \n', 'software or files related to this file.\n', '\n', '\n', 'What is wpad.dat?\n', 'wpad.dat is a Web Proxy Automatic Detection (WPAD) file. Your browser selects a \n', 'proxy based on the pre-defined rules specified in the wpad.dat file. The language \n', 'is JavaScript for wpad.dat.\n', '\n', '\n', 'Pros/Cons of proxying using my wpad.dat method?\n', 'Pros:\n', '* Your IP address is constantly changing from the perspective of the web \n', '\t server making you impossible to track.\n', '* There are pre-defined rules which help to protect your information if you \n', '\t accidently forget to turn off this proxy method while browsing websites \n', '\t where financial or personal information are at risk.\n', '\t* If a website is using an encrypted connection then it does not go through\n', '\t any anonymous proxy. PLEASE NOTE if you opt out of my predefined rules\n', '\t then this is no longer the case.\n', '\n', 'Cons:\n', '* Your browsing speed is slightly diminished because you are visiting \n', '\t websites via a proxy.\n', '* Your browsing habits and information are not guarunteed to be protected \n', '\t from the anonymous proxy if by some happance this file is misconfigured.\n', '\n', '*************************************************************************************\n', 'End of Documentation\n', '*************************************************************************************/\n', '\n', '\n', '\n', '\n', '\n', '//////////////// No need to edit beyond this point ///////////////\n', '\n', '//Custom defined functions for cleaner processing\n', 'function exclude(source,rules)\n', '{\n', '\ttry\n', '\t{\n', '\t\tfor(var i=0;i<rules.length;i++)\n', '\t\t\tif(shExpMatch( source, rules[i]))\n', '\t\t\t\treturn true;\n', '\t\treturn false;\n', '\t}\n', '\tcatch(e)\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("An exception has been encountered!\\n" + source + "\\n" + rules);\n', '\t\treturn false;\n', '\t}\n', '}\n', '\n', '//Initialization Function\n', 'function FindProxyForURL(url, host) \n', '{\n', '\t//These are my personal excludes just in case I accidently go to a login site with this proxy enabled\n', '\tif(ENABLE_EXCLUDES)\n', '\t{\n', '\t\tip_excludes=[\n', '\t\t\t"10.*", //private address range\n', '\t\t\t"172.*", //private address range\n', '\t\t\t"192.*", //private address range\n', '\t\t\t"127.*", //loopback or localhost\n', '\t\t\t"144.118.*", //Drexel University\n', '\t\t\t"74.125.*", //Google\n', '\t\t\t"67.195.*", //Yahoo Inc\n', '\t\t\t"170.201.*", //PNC Bank\n', '\t\t\t"66.95.*", //United Bank\n', '\t\t\t"12.*", //AT&T WorldNet Services (covers AES and other banking websites)\n', '\t\t\t"164.109.*" //Digex, Incorporated. (Covers PECO and Exelon Corp)\n', '\t\t];\n', '\t\tdomain_excludes=[\n', '\t\t\t"*accuweather.com",\n', '\t\t\t"*mozdev.org",\n', '\t\t\t"*mozilla.org",\n', '\t\t\t"*bankofamerica.com",\n', '\t\t\t"*campusfood.com",\n', '\t\t\t"*chase.com*",\n', '\t\t\t"*clubbleach.org",\n', '\t\t\t"*crunchyroll.com",\n', '\t\t\t"*dccc.edu*",\n', '\t\t\t"*domaintools.com",\n', '\t\t\t"*ea.com",\n', '\t\t\t"*ebay.com",\n', '\t\t\t"*ebayrtm.com",\n', '\t\t\t"*ebaystatic.com",\n', '\t\t\t"*expedia.com",\n', '\t\t\t"*experts-exchange.com",\n', '\t\t\t"*facebook.com",\n', '\t\t\t"*fbcdn.net",\n', '\t\t\t"*flagfox.net",\n', '\t\t\t"*fsdn.com",\n', '\t\t\t"*godaddy.com",\n', '\t\t\t"www.google.*", //Needed for when Google randomly decides to load files from another country like www.google.ca or www.google.com.ph\n', '\t\t\t"*.gov",\n', '\t\t\t"*geotrust.com",\n', '\t\t\t"*ingdirect.com",\n', '\t\t\t"*ittoolbox.com",\n', '\t\t\t"*live.com",\n', '\t\t\t"*logmein.com",\n', '\t\t\t"*mqcdn.com",\n', '\t\t\t"*msn.com",\n', '\t\t\t"*newegg.ca",\n', '\t\t\t"*newegg.com",\n', '\t\t\t"*neweggimages.com",\n', '\t\t\t"*passport.com",\n', '\t\t\t"*passport.net",\n', '\t\t\t"*passportimages.com",\n', '\t\t\t"*paypal.com",\n', '\t\t\t"*paypalobjects.com",\n', '\t\t\t"*register.com",\n', '\t\t\t"*sf.net",\n', '\t\t\t"*sourceforge.net",\n', '\t\t\t"*steampowered.com",\n', '\t\t\t"*thawte.com",\n', '\t\t\t"*verisign.com",\n', '\t\t\t"*yahoo.com",\n', '\t\t\t"*whois.net"\n', '\t\t];\n', '\t\tprotocol_excludes=[\n', '\t\t\t"about:*",\n', '\t\t\t"aim:*",\n', '\t\t\t"chrome:*",\n', '\t\t\t"file:*",\n', '\t\t\t"https:*",\n', '\t\t\t"sftp:*",\n', '\t\t\t"socks:*",\n', '\t\t\t"steam:*",\n', '\t\t\t"telnet:*"\n', '\t\t];\n', '\t};\n', '\t\n', '\t//Run exclude rules for protocols, domain names, and ip addresses\n', '\tif(exclude(url.toLowerCase(),protocol_excludes))\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("Exclude rule triggered: protocol\\n" + url);\n', '\t\treturn "DIRECT";\n', '\t};\n', '\tif(exclude(dnsResolve(host),ip_excludes))\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("Exclude rule triggered: ip\\n" + dnsResolve(host));\n', '\t\treturn "DIRECT";\n', '\t};\n', '\tif(exclude(host.toLowerCase(),domain_excludes))\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("Exclude rule triggered: domain\\n" + dnsResolve(host) + "\\n" + host);\n', '\t\treturn "DIRECT";\n', '\t};\n', '\n', '\t//Pre-defined proxy list\n', '\tif(ENABLE_PREDEFINED_PROXY_LIST)\n', '\t{\n', '\t\tproxylist=[\n', '\t\t\t'] self.foot = ['\n', '\t\t];\n', '\t};\n', '\t\n', '\t//Generate a random index for the proxy list\n', '\ttry\n', '\t{\n', '\t\tvar index=-1;\n', '\t\twhile(index<0)\n', '\t\t\tindex=Math.ceil(proxylist.length*Math.random())-1;\n', '\n', '\t\tif(proxylist.length)\n', '\t\t{\n', '\t\t\tif(ENABLE_LOGGING)\n', '\t\t\t\talert("Rule not triggered!\\n" + dnsResolve(host) + "\\n" + host.toLowerCase() + "\\n" + url.toLowerCase() + "\\nUsing Proxy: " + proxylist[index]);\n', '\t\t\treturn "PROXY "+proxylist[index];\n', '\t\t}\n', '\t\telse\n', '\t\t\treturn "DIRECT";\n', '\t}\n', '\tcatch(e)\n', '\t{\n', '\t\tif(ENABLE_LOGGING)\n', '\t\t\talert("An exception has been encountered!\\n" + proxylist);\n', '\t\treturn "DIRECT";\n', '\t};\n', '}\n']
class SlewLimiter: def __init__(self, limit): self.limit = limit self.output = 0.0 def Feed(self, value): error = value - self.output if error > self.limit: error = self.limit elif error < (self.limit * -1): error = self.limit * -1 self.output += error return self.output class MultipleSlewLimiter: def __init__(self, limit): self.limit = limit self.output = 0.0 def Feed(self, value): error = value - self.output if error > value *self.limit: error = self.limit elif error < (value * self.limit * -1): error = self.limit * -1 self.output += error return self.output MultipleSlewLimiter
class Slewlimiter: def __init__(self, limit): self.limit = limit self.output = 0.0 def feed(self, value): error = value - self.output if error > self.limit: error = self.limit elif error < self.limit * -1: error = self.limit * -1 self.output += error return self.output class Multipleslewlimiter: def __init__(self, limit): self.limit = limit self.output = 0.0 def feed(self, value): error = value - self.output if error > value * self.limit: error = self.limit elif error < value * self.limit * -1: error = self.limit * -1 self.output += error return self.output MultipleSlewLimiter
description = 'setup for the execution daemon' group = 'special' devices = dict( # The entries for the password hashes are generated from randomized # passwords and not reproduceable, please don't forget to create new ones. # see https://forge.frm2.tum.de/nicos/doc/nicos-stable/services/daemon/#nicos.services.daemon.auth.list.Authenticator Auth = device('nicos.services.daemon.auth.list.Authenticator', hashing = 'md5', passwd = [ ('guest', '', 'guest'), ('user', 'd3bde5ce3e546626df42771c58986d4e', 'user'), ('admin', 'f3309476bdb36550aa8fb90ae748c9cc', 'admin'), ], ), Daemon = device('nicos.services.daemon.NicosDaemon', server = '', authenticators = ['Auth'], loglevel = 'info', ), )
description = 'setup for the execution daemon' group = 'special' devices = dict(Auth=device('nicos.services.daemon.auth.list.Authenticator', hashing='md5', passwd=[('guest', '', 'guest'), ('user', 'd3bde5ce3e546626df42771c58986d4e', 'user'), ('admin', 'f3309476bdb36550aa8fb90ae748c9cc', 'admin')]), Daemon=device('nicos.services.daemon.NicosDaemon', server='', authenticators=['Auth'], loglevel='info'))
# _update_parameter.py __module_name__ = "_update_parameter.py" __author__ = ", ".join(["Michael E. Vinyard"]) __email__ = ", ".join(["vinyard@g.harvard.edu",]) def _update_parameter(class_object, parameter, value): class_object.__setattr__(parameter, value)
__module_name__ = '_update_parameter.py' __author__ = ', '.join(['Michael E. Vinyard']) __email__ = ', '.join(['vinyard@g.harvard.edu']) def _update_parameter(class_object, parameter, value): class_object.__setattr__(parameter, value)
#!/usr/bin/env python # -*- coding: utf-8 -*- # # rce-core/rce/util/iaas.py # # This file is part of the RoboEarth Cloud Engine framework. # # This file was originally created for RoboEearth # http://www.roboearth.org/ # # The research leading to these results has received funding from # the European Union Seventh Framework Programme FP7/2007-2013 under # grant agreement no248942 RoboEarth. # # Copyright 2013 RoboEarth # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # \author/s: Dominique Hunziker # # # TODO: This needs some work on specification: # - define interface # - create a class for each IAAS type implementing interface class IaasHook(object): """ # TODO: Add doc """ def disconnect(self): """ Method is called when shutting down the engine to relieve the hook. """ # TODO: Should destroy all instances which have been started dynamically raise NotImplementedError def spin_up(self, count=1, type=None, specialRequest=None): """ Call to spin up more instances. @param count: Number of instances to be spun up. @type count: int @param type: Type (generally size) of instance requested @type type: TDB by implementation @param specialRequest: Special request (gpu, cluster, hadoop) @type specialRequest: TDB by implementation """ raise NotImplementedError def spin_down(self): """ # TODO: ??? """ raise NotImplementedError
class Iaashook(object): """ # TODO: Add doc """ def disconnect(self): """ Method is called when shutting down the engine to relieve the hook. """ raise NotImplementedError def spin_up(self, count=1, type=None, specialRequest=None): """ Call to spin up more instances. @param count: Number of instances to be spun up. @type count: int @param type: Type (generally size) of instance requested @type type: TDB by implementation @param specialRequest: Special request (gpu, cluster, hadoop) @type specialRequest: TDB by implementation """ raise NotImplementedError def spin_down(self): """ # TODO: ??? """ raise NotImplementedError
BATCH_SIZE = 256 MAX_SEQ_LEN=5 SEED = 98765 PADDING_IDX = 0 ACTIVATION_FUNC = None model_type = 'sdm' SDM_INIT_TRANSFORM_TYPE='identity'
batch_size = 256 max_seq_len = 5 seed = 98765 padding_idx = 0 activation_func = None model_type = 'sdm' sdm_init_transform_type = 'identity'
BROADCAST_PORT = 0xD6D9 MESSAGE_TYPE = { 'POWER_ON' : 0x3110000, 'BRIGHTNESS': 0x3130000, 'COLOR_TEMP': 0x31b0000, 'QUERY' : 0x30f0000, 'SEARCH' : 0x2010000, } MESSAGE_OFFSET = { 'SRC_IP' : 0x00, 'SRC_PORT' : 0x04, 'DEST_IP' : 0x08, 'DEST_PORT' : 0x0C, 'L2_TYPE' : 0x10, 'L3_VERSION' : 0x14, 'SERVER_TYPE' : 0x18, 'PKG_LENGTH' : 0x1C, 'L3_ID' : 0x20, 'OFFSET' : 0x24, 'TTL' : 0x28, 'PROP' : 0x2C, 'L3_CHECKSUM' : 0x30, 'SRC_ADD_TYPE' : 0x34, 'SRC_OBJ_TYPE' : 0x38, 'SRC_ID' : 0x3C, 'SRC_ID_2' : 0x40, 'SRC_ID_3' : 0x44, 'SRC_ID_4' : 0x48, 'DEST_ADD_TYPE' : 0x4C, 'DEST_OBJ_TYPE' : 0x50, 'DEST_ID' : 0x54, 'DEST_ID_2' : 0x58, 'DEST_ID_3' : 0x5C, 'DEST_ID_4' : 0x60, 'REQ_SERIAL_NUM': 0x64, 'RES_SERIAL_NUM': 0x68, 'MSG_LENGTH' : 0x6C, 'CHECK_SUM' : 0x70, 'MSG_TYPE' : 0x74, 'RESERVE' : 0x78, 'BODY' : 0x7C } SEARCH_RES_OFFSET = { 'CLASS_SKU': 0x03, # L: 0x4 'SRC_TYPE' : 0x07, # L: 0x2 'MAC' : 0x09, # L: 0x8 'OBJ_TYPE' : 0x11, # L: 0x2 'ID_LOW' : 0x13, # L: 0x4 'ID_HIGH' : 0x17, # L: 0x4 'VERSION' : 0x1B, # L: 0x4 'IP' : 0x1F, # L: 0x4 'PORT' : 0x23, # L: 0x2 'NAME' : 0x25, # L: 0xe 'IS_CLEAN' : 0x33, # L: 0x1 } QUERY_RES_OFFSET = { 'POWER_ON' : 0x1, # L: 0x1 'BRIGHT' : 0x2, # L: 0x1 'COLOR_TEMP': 0x7, # L: 0x2 }
broadcast_port = 55001 message_type = {'POWER_ON': 51445760, 'BRIGHTNESS': 51576832, 'COLOR_TEMP': 52101120, 'QUERY': 51314688, 'SEARCH': 33619968} message_offset = {'SRC_IP': 0, 'SRC_PORT': 4, 'DEST_IP': 8, 'DEST_PORT': 12, 'L2_TYPE': 16, 'L3_VERSION': 20, 'SERVER_TYPE': 24, 'PKG_LENGTH': 28, 'L3_ID': 32, 'OFFSET': 36, 'TTL': 40, 'PROP': 44, 'L3_CHECKSUM': 48, 'SRC_ADD_TYPE': 52, 'SRC_OBJ_TYPE': 56, 'SRC_ID': 60, 'SRC_ID_2': 64, 'SRC_ID_3': 68, 'SRC_ID_4': 72, 'DEST_ADD_TYPE': 76, 'DEST_OBJ_TYPE': 80, 'DEST_ID': 84, 'DEST_ID_2': 88, 'DEST_ID_3': 92, 'DEST_ID_4': 96, 'REQ_SERIAL_NUM': 100, 'RES_SERIAL_NUM': 104, 'MSG_LENGTH': 108, 'CHECK_SUM': 112, 'MSG_TYPE': 116, 'RESERVE': 120, 'BODY': 124} search_res_offset = {'CLASS_SKU': 3, 'SRC_TYPE': 7, 'MAC': 9, 'OBJ_TYPE': 17, 'ID_LOW': 19, 'ID_HIGH': 23, 'VERSION': 27, 'IP': 31, 'PORT': 35, 'NAME': 37, 'IS_CLEAN': 51} query_res_offset = {'POWER_ON': 1, 'BRIGHT': 2, 'COLOR_TEMP': 7}
class Solution: def reorderList(self, head: ListNode) -> None: """ Do not return anything, modify head in-place instead. """ if not head: return stack = [] cur = head while cur: stack.append(cur) cur = cur.next count = (len(stack)-1)//2 cur = head while count>0: node = stack.pop() nxt = cur.next cur.next = node node.next = nxt cur = nxt count-=1 stack[-1].next = None
class Solution: def reorder_list(self, head: ListNode) -> None: """ Do not return anything, modify head in-place instead. """ if not head: return stack = [] cur = head while cur: stack.append(cur) cur = cur.next count = (len(stack) - 1) // 2 cur = head while count > 0: node = stack.pop() nxt = cur.next cur.next = node node.next = nxt cur = nxt count -= 1 stack[-1].next = None
#!/usr/bin/env python def read(path): with open(path) as f: timers = list(map(int, f.read().strip().split(","))) return timers def slow(timers, num_steps): timers = list(timers) step = 0 n = len(timers) while step < num_steps: to_extend = [] for j in range(n): if timers[j] == 0: to_extend.append(8) timers[j] = 6 else: timers[j] -= 1 timers.extend(to_extend) step += 1 n = len(timers) return len(timers) def fast(timers, num_steps): counts = [0] * 9 for timer in timers: counts[timer] += 1 step = 0 while step < num_steps: next_ = [counts[i + 1] for i in range(8)] next_[6] += counts[0] next_.append(counts[0]) counts = next_ step += 1 return sum(counts) def part1(timers): return fast(timers, 80) def part2(timers): return fast(timers, 256) def main(): timers = read("example.txt") assert slow(timers, 10) == fast(timers, 10) assert part1(timers) == 5934 assert part2(timers) == 26984457539 timers = read("input.txt") assert part1(timers) == 376194 assert part2(timers) == 1693022481538 print("All tests passed.") if __name__ == "__main__": main()
def read(path): with open(path) as f: timers = list(map(int, f.read().strip().split(','))) return timers def slow(timers, num_steps): timers = list(timers) step = 0 n = len(timers) while step < num_steps: to_extend = [] for j in range(n): if timers[j] == 0: to_extend.append(8) timers[j] = 6 else: timers[j] -= 1 timers.extend(to_extend) step += 1 n = len(timers) return len(timers) def fast(timers, num_steps): counts = [0] * 9 for timer in timers: counts[timer] += 1 step = 0 while step < num_steps: next_ = [counts[i + 1] for i in range(8)] next_[6] += counts[0] next_.append(counts[0]) counts = next_ step += 1 return sum(counts) def part1(timers): return fast(timers, 80) def part2(timers): return fast(timers, 256) def main(): timers = read('example.txt') assert slow(timers, 10) == fast(timers, 10) assert part1(timers) == 5934 assert part2(timers) == 26984457539 timers = read('input.txt') assert part1(timers) == 376194 assert part2(timers) == 1693022481538 print('All tests passed.') if __name__ == '__main__': main()
class Solution: def getImportance(self, employees, id): """ :type employees: Employee :type id: int :rtype: int """ pending = [id] imp = 0 while(len(pending)>0): pending, imp = self.processing(employees, pending, imp) return imp def processing(self, employees, pending, imp): tmp = [] for n in range(len(employees)): if employees[n].id in pending: imp += employees[n].importance tmp += employees[n].subordinates return tmp, imp
class Solution: def get_importance(self, employees, id): """ :type employees: Employee :type id: int :rtype: int """ pending = [id] imp = 0 while len(pending) > 0: (pending, imp) = self.processing(employees, pending, imp) return imp def processing(self, employees, pending, imp): tmp = [] for n in range(len(employees)): if employees[n].id in pending: imp += employees[n].importance tmp += employees[n].subordinates return (tmp, imp)
# -*- coding: utf-8 -*- """ Created on Fri Jan 5 15:00:34 2018 @author: James Jiang """ all_lines = [line.rstrip('\n') for line in open('Data.txt')] grid = [[i for i in line] for line in all_lines] for y_corners in [0, 99]: for x_corners in [0, 99]: grid[y_corners][x_corners] = '#' grid_num_neighbors = [] for i in range(100): row = [0 for j in range(100)] grid_num_neighbors.append(row) def neighbors_on(x, y): if x_position == 0: neighbors = [grid[y + 1][x], grid[y - 1][x], grid[y][x + 1], grid[y + 1][x + 1], grid[y - 1][x + 1]] elif y_position == 0: neighbors = [grid[y + 1][x], grid[y][x + 1], grid[y][x - 1], grid[y + 1][x + 1], grid[y + 1][x - 1]] elif x_position == 99: neighbors = [grid[y + 1][x], grid[y - 1][x], grid[y][x - 1], grid[y + 1][x - 1], grid[y - 1][x - 1]] elif y_position == 99: neighbors = [grid[y - 1][x], grid[y][x + 1], grid[y][x - 1], grid[y - 1][x + 1], grid[y - 1][x - 1]] else: neighbors = [grid[y + 1][x], grid[y - 1][x], grid[y][x + 1], grid[y][x - 1], grid[y + 1][x + 1], grid[y + 1][x - 1], grid[y - 1][x + 1], grid[y - 1][x - 1]] return(neighbors.count('#')) def next_state(x, y): if grid_num_neighbors[y][x] == 3: return('#') elif (grid_num_neighbors[y][x] == 2) and (grid[y][x] == '#'): return('#') else: return('.') for i in range(100): for y_position in range(100): for x_position in range(100): if not((y_position in [0, 99]) and (x_position in [0, 99])): grid_num_neighbors[y_position][x_position] = neighbors_on(x_position, y_position) for y_position in range(100): for x_position in range(100): if not((y_position in [0, 99]) and (x_position in [0, 99])): grid[y_position][x_position] = next_state(x_position, y_position) total = 0 for y in range(100): total += grid[y].count('#') print(total)
""" Created on Fri Jan 5 15:00:34 2018 @author: James Jiang """ all_lines = [line.rstrip('\n') for line in open('Data.txt')] grid = [[i for i in line] for line in all_lines] for y_corners in [0, 99]: for x_corners in [0, 99]: grid[y_corners][x_corners] = '#' grid_num_neighbors = [] for i in range(100): row = [0 for j in range(100)] grid_num_neighbors.append(row) def neighbors_on(x, y): if x_position == 0: neighbors = [grid[y + 1][x], grid[y - 1][x], grid[y][x + 1], grid[y + 1][x + 1], grid[y - 1][x + 1]] elif y_position == 0: neighbors = [grid[y + 1][x], grid[y][x + 1], grid[y][x - 1], grid[y + 1][x + 1], grid[y + 1][x - 1]] elif x_position == 99: neighbors = [grid[y + 1][x], grid[y - 1][x], grid[y][x - 1], grid[y + 1][x - 1], grid[y - 1][x - 1]] elif y_position == 99: neighbors = [grid[y - 1][x], grid[y][x + 1], grid[y][x - 1], grid[y - 1][x + 1], grid[y - 1][x - 1]] else: neighbors = [grid[y + 1][x], grid[y - 1][x], grid[y][x + 1], grid[y][x - 1], grid[y + 1][x + 1], grid[y + 1][x - 1], grid[y - 1][x + 1], grid[y - 1][x - 1]] return neighbors.count('#') def next_state(x, y): if grid_num_neighbors[y][x] == 3: return '#' elif grid_num_neighbors[y][x] == 2 and grid[y][x] == '#': return '#' else: return '.' for i in range(100): for y_position in range(100): for x_position in range(100): if not (y_position in [0, 99] and x_position in [0, 99]): grid_num_neighbors[y_position][x_position] = neighbors_on(x_position, y_position) for y_position in range(100): for x_position in range(100): if not (y_position in [0, 99] and x_position in [0, 99]): grid[y_position][x_position] = next_state(x_position, y_position) total = 0 for y in range(100): total += grid[y].count('#') print(total)
#definicion de variables u otros print("Ejercicio 01: Area Triangulo") #Datos de Entrada b=int(input("Ingrese Base:")) h=int(input("Ingrese Altura:")) #Proceso area=(b*h)/2 #Datos de Salida print("El area es: ", area)
print('Ejercicio 01: Area Triangulo') b = int(input('Ingrese Base:')) h = int(input('Ingrese Altura:')) area = b * h / 2 print('El area es: ', area)
""" 0593. Valid Square Medium Given the coordinates of four points in 2D space, return whether the four points could construct a square. The coordinate (x,y) of a point is represented by an integer array with two integers. Example: Input: p1 = [0,0], p2 = [1,1], p3 = [1,0], p4 = [0,1] Output: True Note: All the input integers are in the range [-10000, 10000]. A valid square has four equal sides with positive length and four equal angles (90-degree angles). Input points have no order. """ class Solution: def validSquare(self, p1: List[int], p2: List[int], p3: List[int], p4: List[int]) -> bool: points = [p1, p2, p3, p4] dists = collections.Counter() for i in range(len(points)): for j in range(i+1, len(points)): dists[self.getDistance(points[i], points[j])] += 1 return len(dists.values())==2 and 4 in dists.values() and 2 in dists.values() def getDistance(self, p1, p2): return (p1[0] - p2[0])**2 + (p1[1] - p2[1])**2
""" 0593. Valid Square Medium Given the coordinates of four points in 2D space, return whether the four points could construct a square. The coordinate (x,y) of a point is represented by an integer array with two integers. Example: Input: p1 = [0,0], p2 = [1,1], p3 = [1,0], p4 = [0,1] Output: True Note: All the input integers are in the range [-10000, 10000]. A valid square has four equal sides with positive length and four equal angles (90-degree angles). Input points have no order. """ class Solution: def valid_square(self, p1: List[int], p2: List[int], p3: List[int], p4: List[int]) -> bool: points = [p1, p2, p3, p4] dists = collections.Counter() for i in range(len(points)): for j in range(i + 1, len(points)): dists[self.getDistance(points[i], points[j])] += 1 return len(dists.values()) == 2 and 4 in dists.values() and (2 in dists.values()) def get_distance(self, p1, p2): return (p1[0] - p2[0]) ** 2 + (p1[1] - p2[1]) ** 2
num=list((input())) count=[0]*10 for n in num: i=0 while i<=10: if int(n)==i: count[i]+=1 i+=1 for c in count: print(c)
num = list(input()) count = [0] * 10 for n in num: i = 0 while i <= 10: if int(n) == i: count[i] += 1 i += 1 for c in count: print(c)
class HybridShape(object): """ Python class to manage Catia's Hybrid Shape Abstract Object """ def __init__(self, parent, cat_constructor): """ :param parent: :param cat_constructor: """ self.parent = parent[parent[-1]] self.parentsDict = parent self.cat_constructor = cat_constructor self.parentsDict['Part'].update() @property def name(self): return self.cat_constructor.Name @name.setter def name(self, value): self.cat_constructor.Name = value
class Hybridshape(object): """ Python class to manage Catia's Hybrid Shape Abstract Object """ def __init__(self, parent, cat_constructor): """ :param parent: :param cat_constructor: """ self.parent = parent[parent[-1]] self.parentsDict = parent self.cat_constructor = cat_constructor self.parentsDict['Part'].update() @property def name(self): return self.cat_constructor.Name @name.setter def name(self, value): self.cat_constructor.Name = value
num = int(input()) arr = sorted(list(map(int, input().split()))) assert len(arr) == num def leftright(l): llen = len(l) return l[:(llen//2)], l[-(llen//2):] def median(l): llen = len(l) if llen % 2 == 1: return l[llen//2] else: return (l[(llen//2)-1]+l[llen//2]) // 2 left, right = leftright(arr) print(median(left)) print(median(arr)) print(median(right))
num = int(input()) arr = sorted(list(map(int, input().split()))) assert len(arr) == num def leftright(l): llen = len(l) return (l[:llen // 2], l[-(llen // 2):]) def median(l): llen = len(l) if llen % 2 == 1: return l[llen // 2] else: return (l[llen // 2 - 1] + l[llen // 2]) // 2 (left, right) = leftright(arr) print(median(left)) print(median(arr)) print(median(right))
def happy_birthday(name): print("Happy Birthday, dear " + name + "!") happy_birthday("Trey")
def happy_birthday(name): print('Happy Birthday, dear ' + name + '!') happy_birthday('Trey')
class Questions: """A class to access the Questions PDI API endpoint.""" def __init__(self): questions_endpoint = "/questions" self.url_questions = self.base_url + questions_endpoint super().__init__() def get_questions(self, limit=None): """Get a list of Questions. `Args:` limit: int Specify limit to return. `Returns:` parsons.Table A Parsons table of all the data. """ return self._request(self.url_questions, limit=limit)
class Questions: """A class to access the Questions PDI API endpoint.""" def __init__(self): questions_endpoint = '/questions' self.url_questions = self.base_url + questions_endpoint super().__init__() def get_questions(self, limit=None): """Get a list of Questions. `Args:` limit: int Specify limit to return. `Returns:` parsons.Table A Parsons table of all the data. """ return self._request(self.url_questions, limit=limit)
fname = input('Enter the file name: ') try: fhand = open(fname) except: print('File cannot be opened:', fname) exit() count = 0 total = 0 for line in fhand: if line.startswith('X-DSPAM-Confidence: '): count = count + 1 #counts number of lines with X-DSPAM colpos = line.find(':') #finds colon num = line[colpos+1:].strip() #removes all text except number spam = float(num) total = total + spam average = total / count print('Average spam confidence: ', average)
fname = input('Enter the file name: ') try: fhand = open(fname) except: print('File cannot be opened:', fname) exit() count = 0 total = 0 for line in fhand: if line.startswith('X-DSPAM-Confidence: '): count = count + 1 colpos = line.find(':') num = line[colpos + 1:].strip() spam = float(num) total = total + spam average = total / count print('Average spam confidence: ', average)
# # The Python Imaging Library. # $Id$ # # sequence support classes # # history: # 1997-02-20 fl Created # # Copyright (c) 1997 by Secret Labs AB. # Copyright (c) 1997 by Fredrik Lundh. # # See the README file for information on usage and redistribution. # ## class Iterator: """ This class implements an iterator object that can be used to loop over an image sequence. You can use the ``[]`` operator to access elements by index. This operator will raise an :py:exc:`IndexError` if you try to access a nonexistent frame. :param im: An image object. """ def __init__(self, im): if not hasattr(im, "seek"): raise AttributeError("im must have seek method") self.im = im self.position = getattr(self.im, "_min_frame", 0) def __getitem__(self, ix): try: self.im.seek(ix) return self.im except EOFError: raise IndexError # end of sequence def __iter__(self): return self def __next__(self): try: self.im.seek(self.position) self.position += 1 return self.im except EOFError: raise StopIteration def all_frames(im, func=None): """ Applies a given function to all frames in an image or a list of videos. The frames are returned as a list of separate videos. :param im: An image, or a list of videos. :param func: The function to apply to all of the image frames. :returns: A list of videos. """ if not isinstance(im, list): im = [im] ims = [] for imSequence in im: current = imSequence.tell() ims += [im_frame.copy() for im_frame in Iterator(imSequence)] imSequence.seek(current) return [func(im) for im in ims] if func else ims
class Iterator: """ This class implements an iterator object that can be used to loop over an image sequence. You can use the ``[]`` operator to access elements by index. This operator will raise an :py:exc:`IndexError` if you try to access a nonexistent frame. :param im: An image object. """ def __init__(self, im): if not hasattr(im, 'seek'): raise attribute_error('im must have seek method') self.im = im self.position = getattr(self.im, '_min_frame', 0) def __getitem__(self, ix): try: self.im.seek(ix) return self.im except EOFError: raise IndexError def __iter__(self): return self def __next__(self): try: self.im.seek(self.position) self.position += 1 return self.im except EOFError: raise StopIteration def all_frames(im, func=None): """ Applies a given function to all frames in an image or a list of videos. The frames are returned as a list of separate videos. :param im: An image, or a list of videos. :param func: The function to apply to all of the image frames. :returns: A list of videos. """ if not isinstance(im, list): im = [im] ims = [] for im_sequence in im: current = imSequence.tell() ims += [im_frame.copy() for im_frame in iterator(imSequence)] imSequence.seek(current) return [func(im) for im in ims] if func else ims
def resolve(): s = input() ret = "" for c in s: ret += c.swapcase() # lower() <-> upper() print(ret)
def resolve(): s = input() ret = '' for c in s: ret += c.swapcase() print(ret)
class Oven(object): def __init__(self, iterable, size: int = None): self.iterable = iterable self.size = size if size else len(iterable) // 100 def __iter__(self): batch = [] for x in self.iterable: batch.append(x) if len(batch) >= self.size: yield batch batch = [] if batch: yield batch
class Oven(object): def __init__(self, iterable, size: int=None): self.iterable = iterable self.size = size if size else len(iterable) // 100 def __iter__(self): batch = [] for x in self.iterable: batch.append(x) if len(batch) >= self.size: yield batch batch = [] if batch: yield batch
def getIEX_API_KEY(): return readAPI(0) def getIEX_API_KEY_TEST(): return readAPI(1) def getNYT_API_KEY(): return readAPI(2) def readAPI(x): f = open("api_list.txt", "r") lines = f.readlines() return lines[x].translate({ord('\n'): None})
def get_iex_api_key(): return read_api(0) def get_iex_api_key_test(): return read_api(1) def get_nyt_api_key(): return read_api(2) def read_api(x): f = open('api_list.txt', 'r') lines = f.readlines() return lines[x].translate({ord('\n'): None})
#!/usr/bin/env python3 """The Whole Barn module""" def check_shapes(mat1, mat2): """Check if the two matrices has the same shape if not return None""" shape = [] while (isinstance(mat1, list) and isinstance(mat2, list)): lenMat1 = len(mat1) lenMat2 = len(mat2) if lenMat1 != lenMat2: return None shape.append(lenMat1) mat1 = mat1[0] mat2 = mat2[0] return shape def helper(mat1, mat2): """Recursion method to sum the matrices""" # Base case if not isinstance(mat1, list) and not isinstance(mat2, list): return mat1 + mat2 ans = [] for m in zip(mat1, mat2): ans.append(helper(m[0], m[1])) return ans def add_matrices(mat1, mat2): """Main function""" if check_shapes(mat1, mat2) is None: return None return helper(mat1, mat2)
"""The Whole Barn module""" def check_shapes(mat1, mat2): """Check if the two matrices has the same shape if not return None""" shape = [] while isinstance(mat1, list) and isinstance(mat2, list): len_mat1 = len(mat1) len_mat2 = len(mat2) if lenMat1 != lenMat2: return None shape.append(lenMat1) mat1 = mat1[0] mat2 = mat2[0] return shape def helper(mat1, mat2): """Recursion method to sum the matrices""" if not isinstance(mat1, list) and (not isinstance(mat2, list)): return mat1 + mat2 ans = [] for m in zip(mat1, mat2): ans.append(helper(m[0], m[1])) return ans def add_matrices(mat1, mat2): """Main function""" if check_shapes(mat1, mat2) is None: return None return helper(mat1, mat2)
# -*- coding: utf-8 -*- """Refresher activity. This script will use variables, conditionals, lists, dicts, and functions to print out different greetings for customers based on their business tier (determined by revenue). """ # List of dicts customers = [ { "first_name": "Tom", "last_name": "Bell", "revenue": 0 }, { "first_name": "Maggie", "last_name": "Johnson", "revenue": 1032 }, { "first_name": "John", "last_name": "Spectre", "revenue": 2543 }, { "first_name": "Susy", "last_name": "Simmons", "revenue": 5322 } ] # @TODO Define a function that accepts a customer first_name, last_name, and # revenue and returns a custom greeting with the full name. # Use these ranges to determine the business tier (and corresponding message) # for each customer. # Platinum = 3001+ # Gold = 2001-3000 # Silver = 1001-2000 # Bronze = 0-1000 def create_greeting(first_name, last_name, revenue): # @TODO: YOUR CODE HERE! greeting = "" return greeting # @TODO: Loop through the list of customers and use your function to print # custom greetings for each customer. # @TODO: YOUR CODE HERE!
"""Refresher activity. This script will use variables, conditionals, lists, dicts, and functions to print out different greetings for customers based on their business tier (determined by revenue). """ customers = [{'first_name': 'Tom', 'last_name': 'Bell', 'revenue': 0}, {'first_name': 'Maggie', 'last_name': 'Johnson', 'revenue': 1032}, {'first_name': 'John', 'last_name': 'Spectre', 'revenue': 2543}, {'first_name': 'Susy', 'last_name': 'Simmons', 'revenue': 5322}] def create_greeting(first_name, last_name, revenue): greeting = '' return greeting
with open('/home/steven/advent-of-code-2021/day7/input') as input: lines = input.readlines() positions = lines[0].split(',') positions = [int(i) for i in positions] max_pos = max(positions) fuel_sums = {} for i in range(0, max_pos+1): fuel_sum = 0 for pos in positions: fuel = abs(i - pos) fuel_sum += fuel fuel_sums[i] = fuel_sum minimum_fuel = min(fuel_sums.values()) for i, fuel_val in enumerate(fuel_sums.values()): if fuel_val == minimum_fuel: print(f"OPTIMAL POSITION: {i}") print(f"FUEL REQUIRED = {minimum_fuel}")
with open('/home/steven/advent-of-code-2021/day7/input') as input: lines = input.readlines() positions = lines[0].split(',') positions = [int(i) for i in positions] max_pos = max(positions) fuel_sums = {} for i in range(0, max_pos + 1): fuel_sum = 0 for pos in positions: fuel = abs(i - pos) fuel_sum += fuel fuel_sums[i] = fuel_sum minimum_fuel = min(fuel_sums.values()) for (i, fuel_val) in enumerate(fuel_sums.values()): if fuel_val == minimum_fuel: print(f'OPTIMAL POSITION: {i}') print(f'FUEL REQUIRED = {minimum_fuel}')
class Solution: def simplifyPath(self, path): tokens = path.split('/') # some of them could be empty == '//' stack = [] for item in tokens: if item in ['','.']: continue elif item == '..': if len(stack) > 0: stack.pop() else: stack.append(item) return "/"+"/".join(stack)
class Solution: def simplify_path(self, path): tokens = path.split('/') stack = [] for item in tokens: if item in ['', '.']: continue elif item == '..': if len(stack) > 0: stack.pop() else: stack.append(item) return '/' + '/'.join(stack)
#!/usr/bin/python3 def dict_is_equal(dict1, dict2): """ """ assert set(dict1.keys()) == set(dict2.keys()) assert set(dict1.values()) == set(dict2.values()) for k1, v1 in dict1.items(): assert v1 == dict2[k1]
def dict_is_equal(dict1, dict2): """ """ assert set(dict1.keys()) == set(dict2.keys()) assert set(dict1.values()) == set(dict2.values()) for (k1, v1) in dict1.items(): assert v1 == dict2[k1]
# -*- coding: utf-8 -*- # Copyright 2021 Cohesity Inc. class AlertCategoryEnum(object): """Implementation of the 'AlertCategory' enum. Specifies the category of an Alert. kDisk - Alert associated with the disk. kNode - Alert associated with general hardware on a specific node. kCluster - Alert associated with general hardware in cluster level. kChassis - Alert associated with the Chassis. kPowerSupply - Alert associated with the power supply. kCPU - Alert associated with the CPU usage. kMemory - Alert associated with the RAM/Memory. kTemperature - Alert associated with the temperature. kFan - Alert associated with the fan. kNIC - Alert associated with network chips and interfaces. kFirmware - Alert associated with the firmware. kNodeHealth - Alert associated with node health status. kOperatingSystem - Alert associated with operating systems. kDataPath - Alert associated with data management in the cluster. kMetadata - Alert associated with metadata management. kIndexing - Alert associated with indexing services. kHelios - Alert associated with Helios. kAppMarketPlace - Alert associated with App MarketPlace. kLicense - Alert associated with licensing. kSecurity - Alert associated with security. kUpgrade - Alert associated with upgrade activities. kClusterManagement - Alert associated with cluster management activities. kAuditLog - Alert associated with audit log events. kNetworking - Alert associated with networking issue. kConfiguration - Alert associated with cluster or system configurations. kStorageUsage - Alert associated with the disk/domain/cluster storage usage. kFaultTolerance - Alert associated with the fault tolerance in different levels. kBackupRestore - Alert associated with Backup-Restore job. kArchivalRestore - Alert associated with Archival-Restore job. kRemoteReplication - Alert associated with Replication job. kQuota - Alert associated with Quotas. Attributes: KDISK: TODO: type description here. KNODE: TODO: type description here. KCLUSTER: TODO: type description here. KCHASSIS: TODO: type description here. KPOWERSUPPLY: TODO: type description here. KCPU: TODO: type description here. KMEMORY: TODO: type description here. KTEMPERATURE: TODO: type description here. KFAN: TODO: type description here. KNIC: TODO: type description here. KFIRMWARE: TODO: type description here. KNODEHEALTH: TODO: type description here. KOPERATINGSYSTEM: TODO: type description here. KDATAPATH: TODO: type description here. KMETADATA: TODO: type description here. KINDEXING: TODO: type description here. KHELIOS: TODO: type description here. KAPPMARKETPLACE: TODO: type description here. KLICENSE: TODO: type description here. KSECURITY: TODO: type description here. KUPGRADE: TODO: type description here. KCLUSTERMANAGEMENT: TODO: type description here. KAUDITLOG: TODO: type description here. KNETWORKING: TODO: type description here. KCONFIGURATION: TODO: type description here. KSTORAGEUSAGE: TODO: type description here. KFAULTTOLERANCE: TODO: type description here. KBACKUPRESTORE: TODO: type description here. KARCHIVALRESTORE: TODO: type description here. KREMOTEREPLICATION: TODO: type description here. KQUOTA: TODO: type description here. """ KDISK = 'kDisk' KNODE = 'kNode' KCLUSTER = 'kCluster' KCHASSIS = 'kChassis' KPOWERSUPPLY = 'kPowerSupply' KCPU = 'kCPU' KMEMORY = 'kMemory' KTEMPERATURE = 'kTemperature' KFAN = 'kFan' KNIC = 'kNIC' KFIRMWARE = 'kFirmware' KNODEHEALTH = 'kNodeHealth' KOPERATINGSYSTEM = 'kOperatingSystem' KDATAPATH = 'kDataPath' KMETADATA = 'kMetadata' KINDEXING = 'kIndexing' KHELIOS = 'kHelios' KAPPMARKETPLACE = 'kAppMarketPlace' KLICENSE = 'kLicense' KSECURITY = 'kSecurity' KUPGRADE = 'kUpgrade' KCLUSTERMANAGEMENT = 'kClusterManagement' KAUDITLOG = 'kAuditLog' KNETWORKING = 'kNetworking' KCONFIGURATION = 'kConfiguration' KSTORAGEUSAGE = 'kStorageUsage' KFAULTTOLERANCE = 'kFaultTolerance' KBACKUPRESTORE = 'kBackupRestore' KARCHIVALRESTORE = 'kArchivalRestore' KREMOTEREPLICATION = 'kRemoteReplication' KQUOTA = 'kQuota'
class Alertcategoryenum(object): """Implementation of the 'AlertCategory' enum. Specifies the category of an Alert. kDisk - Alert associated with the disk. kNode - Alert associated with general hardware on a specific node. kCluster - Alert associated with general hardware in cluster level. kChassis - Alert associated with the Chassis. kPowerSupply - Alert associated with the power supply. kCPU - Alert associated with the CPU usage. kMemory - Alert associated with the RAM/Memory. kTemperature - Alert associated with the temperature. kFan - Alert associated with the fan. kNIC - Alert associated with network chips and interfaces. kFirmware - Alert associated with the firmware. kNodeHealth - Alert associated with node health status. kOperatingSystem - Alert associated with operating systems. kDataPath - Alert associated with data management in the cluster. kMetadata - Alert associated with metadata management. kIndexing - Alert associated with indexing services. kHelios - Alert associated with Helios. kAppMarketPlace - Alert associated with App MarketPlace. kLicense - Alert associated with licensing. kSecurity - Alert associated with security. kUpgrade - Alert associated with upgrade activities. kClusterManagement - Alert associated with cluster management activities. kAuditLog - Alert associated with audit log events. kNetworking - Alert associated with networking issue. kConfiguration - Alert associated with cluster or system configurations. kStorageUsage - Alert associated with the disk/domain/cluster storage usage. kFaultTolerance - Alert associated with the fault tolerance in different levels. kBackupRestore - Alert associated with Backup-Restore job. kArchivalRestore - Alert associated with Archival-Restore job. kRemoteReplication - Alert associated with Replication job. kQuota - Alert associated with Quotas. Attributes: KDISK: TODO: type description here. KNODE: TODO: type description here. KCLUSTER: TODO: type description here. KCHASSIS: TODO: type description here. KPOWERSUPPLY: TODO: type description here. KCPU: TODO: type description here. KMEMORY: TODO: type description here. KTEMPERATURE: TODO: type description here. KFAN: TODO: type description here. KNIC: TODO: type description here. KFIRMWARE: TODO: type description here. KNODEHEALTH: TODO: type description here. KOPERATINGSYSTEM: TODO: type description here. KDATAPATH: TODO: type description here. KMETADATA: TODO: type description here. KINDEXING: TODO: type description here. KHELIOS: TODO: type description here. KAPPMARKETPLACE: TODO: type description here. KLICENSE: TODO: type description here. KSECURITY: TODO: type description here. KUPGRADE: TODO: type description here. KCLUSTERMANAGEMENT: TODO: type description here. KAUDITLOG: TODO: type description here. KNETWORKING: TODO: type description here. KCONFIGURATION: TODO: type description here. KSTORAGEUSAGE: TODO: type description here. KFAULTTOLERANCE: TODO: type description here. KBACKUPRESTORE: TODO: type description here. KARCHIVALRESTORE: TODO: type description here. KREMOTEREPLICATION: TODO: type description here. KQUOTA: TODO: type description here. """ kdisk = 'kDisk' knode = 'kNode' kcluster = 'kCluster' kchassis = 'kChassis' kpowersupply = 'kPowerSupply' kcpu = 'kCPU' kmemory = 'kMemory' ktemperature = 'kTemperature' kfan = 'kFan' knic = 'kNIC' kfirmware = 'kFirmware' knodehealth = 'kNodeHealth' koperatingsystem = 'kOperatingSystem' kdatapath = 'kDataPath' kmetadata = 'kMetadata' kindexing = 'kIndexing' khelios = 'kHelios' kappmarketplace = 'kAppMarketPlace' klicense = 'kLicense' ksecurity = 'kSecurity' kupgrade = 'kUpgrade' kclustermanagement = 'kClusterManagement' kauditlog = 'kAuditLog' knetworking = 'kNetworking' kconfiguration = 'kConfiguration' kstorageusage = 'kStorageUsage' kfaulttolerance = 'kFaultTolerance' kbackuprestore = 'kBackupRestore' karchivalrestore = 'kArchivalRestore' kremotereplication = 'kRemoteReplication' kquota = 'kQuota'
a=5 b=0 try: print(a/b) except ZeroDivisionError: print("the divisor can't be 0") m=3 n="1" try: print(m+n) except TypeError: print("numbers can't calculated with strings")
a = 5 b = 0 try: print(a / b) except ZeroDivisionError: print("the divisor can't be 0") m = 3 n = '1' try: print(m + n) except TypeError: print("numbers can't calculated with strings")
expected_output = { "total_peers":4, "vrf":{ "default":{ "peer":{ "8":{ "mode":"unsynchronized", "remote":"8", "local":"16", "stratum":8, "poll":16, "reach":377, "delay":0.01311, "vrf":"default" } } } }, "clock_state":{ "system_status":{ "clock_state":"unsynchronized" } } }
expected_output = {'total_peers': 4, 'vrf': {'default': {'peer': {'8': {'mode': 'unsynchronized', 'remote': '8', 'local': '16', 'stratum': 8, 'poll': 16, 'reach': 377, 'delay': 0.01311, 'vrf': 'default'}}}}, 'clock_state': {'system_status': {'clock_state': 'unsynchronized'}}}
class Solution(object): def hasPathSum(self, root, S): if not root: return False stack = [] stack.append((root, 0)) while stack: node, s = stack.pop() s += node.val if not node.left and not node.right and s==S: return True if node.left: stack.append((node.left, s)) if node.right: stack.append((node.right, s)) return False """ Time: O(N) Space: O(N) DFS """ class Solution(object): def hasPathSum(self, root, targetSum): if not root: return False stack = [(root, root.val)] while stack: node, total = stack.pop() if not node.left and not node.right and total==targetSum: return True if node.left: stack.append((node.left, total+node.left.val)) if node.right: stack.append((node.right, total+node.right.val)) return False
class Solution(object): def has_path_sum(self, root, S): if not root: return False stack = [] stack.append((root, 0)) while stack: (node, s) = stack.pop() s += node.val if not node.left and (not node.right) and (s == S): return True if node.left: stack.append((node.left, s)) if node.right: stack.append((node.right, s)) return False '\nTime: O(N)\nSpace: O(N)\n\nDFS\n' class Solution(object): def has_path_sum(self, root, targetSum): if not root: return False stack = [(root, root.val)] while stack: (node, total) = stack.pop() if not node.left and (not node.right) and (total == targetSum): return True if node.left: stack.append((node.left, total + node.left.val)) if node.right: stack.append((node.right, total + node.right.val)) return False
""" Test cases for the worker thread class. """
""" Test cases for the worker thread class. """
# We will register here processors for the message types by name VERIFIER_REGISTER = dict() INCOMING_HANDLER = dict() GARBAGE_COLLECTORS = dict() def register_verifier(message_type, handler): """ Verifies a message is valid before forwarding it, handling it (should it be different?). """ VERIFIER_REGISTER[message_type] = handler def register_incoming_handler(message_type, handler): """ Registers a function as an incoming message handler for a specific type. """ INCOMING_HANDLER[message_type] = handler def register_garbage_collector(message_type, handler): """ Registers a function as a periodical garbage collector for a specific type. """ GARBAGE_COLLECTORS[message_type] = handler async def handle_incoming_message(message, content): if message['type'] in INCOMING_HANDLER: return await INCOMING_HANDLER[message['type']](message, content) else: return True
verifier_register = dict() incoming_handler = dict() garbage_collectors = dict() def register_verifier(message_type, handler): """ Verifies a message is valid before forwarding it, handling it (should it be different?). """ VERIFIER_REGISTER[message_type] = handler def register_incoming_handler(message_type, handler): """ Registers a function as an incoming message handler for a specific type. """ INCOMING_HANDLER[message_type] = handler def register_garbage_collector(message_type, handler): """ Registers a function as a periodical garbage collector for a specific type. """ GARBAGE_COLLECTORS[message_type] = handler async def handle_incoming_message(message, content): if message['type'] in INCOMING_HANDLER: return await INCOMING_HANDLER[message['type']](message, content) else: return True
input = """ a:-b. b:-a. a v b. :- not a. :- not b. """ output = """ {a, b} """
input = '\na:-b.\nb:-a.\na v b.\n\n:- not a.\n:- not b.\n' output = '\n{a, b}\n'
"""01/09/2017 Temperature Calculator Celsius Kelvin Fahrenheit Rankine """ #Define initial unit initial_unit = input("Enter initial temperature unit " + "c, k, f, r:") while initial_unit != "c" and initial_unit != "k" and initial_unit != "f" and initial_unit != "r": initial_unit = input("incorrect unit, try again:") if initial_unit == "c": cel = float(input("Degree celsius:")) kel = cel + 273.15 fah = cel * 9/5 + 32 ran = kel * 9/5 elif initial_unit == "k": kel = float(input("Kelvin:")) cel = kel - 273.15 fah = kel * 9/5 - 459.67 ran = kel * 9/5 elif initial_unit == "f": fah = float(input("Degree fahrenheit:")) cel = (fah - 32) * 5/9 kel = (fah + 459.67) * 5/9 ran = fah + 459.67 elif initial_unit == "r": ran = float(input("Degree Rankine:")) cel = (ran - 491.67) * 5/9 kel = ran * 5/9 fah = ran - 459.67 print(" ") print("Celsius " + str(cel)) print("Kelvin " + str(kel)) print("Fahrenheit " + str(fah)) print("Rankine " + str(ran))
"""01/09/2017 Temperature Calculator Celsius Kelvin Fahrenheit Rankine """ initial_unit = input('Enter initial temperature unit ' + 'c, k, f, r:') while initial_unit != 'c' and initial_unit != 'k' and (initial_unit != 'f') and (initial_unit != 'r'): initial_unit = input('incorrect unit, try again:') if initial_unit == 'c': cel = float(input('Degree celsius:')) kel = cel + 273.15 fah = cel * 9 / 5 + 32 ran = kel * 9 / 5 elif initial_unit == 'k': kel = float(input('Kelvin:')) cel = kel - 273.15 fah = kel * 9 / 5 - 459.67 ran = kel * 9 / 5 elif initial_unit == 'f': fah = float(input('Degree fahrenheit:')) cel = (fah - 32) * 5 / 9 kel = (fah + 459.67) * 5 / 9 ran = fah + 459.67 elif initial_unit == 'r': ran = float(input('Degree Rankine:')) cel = (ran - 491.67) * 5 / 9 kel = ran * 5 / 9 fah = ran - 459.67 print(' ') print('Celsius ' + str(cel)) print('Kelvin ' + str(kel)) print('Fahrenheit ' + str(fah)) print('Rankine ' + str(ran))
mode = 'image_caption' # caption|image|image_caption| max_seq_length = 170 model ='uniter-base' # lxmert, uniter-base, visualbert-base, uniter-large pretrained_weights = '../artifacts/MM/uniter-base.pt' frcnn_path = '../data/BUTD_features/' hidden_size = 768 #Data img_col = 'g5' img_sep = ',' separator = ' . ' train_batch_size = 32 # Recomended 16 or 32 dev_batch_size = 32 #max_len_tokenized_sentence = -1 # -1 to calculate #Training epochs = 12 # Recomended 8 - 12 optimizer = 'AdamW' lr = 2e-5 # Recomended 5e-5 eps = 1e-8 # Recomended weight_decay = 0.01 scheduler = 'None' #linear warmup_steps = int(8000/train_batch_size) swa_start = 5 swa_scheduler = 'linear' # linear or cosine gradient_accumulation_steps = 8 clipping_grad_norm = 2
mode = 'image_caption' max_seq_length = 170 model = 'uniter-base' pretrained_weights = '../artifacts/MM/uniter-base.pt' frcnn_path = '../data/BUTD_features/' hidden_size = 768 img_col = 'g5' img_sep = ',' separator = ' . ' train_batch_size = 32 dev_batch_size = 32 epochs = 12 optimizer = 'AdamW' lr = 2e-05 eps = 1e-08 weight_decay = 0.01 scheduler = 'None' warmup_steps = int(8000 / train_batch_size) swa_start = 5 swa_scheduler = 'linear' gradient_accumulation_steps = 8 clipping_grad_norm = 2
# -*- coding: utf-8 -*- """Check entry requirements according to a reference format.""" YEAR_OR_DATE = frozenset(['year', 'date']) AUTHOR_OR_EDITOR = frozenset(['author', 'editor']) # Requirements for each entry type. Values are 2-tuples of the required fields # and a list of fields where only one needs to be present bibtex_requirements = { 'article': ( frozenset([ 'author', 'title', 'journal', 'year' ]), [] ), 'book': ( frozenset([ 'title', 'publisher', 'year' ]), [AUTHOR_OR_EDITOR] ), 'booklet': ( frozenset(['title']), [] ), 'inbook': ( frozenset([ 'title', 'publisher', 'year' ]), [ AUTHOR_OR_EDITOR, frozenset(['chapter', 'pages']) ] ), 'incollection': ( frozenset([ 'author', 'title', 'booktitle', 'publisher', 'year' ]), [] ), 'inproceedings': ( frozenset([ 'author', 'title', 'booktitle', 'year' ]), [] ), 'manual': ( frozenset(['title']), [] ), 'masterthesis': ( frozenset([ 'author', 'title', 'school', 'year' ]), [] ), 'misc': ( frozenset(), [] ), 'phdthesis': ( frozenset([ 'author', 'title', 'school', 'year' ]), [] ), 'proceedings': ( frozenset([ 'title', 'year' ]), [] ), 'techreport': ( frozenset([ 'author', 'title', 'institution', 'year' ]), [] ), 'unpublished': ( frozenset([ 'author', 'title', 'note' ]), [] ) } bibtex_requirements['conference'] = bibtex_requirements['inproceedings'] biblatex_requirements = { 'article': ( frozenset(['author', 'title', 'journaltitle']), [YEAR_OR_DATE] ), 'book': ( frozenset(['author', 'title']), [YEAR_OR_DATE] ), 'mvbook': ( frozenset(['author', 'title']), [YEAR_OR_DATE] ), 'booklet': ( frozenset(['title']), [AUTHOR_OR_EDITOR, YEAR_OR_DATE] ), 'mvcollection': ( frozenset(['editor', 'title']), [YEAR_OR_DATE] ), 'collection': ( frozenset(['editor', 'title']), [YEAR_OR_DATE] ), 'incollection': ( frozenset(['author', 'title', 'booktitle']), [YEAR_OR_DATE] ), 'manual': ( frozenset(['title']), [AUTHOR_OR_EDITOR, YEAR_OR_DATE] ), 'misc': ( frozenset(), [] ), 'online': ( frozenset(['title', 'url']), [AUTHOR_OR_EDITOR, YEAR_OR_DATE] ), 'patent': ( frozenset(['author', 'title', 'number']), [YEAR_OR_DATE] ), 'periodical': ( frozenset(['editor', 'title']), [YEAR_OR_DATE] ), 'proceedings': ( frozenset(['title']), [YEAR_OR_DATE] ), 'inproceedings': ( frozenset(['author', 'title', 'booktitle']), [YEAR_OR_DATE] ), 'report': ( frozenset(['author', 'title', 'type', 'institution']), [YEAR_OR_DATE] ), 'set': ( frozenset(['entryset']), [] ), 'thesis': ( frozenset(['author', 'title', 'type', 'institution']), [YEAR_OR_DATE] ), 'unpublished': ( frozenset(['author', 'title']), [YEAR_OR_DATE] ), 'xdata': ( frozenset(), [] ) } mixed_requirements = {} # Possible? # Set aliases for requirements biblatex_requirements['report'] = biblatex_requirements['collection'] # Convenience dictionary for selecting reference formats formats = { 'bibtex': bibtex_requirements, 'biblatex': biblatex_requirements, 'mixed': mixed_requirements } def check(entry, format): """Check that an entry abides by the format's requirements. Note that these requirements are not strictly enforced in bibtex or biblatex. They are more guidelines for achieving well-formatted entries in your bibliography. """ if format in ('relaxed', 'mixed'): return (frozenset(), []) if format not in formats: raise ValueError("Unknown reference format '{0}'".format(format)) requirements = formats[format] fields = frozenset(entry.fields) required, either = requirements.get(entry.bibtype, (frozenset(), [])) # We return sets to enable easy comparison between requirements since # set([1, 2]) == set([2, 1]), but [1, 2] != [2, 1] return set(required - fields), [set(e) for e in either if fields.isdisjoint(e)] def collect(entries, format): """Collect all missing requirements for a set of entries.""" result = [] for entry in entries: required, optional = check(entry, format) if required or optional: result.append((entry, (required, optional))) return result
"""Check entry requirements according to a reference format.""" year_or_date = frozenset(['year', 'date']) author_or_editor = frozenset(['author', 'editor']) bibtex_requirements = {'article': (frozenset(['author', 'title', 'journal', 'year']), []), 'book': (frozenset(['title', 'publisher', 'year']), [AUTHOR_OR_EDITOR]), 'booklet': (frozenset(['title']), []), 'inbook': (frozenset(['title', 'publisher', 'year']), [AUTHOR_OR_EDITOR, frozenset(['chapter', 'pages'])]), 'incollection': (frozenset(['author', 'title', 'booktitle', 'publisher', 'year']), []), 'inproceedings': (frozenset(['author', 'title', 'booktitle', 'year']), []), 'manual': (frozenset(['title']), []), 'masterthesis': (frozenset(['author', 'title', 'school', 'year']), []), 'misc': (frozenset(), []), 'phdthesis': (frozenset(['author', 'title', 'school', 'year']), []), 'proceedings': (frozenset(['title', 'year']), []), 'techreport': (frozenset(['author', 'title', 'institution', 'year']), []), 'unpublished': (frozenset(['author', 'title', 'note']), [])} bibtex_requirements['conference'] = bibtex_requirements['inproceedings'] biblatex_requirements = {'article': (frozenset(['author', 'title', 'journaltitle']), [YEAR_OR_DATE]), 'book': (frozenset(['author', 'title']), [YEAR_OR_DATE]), 'mvbook': (frozenset(['author', 'title']), [YEAR_OR_DATE]), 'booklet': (frozenset(['title']), [AUTHOR_OR_EDITOR, YEAR_OR_DATE]), 'mvcollection': (frozenset(['editor', 'title']), [YEAR_OR_DATE]), 'collection': (frozenset(['editor', 'title']), [YEAR_OR_DATE]), 'incollection': (frozenset(['author', 'title', 'booktitle']), [YEAR_OR_DATE]), 'manual': (frozenset(['title']), [AUTHOR_OR_EDITOR, YEAR_OR_DATE]), 'misc': (frozenset(), []), 'online': (frozenset(['title', 'url']), [AUTHOR_OR_EDITOR, YEAR_OR_DATE]), 'patent': (frozenset(['author', 'title', 'number']), [YEAR_OR_DATE]), 'periodical': (frozenset(['editor', 'title']), [YEAR_OR_DATE]), 'proceedings': (frozenset(['title']), [YEAR_OR_DATE]), 'inproceedings': (frozenset(['author', 'title', 'booktitle']), [YEAR_OR_DATE]), 'report': (frozenset(['author', 'title', 'type', 'institution']), [YEAR_OR_DATE]), 'set': (frozenset(['entryset']), []), 'thesis': (frozenset(['author', 'title', 'type', 'institution']), [YEAR_OR_DATE]), 'unpublished': (frozenset(['author', 'title']), [YEAR_OR_DATE]), 'xdata': (frozenset(), [])} mixed_requirements = {} biblatex_requirements['report'] = biblatex_requirements['collection'] formats = {'bibtex': bibtex_requirements, 'biblatex': biblatex_requirements, 'mixed': mixed_requirements} def check(entry, format): """Check that an entry abides by the format's requirements. Note that these requirements are not strictly enforced in bibtex or biblatex. They are more guidelines for achieving well-formatted entries in your bibliography. """ if format in ('relaxed', 'mixed'): return (frozenset(), []) if format not in formats: raise value_error("Unknown reference format '{0}'".format(format)) requirements = formats[format] fields = frozenset(entry.fields) (required, either) = requirements.get(entry.bibtype, (frozenset(), [])) return (set(required - fields), [set(e) for e in either if fields.isdisjoint(e)]) def collect(entries, format): """Collect all missing requirements for a set of entries.""" result = [] for entry in entries: (required, optional) = check(entry, format) if required or optional: result.append((entry, (required, optional))) return result
a = list(map(int, input().split())) b = sorted(list(map(int, input().split()))) p = a[1] i = 1 while i < a[0]: if (b[i] + b[i - 1] > p): break i += 1 print(i)
a = list(map(int, input().split())) b = sorted(list(map(int, input().split()))) p = a[1] i = 1 while i < a[0]: if b[i] + b[i - 1] > p: break i += 1 print(i)
#!/usr/bin/env python # # Copyright 2015 riteme # # Fibonacci series: a, b = 0, 1 bMax = int(input('Enter the max value of number: ')) while b < bMax: print(b, end = ', ') a, b = b, a + b
(a, b) = (0, 1) b_max = int(input('Enter the max value of number: ')) while b < bMax: print(b, end=', ') (a, b) = (b, a + b)
# define all the configurations here--- MAXLEN = 128 NUM_WORKERS = 4 TRAIN_BATCH_SIZE = 16 VALID_BATCH_SIZE = 16 EPOCHS = 10
maxlen = 128 num_workers = 4 train_batch_size = 16 valid_batch_size = 16 epochs = 10
class Solution: def gcd(self, x: int, y: int) -> int: while (y): x, y = y, x % y return x def isGoodArray(self, nums: List[int]) -> bool: x = nums[0] for y in nums: x = self.gcd(x, y) return x == 1
class Solution: def gcd(self, x: int, y: int) -> int: while y: (x, y) = (y, x % y) return x def is_good_array(self, nums: List[int]) -> bool: x = nums[0] for y in nums: x = self.gcd(x, y) return x == 1
# class Person: # def __init__(self, fn, ln): # self.fn = fn # self.ln = ln # def fullname(self): # return self.fn + ' ' + self.ln def constructor(self, fn, ln): self.fn = fn self.ln = ln def fullname(self): return self.fn + ' ' + self.ln Person = type("Person", (object,), { "__init__": constructor, "fullname": fullname }) p = Person('Bob', 'Smith') print(p.fullname())
def constructor(self, fn, ln): self.fn = fn self.ln = ln def fullname(self): return self.fn + ' ' + self.ln person = type('Person', (object,), {'__init__': constructor, 'fullname': fullname}) p = person('Bob', 'Smith') print(p.fullname())
""" Version module. This module defines the package version for use in __init__.py and setup.py. """ __version__ = '0.2.1alpha'
""" Version module. This module defines the package version for use in __init__.py and setup.py. """ __version__ = '0.2.1alpha'
allbases = { '866_8_4_16' : ['0234','1234','0345','1345','0246','1246','0456','1456','0237','1237','0357','1357','0267','1267','0567','1567'] , '867_8_4_12' : ['0234','1234','0345','1345','0246','1246','0456','1456','2347','3457','2467','4567'] , '868_8_4_9' : ['0234','1234','0345','1345','2346','3456','0347','1347','3467'] , '869_8_4_8' : ['0234','1234','0345','1345','2346','3456','2347','3457'] , '870_8_4_5' : ['0234','1234','2345','2346','2347'] , '871_8_4_8' : ['0234','1234','0345','1345','0246','1246','0456','1456'] , '872_8_4_6' : ['0234','1234','0345','1345','2346','3456'] , '873_8_4_4' : ['0234','1234','2345','2346'] , '874_8_4_4' : ['0234','1234','0345','1345'] , '875_8_4_3' : ['0234','1234','2345'] , '876_8_4_2' : ['0234','1234'] , '878_8_4_20' : ['0234','1234','0345','1345','0246','1246','0456','1456','0237','1237','0347','1347','0357','1357','0267','1267','0467','1467','0567','1567'] , '879_8_4_16' : ['0234','1234','0345','1345','0246','1246','0456','1456','0247','1247','2347','0457','1457','3457','2467','4567'] , '880_8_4_18' : ['0234','1234','0345','1345','2346','3456','0237','1237','0247','1247','0357','1357','0457','1457','2367','2467','3567','4567'] , '881_8_4_15' : ['0234','1234','0345','1345','2346','3456','0247','1247','0347','1347','0457','1457','2467','3467','4567'] , '882_8_4_14' : ['0234','1234','0345','1345','2346','3456','0247','1247','2347','0457','1457','3457','2467','4567'] , '883_8_4_11' : ['0234','1234','0345','1345','2346','3456','0347','1347','2347','3457','3467'] , '884_8_4_12' : ['0234','1234','0345','1345','0346','1346','2346','3456','0347','1347','2347','3457'] , '885_8_4_12' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','2347','2457','3457'] , '886_8_4_9' : ['0234','1234','2345','2346','0347','1347','2347','3457','3467'] , '887_8_4_12' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456'] , '888_8_4_10' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456'] , '889_8_4_8' : ['0234','1234','0345','1345','0346','1346','2346','3456'] , '890_8_4_9' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456'] , '891_8_4_7' : ['0234','1234','2345','0346','1346','2346','3456'] , '892_8_4_6' : ['0234','1234','0245','1245','0345','1345'] , '893_8_4_5' : ['0234','1234','0235','1235','2345'] , '894_8_4_3' : ['0123','0134','1234'] , '895_8_4_24' : ['0234','1234','0345','1345','0246','1246','0456','1456','0237','1237','0247','1247','2347','0357','1357','0457','1457','3457','0267','1267','2467','0567','1567','4567'] , '896_8_4_20' : ['0234','1234','0345','1345','0246','1246','0456','1456','0247','1247','0347','1347','2347','0457','1457','3457','0467','1467','2467','4567'] , '897_8_4_21' : ['0234','1234','0345','1345','2346','3456','0237','1237','0247','1247','0347','1347','0357','1357','0457','1457','2367','2467','3467','3567','4567'] , '898_8_4_20' : ['0234','1234','0345','1345','2346','3456','0237','1237','0247','1247','2347','0357','1357','0457','1457','3457','2367','2467','3567','4567'] , '899_8_4_17' : ['0234','1234','0345','1345','2346','3456','0247','1247','0347','1347','2347','0457','1457','3457','2467','3467','4567'] , '900_8_4_16' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456','2347','2367','2467','3467'] , '901_8_4_13' : ['0234','1234','2345','2346','0247','1247','0347','1347','2347','2457','3457','2467','3467'] , '902_8_4_14' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456'] , '903_8_4_12' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456'] , '904_8_4_12' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456'] , '905_8_4_10' : ['0234','1234','2345','0246','1246','0346','1346','2346','2456','3456'] , '906_8_4_8' : ['0234','1234','0235','1235','0245','1245','0345','1345'] , '907_8_4_7' : ['0234','1234','0245','1245','0345','1345','2345'] , '908_8_4_4' : ['0123','0124','0234','1234'] , '909_8_4_28' : ['0234','1234','0345','1345','0246','1246','0456','1456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0467','1467','2467','0567','1567','4567'] , '910_8_4_23' : ['0234','1234','0345','1345','2346','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','2367','2467','3467','3567','4567'] , '911_8_4_17' : ['0234','1234','2345','2346','0237','1237','0247','1247','0347','1347','2347','2357','2457','3457','2367','2467','3467'] , '912_8_4_16' : ['0234','1234','0345','1345','0236','1236','0246','1246','0346','1346','2346','0356','1356','0456','1456','3456'] , '913_8_4_13' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2346','2356','2456','3456'] , '914_8_4_9' : ['0234','1234','0235','1235','0245','1245','0345','1345','2345'] , '915_8_4_5' : ['0123','0124','0134','0234','1234'] , '916_8_4_24' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456','0237','1237','0247','1247','0357','1357','0457','1457','0267','1267','0567','1567'] , '917_8_4_18' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0247','1247','2347','0457','1457','3457','2467','4567'] , '918_8_4_13' : ['0234','1234','0345','1345','0346','1346','2346','3456','0347','1347','2347','3457','3467'] , '919_8_4_18' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0247','1247','0347','1347','0457','1457','2467','3467','4567'] , '920_8_4_12' : ['0234','1234','2345','0346','1346','2346','3456','0347','1347','2347','3457','3467'] , '921_8_4_12' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','0456','1456'] , '922_8_4_9' : ['0234','1234','0235','1235','2345','0236','1236','2346','2356'] , '923_8_4_6' : ['0123','0134','1234','0135','1235','1345'] , '924_8_4_24' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456','0347','1347','2347','3457','0367','1367','2367','0467','1467','2467','3567','4567'] , '925_8_4_25' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0237','1237','0347','1347','0357','1357','0267','1267','2367','0467','1467','3467','0567','1567','3567'] , '926_8_4_21' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0237','1237','2347','0257','1257','0357','1357','2457','3457','2367','2567','3567'] , '927_8_4_15' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456'] , '928_8_4_9' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345'] , '929_8_4_26' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456','0247','1247','2347','0457','1457','3457','0267','1267','2367','2467','0567','1567','3567','4567'] , '930_8_4_24' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0237','1237','2347','0357','1357','3457','0267','1267','2367','2467','0567','1567','3567','4567'] , '931_8_4_21' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0247','1247','0347','1347','0457','1457','0467','1467','2467','3467','4567'] , '932_8_4_19' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0347','1347','2347','3457','0467','1467','2467','3467','4567'] , '933_8_4_20' : ['0234','1234','0345','1345','0346','1346','2346','3456','0247','1247','0347','1347','2347','0457','1457','3457','0467','1467','2467','4567'] , '934_8_4_24' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','2347','2457','3457','2367','3467','2567','3567','4567'] , '935_8_4_18' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0347','1347','2347','0457','1457','2457','3457','3467','4567'] , '936_8_4_16' : ['0234','1234','2345','0346','1346','2346','3456','0247','1247','2347','2457','0467','1467','2467','3467','4567'] , '937_8_4_16' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456'] , '938_8_4_13' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456'] , '939_8_4_12' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456'] , '940_8_4_8' : ['0123','0134','1234','0235','1235','0345','1345','2345'] , '941_8_4_30' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456','0237','1237','0247','1247','2347','0357','1357','0457','1457','3457','0267','1267','2367','2467','0567','1567','3567','4567'] , '942_8_4_28' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0237','1237','0247','1247','2347','0357','1357','0457','1457','3457','0267','1267','2367','2467','0567','1567','3567','4567'] , '943_8_4_23' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0247','1247','0347','1347','2347','0457','1457','3457','0467','1467','2467','3467','4567'] , '944_8_4_21' : ['0234','1234','0345','1345','0346','1346','2346','3456','0247','1247','0347','1347','2347','0457','1457','3457','0467','1467','2467','3467','4567'] , '945_8_4_24' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456','0237','1237','0347','1347','2347','0357','1357','3457','0367','1367','2367','3567'] , '946_8_4_27' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','2367','2467','3467','2567','3567','4567'] , '947_8_4_21' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','2467','3467','4567'] , '948_8_4_19' : ['0234','1234','2345','0346','1346','2346','3456','0247','1247','0347','1347','2347','2457','3457','0467','1467','2467','3467','4567'] , '949_8_4_18' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456'] , '950_8_4_15' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456'] , '951_8_4_14' : ['0234','1234','0235','1235','2345','0236','1236','0346','1346','2346','0356','1356','2356','3456'] , '952_8_4_9' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345'] , '953_8_4_32' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456','0247','1247','0347','1347','2347','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '954_8_4_31' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0237','1237','0247','1247','0347','1347','0357','1357','0457','1457','0267','1267','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '955_8_4_29' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0237','1237','0347','1347','2347','0357','1357','3457','0267','1267','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '956_8_4_27' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456','0347','1347','2347','3457','0367','1367','2367','0467','1467','2467','3467','3567','4567'] , '957_8_4_28' : ['0234','1234','0345','1345','0346','1346','2346','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0367','1367','2367','0467','1467','2467','3567','4567'] , '958_8_4_27' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0237','1237','0247','1247','2347','0257','1257','0357','1357','0457','1457','2457','3457','2367','2467','2567','3567','4567'] , '959_8_4_25' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456','0247','1247','2347','2457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '960_8_4_23' : ['0234','1234','2345','0346','1346','2346','3456','0237','1237','0247','1247','2347','2357','2457','0367','1367','2367','0467','1467','2467','3467','3567','4567'] , '961_8_4_19' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456'] , '962_8_4_18' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456'] , '963_8_4_17' : ['0234','1234','0235','1235','2345','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456'] , '964_8_4_11' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345'] , '965_8_4_36' : ['0234','1234','0345','1345','0236','1236','0246','1246','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '966_8_4_33' : ['0234','1234','0345','1345','0246','1246','2346','0456','1456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '967_8_4_29' : ['0234','1234','0345','1345','0346','1346','2346','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0367','1367','2367','0467','1467','2467','3467','3567','4567'] , '968_8_4_30' : ['0234','1234','0245','1245','0345','1345','2346','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','2367','2467','3467','2567','3567','4567'] , '969_8_4_26' : ['0234','1234','2345','0346','1346','2346','3456','0237','1237','0247','1247','0347','1347','2347','2357','2457','3457','0367','1367','2367','0467','1467','2467','3467','3567','4567'] , '970_8_4_21' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456'] , '971_8_4_19' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456'] , '972_8_4_12' : ['0123','0134','1234','0125','0135','0235','1235','0145','1245','0345','1345','2345'] , '973_8_4_33' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456','0237','1237','0247','1247','0347','1347','0357','1357','0457','1457','0367','1367','2367','0467','1467','2467','3467','3567','4567'] , '974_8_4_32' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456','0237','1237','0247','1247','2347','0357','1357','0457','1457','3457','0267','1267','2367','2467','0567','1567','3567','4567'] , '975_8_4_32' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456','0247','1247','0347','1347','2347','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '976_8_4_25' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456','0237','1237','0347','1347','2347','0357','1357','3457','0367','1367','2367','3467','3567'] , '977_8_4_30' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456','0237','1237','0247','1247','0347','1347','2357','2457','3457','0267','1267','0367','1367','0467','1467','2567','3567','4567'] , '978_8_4_28' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456','0247','1247','0347','1347','2347','2457','3457','0267','1267','0367','1367','2367','2467','3467','2567','3567'] , '979_8_4_22' : ['0234','1234','2345','0246','1246','0346','1346','2346','2456','3456','0247','1247','0347','1347','2347','2457','3457','0467','1467','2467','3467','4567'] , '980_8_4_20' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0356','1356','2356','0456','1456','2456','3456'] , '981_8_4_20' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456'] , '982_8_4_16' : ['0234','1234','0245','1245','0345','1345','2345','0246','1246','0346','1346','2346','0456','1456','2456','3456'] , '983_8_4_12' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345'] , '984_8_4_10' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345'] , '985_8_4_37' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456','0237','1237','0247','1247','0347','1347','0357','1357','0457','1457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '986_8_4_35' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456','0237','1237','0347','1347','2347','0357','1357','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '987_8_4_36' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '988_8_4_33' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456','0247','1247','0347','1347','2347','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '989_8_4_31' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456','0247','1247','0347','1347','2347','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '990_8_4_29' : ['0234','1234','2345','0246','1246','0346','1346','2346','2456','3456','0237','1237','0247','1247','2347','2357','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '991_8_4_22' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '992_8_4_21' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456'] , '993_8_4_13' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345'] , '994_8_4_39' : ['0234','1234','0345','1345','0236','1236','0246','1246','2346','0356','1356','0456','1456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '995_8_4_37' : ['0234','1234','0345','1345','0236','1236','0346','1346','2346','0356','1356','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '996_8_4_40' : ['0234','1234','0345','1345','0236','1236','0246','1246','0346','1346','2346','0356','1356','0456','1456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '997_8_4_34' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '998_8_4_32' : ['0234','1234','2345','0246','1246','0346','1346','2346','2456','3456','0237','1237','0247','1247','0347','1347','2347','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '999_8_4_24' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1000_8_4_23' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1001_8_4_14' : ['0123','0124','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345'] , '1002_8_4_41' : ['0234','1234','0345','1345','0236','1236','0246','1246','0346','1346','2346','0356','1356','0456','1456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1003_8_4_35' : ['0234','1234','2345','0236','1236','0246','1246','0346','1346','2346','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1004_8_4_25' : ['0234','1234','0235','1235','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1005_8_4_15' : ['0123','0124','0134','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345'] , '1006_8_4_20' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','0456','1456','0247','1247','0347','1347','0457','1457','0467','1467'] , '1007_8_4_14' : ['0234','1234','0235','1235','2345','0236','1236','2346','2356','0237','1237','2347','2357','2367'] , '1008_8_4_10' : ['0123','0134','1234','0135','1235','1345','0136','1236','1346','1356'] , '1009_8_4_32' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0267','1267','0467','1467','0567','1567'] , '1010_8_4_24' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','2457','3457','0467','1467','2467','4567'] , '1011_8_4_16' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356'] , '1012_8_4_30' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456','0247','1247','0347','1347','0457','1457','0267','1267','0367','1367','2467','3467','0567','1567','4567'] , '1013_8_4_27' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456','0237','1237','2347','0257','1257','0357','1357','2457','3457','2367','2567','3567'] , '1014_8_4_18' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0236','0146','1246','0346','2346','0256','0456','2456'] , '1015_8_4_30' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0247','1247','0347','1347','0457','1457','0267','1267','0367','1367','0467','1467','0567','1567'] , '1016_8_4_24' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','0457','1457','0467','1467','2467','3467','4567'] , '1017_8_4_22' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0347','1347','2347','0457','1457','2457','3457','3467','4567'] , '1018_8_4_21' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0347','1347','2347','0357','1357','2357','3457','3467','3567'] , '1019_8_4_15' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456'] , '1020_8_4_34' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0267','1267','0367','1367','0467','1467','0567','1567'] , '1021_8_4_34' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','2347','0257','1257','0357','1357','2457','3457','0367','1367','2367','3467','0567','1567','2567','3567','4567'] , '1022_8_4_26' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0467','1467','2467','4567'] , '1023_8_4_33' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','0567','1567','2567','3567'] , '1024_8_4_25' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0247','1247','2347','0457','1457','2457','3457','0467','1467','2467','3467','4567'] , '1025_8_4_31' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','2347','0257','1257','0357','1357','2457','3457','0367','1367','2367','3467','0567','1567','2567','3567','4567'] , '1026_8_4_21' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456'] , '1027_8_4_17' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456'] , '1028_8_4_32' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0347','1347','2347','0457','1457','2457','3457','0367','1367','2367','3467','0567','1567','2567','3567','4567'] , '1029_8_4_28' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0247','1247','2347','0257','1257','2357','2457','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1030_8_4_20' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456'] , '1031_8_4_32' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','0467','1467','0567','1567'] , '1032_8_4_26' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','0456','1456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0467','1467','2467','3467','4567'] , '1033_8_4_23' : ['0234','1234','0235','1235','2345','0236','1236','2346','2356','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1034_8_4_16' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456'] , '1035_8_4_36' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','0456','1456','0237','1237','0247','1247','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','4567'] , '1036_8_4_31' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','2347','2357','0267','1267','0367','1367','2367','2467','3467','2567','3567'] , '1037_8_4_30' : ['0234','1234','0235','1235','2345','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','2347','2357','0267','1267','0367','1367','2367','2467','3467','2567','3567'] , '1038_8_4_21' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','1236','1346','0156','1256','0356','1356','2356','1456','3456'] , '1039_8_4_38' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','4567'] , '1040_8_4_32' : ['0234','1234','0235','1235','2345','0236','1236','2346','2356','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','2467','3467','2567','3567'] , '1041_8_4_22' : ['0123','0134','1234','0135','1235','1345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','1256','0356','1356','2356','1456','3456'] , '1042_8_4_40' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','2367','0467','1467','3467','0567','1567','2567','3567','4567'] , '1043_8_4_36' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','0467','1467','0567','1567'] , '1044_8_4_37' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1045_8_4_27' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0467','1467','2467','3467','4567'] , '1046_8_4_36' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','0567','1567'] , '1047_8_4_28' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0467','1467','3467','4567'] , '1048_8_4_27' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','2467','3467','4567'] , '1049_8_4_36' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1050_8_4_26' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1051_8_4_24' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456'] , '1052_8_4_18' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456'] , '1053_8_4_18' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','2356','3456'] , '1054_8_4_39' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1055_8_4_37' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456','0237','1237','0247','1247','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','2367','2467','0567','1567','2567','3567','4567'] , '1056_8_4_36' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1057_8_4_39' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','0567','1567','2567','3567'] , '1058_8_4_24' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456'] , '1059_8_4_38' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','3467','0567','1567','2567','3567','4567'] , '1060_8_4_37' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1061_8_4_35' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','3467','0567','1567','2567','3567','4567'] , '1062_8_4_33' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','2347','0257','1257','2357','2457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1063_8_4_23' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456'] , '1064_8_4_42' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','2367','0467','1467','3467','0567','1567','2567','3567','4567'] , '1065_8_4_39' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1066_8_4_38' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1067_8_4_37' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1068_8_4_25' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1069_8_4_42' : ['0234','1234','0245','1245','0345','1345','0236','1236','2346','0256','1256','0356','1356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1070_8_4_45' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0567','1567','2567','3567'] , '1071_8_4_27' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456'] , '1072_8_4_44' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','3467','0567','1567','2567','3567','4567'] , '1073_8_4_40' : ['0234','1234','0245','1245','0345','1345','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1074_8_4_38' : ['0234','1234','0235','1235','2345','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1075_8_4_26' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1076_8_4_38' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','0467','1467','0567','1567'] , '1077_8_4_29' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0467','1467','2467','3467','4567'] , '1078_8_4_28' : ['0234','1234','0235','1235','2345','0236','1236','0346','1346','2346','0356','1356','2356','3456','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1079_8_4_19' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456'] , '1080_8_4_39' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1081_8_4_36' : ['0234','1234','0235','1235','2345','0236','1236','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','2347','0257','1257','2357','2457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1082_8_4_24' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456'] , '1083_8_4_41' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1084_8_4_43' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','4567'] , '1085_8_4_40' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','0367','1367','2367','2467','3467','2567','3567'] , '1086_8_4_39' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','2467','3467','2567','3567'] , '1087_8_4_26' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1088_8_4_45' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1089_8_4_44' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1090_8_4_41' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0367','1367','2367','3467','0567','1567','2567','3567','4567'] , '1091_8_4_43' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1092_8_4_42' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','0467','1467','0567','1567','2567','3567','4567'] , '1093_8_4_38' : ['0234','1234','0235','1235','2345','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1094_8_4_28' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1095_8_4_26' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456'] , '1096_8_4_41' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1097_8_4_37' : ['0234','1234','0235','1235','2345','0236','1236','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','2347','0257','1257','2357','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1098_8_4_25' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1099_8_4_45' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1100_8_4_42' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1101_8_4_45' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1102_8_4_43' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','3467','0567','1567','2567','3567','4567'] , '1103_8_4_42' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1104_8_4_41' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','2347','0257','1257','2357','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1105_8_4_40' : ['0234','1234','0235','1235','2345','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0347','1347','2347','0357','1357','2357','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1106_8_4_41' : ['0234','1234','0235','1235','2345','0236','1236','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1107_8_4_27' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1108_8_4_27' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456'] , '1109_8_4_47' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1110_8_4_46' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1111_8_4_45' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1112_8_4_44' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1113_8_4_29' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1114_8_4_47' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1115_8_4_44' : ['0234','1234','0245','1245','0345','1345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1116_8_4_42' : ['0234','1234','0235','1235','2345','0236','1236','0346','1346','2346','0356','1356','2356','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1117_8_4_28' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1118_8_4_48' : ['0234','1234','0245','1245','0345','1345','0236','1236','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1119_8_4_49' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','3467','0567','1567','2567','3567','4567'] , '1120_8_4_48' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1121_8_4_46' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1122_8_4_45' : ['0234','1234','0235','1235','2345','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1123_8_4_46' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1124_8_4_30' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1125_8_4_30' : ['0123','0134','1234','0125','0135','0235','1235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456'] , '1126_8_4_50' : ['0234','1234','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1127_8_4_47' : ['0234','1234','0235','1235','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1128_8_4_31' : ['0123','0134','1234','0125','0135','0235','1235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1129_8_4_44' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0356','1356','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1130_8_4_28' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','0236','1236','0146','0246','1246','0346','1346','0156','0256','1256','1356','2356','0456','2456','3456'] , '1131_8_4_40' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','0467','1467','0567','1567'] , '1132_8_4_30' : ['0234','1234','0245','1245','0345','1345','2345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0467','1467','2467','3467','4567'] , '1133_8_4_20' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345','0126','0236','1236','0246','1246','2346','0256','1256','2356','2456'] , '1134_8_4_46' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1135_8_4_45' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0356','1356','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1136_8_4_29' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456'] , '1137_8_4_48' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1138_8_4_48' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1139_8_4_47' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','2567','3567','4567'] , '1140_8_4_47' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1141_8_4_44' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','2367','2467','0567','1567','3567','4567'] , '1142_8_4_46' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1143_8_4_43' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','2347','0357','1357','2357','0457','1457','2457','3457','0267','1267','2367','2467','0567','1567','2567','3567','4567'] , '1144_8_4_46' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0356','1356','2356','0456','1456','2456','3456','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1145_8_4_30' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456'] , '1146_8_4_28' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456'] , '1147_8_4_30' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1148_8_4_50' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1149_8_4_49' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1150_8_4_49' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1151_8_4_49' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1152_8_4_49' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1153_8_4_48' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1154_8_4_48' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1155_8_4_48' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','0257','1257','0357','1357','0457','1457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1156_8_4_45' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','2367','2467','0567','1567','2567','3567','4567'] , '1157_8_4_47' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1158_8_4_44' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0247','1247','0347','1347','2347','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1159_8_4_31' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1160_8_4_31' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1161_8_4_31' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1162_8_4_29' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','0246','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456'] , '1163_8_4_51' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1164_8_4_51' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1165_8_4_50' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1166_8_4_50' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1167_8_4_50' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1168_8_4_50' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1169_8_4_50' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','0256','1256','0356','1356','0456','1456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1170_8_4_52' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1171_8_4_49' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1172_8_4_46' : ['0234','1234','0245','1245','0345','1345','2345','0246','1246','0346','1346','2346','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1173_8_4_32' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1174_8_4_32' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1175_8_4_32' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1176_8_4_30' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1177_8_4_52' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1178_8_4_53' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1179_8_4_52' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1180_8_4_51' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1181_8_4_51' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','2467','3467','0567','1567','2567','3567','4567'] , '1182_8_4_33' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1183_8_4_33' : ['0123','0124','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','1256','0356','1356','2356','0456','1456','2456','3456'] , '1184_8_4_54' : ['0234','1234','0235','1235','0245','1245','0345','1345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1185_8_4_53' : ['0234','1234','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1186_8_4_34' : ['0123','0124','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1187_8_4_55' : ['0234','1234','0235','1235','0245','1245','0345','1345','2345','0236','1236','0246','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0237','1237','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1188_8_4_35' : ['0123','0124','0134','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456'] , '1189_8_4_28' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0137','0237','1237','0347','2347','0357','1357','3457','1367','2367','3467','3567'] , '1190_8_4_15' : ['0123','0134','1234','0135','1235','1345','0136','1236','1346','1356','0137','1237','1347','1357','1367'] , '1191_8_4_29' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','2347','0357','1357','3457','1367','2367','3467','3567'] , '1192_8_4_30' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0236','0146','1246','0346','2346','0256','0456','2456','0127','0237','0147','1247','0347','2347','0257','0457','2457','0267','0467','2467'] , '1193_8_4_28' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','0347','1347','2347','0357','1357','2357','0367','3467','3567'] , '1194_8_4_24' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0237','1237','0347','1347','2347','2357','3457','2367','3467'] , '1195_8_4_36' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0236','0146','1246','0346','2346','0256','0456','2456','0137','1237','1347','0157','1257','0357','2357','1457','3457','0167','1267','0367','2367','1467','3467','0567','2567','4567'] , '1196_8_4_40' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0137','0237','0347','1347','2347','0357','1357','2357','0167','0267','0367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1197_8_4_30' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','2347','0357','1357','3457','0367','1367','2367','3467','3567'] , '1198_8_4_30' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','2347','0357','1357','2357','3457','0367','1367','2367','3467'] , '1199_8_4_27' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0137','1237','1347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1200_8_4_39' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0137','1237','1347','0357','1357','2357','3457','0167','1267','0367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1201_8_4_29' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','1237','1347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1202_8_4_25' : ['0123','0134','1234','0135','1235','1345','0136','1236','1346','1356','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1203_8_4_37' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','2357','3457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '1204_8_4_36' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0237','1237','0347','1347','2347','2357','3457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '1205_8_4_34' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','1236','1346','0156','1256','0356','1356','2356','1456','3456','0137','1237','1347','0157','1257','0357','1357','2357','1457','3457','1367','1567','3567'] , '1206_8_4_35' : ['0123','0134','1234','0135','1235','1345','0136','1236','1346','1356','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','1267','0367','1367','2367','1467','3467','1567','3567'] , '1207_8_4_44' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1208_8_4_45' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','2367','0467','2467','0567','1567','3567','4567'] , '1209_8_4_31' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1210_8_4_31' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','0367','1367','2367','3467','3567'] , '1211_8_4_31' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1212_8_4_43' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1213_8_4_45' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1214_8_4_42' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0137','0237','0347','1347','2347','0357','1357','2357','3457','0167','0267','0367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1215_8_4_46' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','2367','0467','2467','0567','1567','2567','3567','4567'] , '1216_8_4_44' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1217_8_4_46' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1218_8_4_47' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1219_8_4_30' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1220_8_4_30' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','2367','3467','3567'] , '1221_8_4_42' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0236','0146','1246','0346','2346','0256','0456','2456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '1222_8_4_43' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1223_8_4_45' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0236','0146','1246','0346','2346','0256','0456','2456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1224_8_4_39' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '1225_8_4_42' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0127','0137','1237','0147','1247','1347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1226_8_4_44' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1227_8_4_48' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0236','0146','1246','0346','2346','0256','0456','2456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1228_8_4_45' : ['0123','0134','1234','0235','1235','0345','1345','2345','0236','1236','0346','1346','2346','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1229_8_4_48' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1230_8_4_46' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1231_8_4_32' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1232_8_4_48' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','0467','1467','2467','0567','1567','2567'] , '1233_8_4_32' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','1367','2367','3467','3567'] , '1234_8_4_32' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','2367','3467','3567'] , '1235_8_4_49' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1236_8_4_49' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','2467','0567','1567','2567','3567','4567'] , '1237_8_4_45' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1238_8_4_46' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0467','1467','2467','0567','1567','2567','4567'] , '1239_8_4_51' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1240_8_4_45' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '1241_8_4_47' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1242_8_4_47' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1243_8_4_45' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','0467','1467','2467','2567','4567'] , '1244_8_4_50' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1245_8_4_50' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1246_8_4_44' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1247_8_4_51' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0467','1467','2467','0567','1567','2567','4567'] , '1248_8_4_50' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','2467','0567','1567','2567','3567','4567'] , '1249_8_4_46' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1250_8_4_52' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1251_8_4_48' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1252_8_4_48' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1253_8_4_51' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1254_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0467','1467','2467','0567','1567','2567','4567'] , '1255_8_4_53' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','0146','1246','0346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1256_8_4_49' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1257_8_4_52' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','1236','0146','1246','1346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1258_8_4_31' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1259_8_4_40' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','1237','0147','1247','1347','0157','1257','1357','1457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1260_8_4_49' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','1237','1347','0157','1257','0357','1357','2357','1457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1261_8_4_45' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','1237','1347','0157','1257','0357','1357','2357','1457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1262_8_4_41' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','1237','0147','1247','1347','0157','1257','1357','1457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1263_8_4_50' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','1237','1347','0157','1257','0357','1357','2357','1457','3457','0167','1267','0367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1264_8_4_48' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','1236','1346','0156','1256','0356','1356','2356','1456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1265_8_4_46' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','1236','1346','0156','1256','0356','1356','2356','1456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1266_8_4_46' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1267_8_4_51' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','1237','1347','0157','1257','0357','1357','2357','1457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1268_8_4_47' : ['0123','0134','1234','0135','1235','1345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1269_8_4_52' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','1236','1346','0156','1256','0356','1356','2356','1456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1270_8_4_52' : ['0123','0134','1234','0135','1235','1345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','1256','0356','1356','2356','1456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1271_8_4_53' : ['0123','0134','1234','0135','1235','1345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','1256','0356','1356','2356','1456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1272_8_4_33' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1273_8_4_33' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1274_8_4_52' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1275_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1276_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1277_8_4_48' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1278_8_4_52' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','2357','0457','2457','0167','0267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1279_8_4_48' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','1467','0567','1567','2567','4567'] , '1280_8_4_51' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1281_8_4_45' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','2356','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1282_8_4_53' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1283_8_4_53' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','2567','3567','4567'] , '1284_8_4_47' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1285_8_4_51' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','2357','1457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1286_8_4_48' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1287_8_4_55' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1288_8_4_55' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1289_8_4_55' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1290_8_4_53' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','0367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1291_8_4_49' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1292_8_4_49' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1293_8_4_55' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1294_8_4_49' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1295_8_4_47' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0267','1267','2367','0467','1467','2467','3467','2567','4567'] , '1296_8_4_53' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1297_8_4_53' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','2357','0457','2457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1298_8_4_49' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1467','0567','1567','2567','4567'] , '1299_8_4_52' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1300_8_4_55' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1301_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1302_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1303_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1304_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1305_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1306_8_4_48' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1307_8_4_57' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1308_8_4_48' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','2356','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1309_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1310_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1311_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1312_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1313_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1314_8_4_54' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1315_8_4_50' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1316_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1317_8_4_50' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1318_8_4_50' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1319_8_4_54' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1320_8_4_54' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','2357','0457','2457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1321_8_4_54' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1322_8_4_54' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','1267','0367','2367','1467','3467','0567','2567','4567'] , '1323_8_4_50' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1467','0567','1567','2567','4567'] , '1324_8_4_53' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1325_8_4_56' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1326_8_4_55' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0257','1257','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1327_8_4_55' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1328_8_4_58' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1329_8_4_57' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1330_8_4_57' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1331_8_4_57' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1332_8_4_57' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1333_8_4_57' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1334_8_4_51' : ['0123','0134','1234','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1335_8_4_51' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1336_8_4_57' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1337_8_4_57' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1338_8_4_56' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0236','1236','0146','1246','0346','1346','2346','0256','1256','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1339_8_4_59' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1340_8_4_58' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1341_8_4_58' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1342_8_4_58' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1343_8_4_60' : ['0123','0134','1234','0125','0235','0145','1245','0345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1344_8_4_59' : ['0123','0134','1234','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1345_8_4_34' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0367','1367','2367','3467','3567'] , '1346_8_4_54' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1347_8_4_54' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','4567'] , '1348_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1349_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1350_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1351_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0267','1267','0367','1367','0467','1467','2467','3467','2567','3567','4567'] , '1352_8_4_50' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1353_8_4_55' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1354_8_4_55' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1355_8_4_55' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1356_8_4_55' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1357_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1358_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1359_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1360_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1361_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','4567'] , '1362_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1363_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1364_8_4_55' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1365_8_4_50' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','0367','0467','1467','2467','3467','0567','4567'] , '1366_8_4_49' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1367_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1368_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1369_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1370_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1371_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','2567','3567','4567'] , '1372_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1373_8_4_51' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1374_8_4_51' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','2567','3567','4567'] , '1375_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1376_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1377_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1378_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1379_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1380_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1381_8_4_54' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','1267','0367','2367','1467','3467','0567','2567','4567'] , '1382_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1383_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1384_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1385_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1386_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1387_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1388_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1389_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1390_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1391_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1392_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1393_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1394_8_4_56' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1395_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1396_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1397_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1398_8_4_50' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1399_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1400_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1401_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1402_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1403_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1404_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1405_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1406_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1407_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','4567'] , '1408_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1409_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1410_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1411_8_4_52' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','1367','1467','0567','1567','2567','3567','4567'] , '1412_8_4_52' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0357','1357','2357','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1413_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1414_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1415_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1416_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1417_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1418_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1419_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1420_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1421_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1422_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1423_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1424_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1425_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1426_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1427_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1428_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1429_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1430_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1431_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1432_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1433_8_4_57' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1434_8_4_57' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1435_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1436_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1437_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1438_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1439_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1440_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1441_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1442_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1443_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1444_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1445_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1446_8_4_59' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1447_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1448_8_4_53' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0136','0236','1236','0346','1346','2346','0356','1356','2356','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1449_8_4_58' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','1257','0357','1357','2357','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1450_8_4_58' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1451_8_4_58' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1452_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1453_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','1247','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1454_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1455_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1456_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1457_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1458_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1459_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1460_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1461_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1462_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1463_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1464_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1465_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1466_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1467_8_4_60' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1468_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1469_8_4_62' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1470_8_4_60' : ['0123','0134','1234','0125','0135','0235','1235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','2567','4567'] , '1471_8_4_59' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1472_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','1236','0146','1246','1346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1473_8_4_61' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1474_8_4_61' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1475_8_4_61' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1476_8_4_63' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1477_8_4_63' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1478_8_4_63' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1479_8_4_63' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1480_8_4_62' : ['0123','0134','1234','0135','0235','1235','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1481_8_4_64' : ['0123','0134','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1482_8_4_64' : ['0123','0134','1234','0125','0135','0235','1235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1483_8_4_65' : ['0123','0134','1234','0125','0135','0235','1235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1484_8_4_56' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','0236','1236','0146','0246','1246','0346','1346','0156','0256','1256','1356','2356','0456','2456','3456','0127','0137','1237','0147','0247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1485_8_4_57' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1486_8_4_58' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1487_8_4_58' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1488_8_4_35' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345','0126','0236','1236','0246','1246','2346','0256','1256','2356','2456','0127','0237','1237','0247','1247','2347','0257','1257','2357','2457','0267','1267','2367','2467','2567'] , '1489_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1490_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1491_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1492_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1493_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1494_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1495_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1496_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1497_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1498_8_4_58' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','1267','0367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1499_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1500_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1501_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1502_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1503_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1504_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1505_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1506_8_4_52' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','1457','2457','3457','0167','0267','0367','0467','1467','2467','3467','0567','4567'] , '1507_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1508_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1509_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1510_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1511_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1512_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1513_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1514_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','1267','0367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1515_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1516_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','2567','3567','4567'] , '1517_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1518_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1519_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1520_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1521_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1522_8_4_57' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1523_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1524_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1525_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1526_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1527_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1528_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1529_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1530_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1531_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1532_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1533_8_4_53' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','0367','0467','1467','2467','3467','0567','4567'] , '1534_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1535_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1536_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1537_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1538_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1539_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1540_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1541_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1542_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1543_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1544_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1545_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1546_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1547_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1548_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1549_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1550_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1551_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1552_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1553_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1554_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1555_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1556_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1557_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1558_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1559_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1560_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1561_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1562_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','4567'] , '1563_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1564_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1565_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','3457','0267','1267','0367','1367','0467','1467','2467','3467','2567','3567','4567'] , '1566_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1567_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1568_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1569_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1570_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1571_8_4_58' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1572_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1573_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1574_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1575_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1576_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1577_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1578_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1579_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1580_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1581_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1582_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1583_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1584_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1585_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1586_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1587_8_4_54' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','0246','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','0367','0467','1467','2467','3467','0567','4567'] , '1588_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1589_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1590_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1591_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1592_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1593_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1594_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1595_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1596_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1597_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','3567','4567'] , '1598_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','4567'] , '1599_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','2567','3567','4567'] , '1600_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1601_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1602_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1603_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1604_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1605_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1606_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1607_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1608_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1609_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1610_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','1567','2567','3567','4567'] , '1611_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','3567','4567'] , '1612_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1613_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1614_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1615_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1616_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1617_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1618_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1619_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1620_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1621_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','4567'] , '1622_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1623_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1624_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1625_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1626_8_4_59' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1627_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1628_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1629_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1630_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1631_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1632_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1633_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1634_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1635_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1636_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1637_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1638_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1639_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1640_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1641_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1642_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1643_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1644_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1645_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1646_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1647_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1648_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1649_8_4_61' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1650_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1651_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1652_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1653_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1654_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1655_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1656_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1657_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1658_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1659_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1660_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1661_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1662_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1663_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0136','0236','1236','0146','0246','1246','0346','1346','0156','0256','1256','1356','2356','0456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1664_8_4_55' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345','0126','0236','1236','0246','1246','2346','0256','1256','2356','2456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1665_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1666_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1667_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1668_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1669_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1670_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1671_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1672_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1673_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1674_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1675_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1676_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1677_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1678_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1679_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1680_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1681_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1682_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1683_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1684_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1685_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1686_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1687_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1688_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1689_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1690_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1691_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1692_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1693_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1694_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1695_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1696_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1697_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1698_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1699_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1700_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1701_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','2567','3567','4567'] , '1702_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1703_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1704_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1705_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1706_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1707_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1708_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1709_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1710_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1711_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1712_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1713_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','0347','1347','2347','0157','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1714_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','2467','3467','0567','1567','2567','3567','4567'] , '1715_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','2567','3567','4567'] , '1716_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1717_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1718_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1719_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1720_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1721_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1722_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1723_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1724_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1725_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','0367','1367','2367','0467','3467','0567','1567','2567','3567','4567'] , '1726_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1727_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1728_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1729_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1730_8_4_62' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','0147','0247','1247','0347','1347','2347','0157','0257','0357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1731_8_4_60' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','0246','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1732_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1733_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1734_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1735_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1736_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1737_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1738_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1739_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1740_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1741_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1742_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1743_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1744_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1745_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1746_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1747_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1748_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','4567'] , '1749_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1750_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1751_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1752_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1753_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1754_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','1467','3467','0567','1567','2567','3567','4567'] , '1755_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1756_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1757_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1758_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1759_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1760_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1761_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1762_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1763_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1764_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1765_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1766_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1767_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1768_8_4_63' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0237','1237','0247','1247','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1769_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1770_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1771_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1772_8_4_65' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1773_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1774_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1775_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1776_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1777_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1778_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1779_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1780_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1781_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1782_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1783_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1784_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','1567','2567','3567','4567'] , '1785_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1786_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1787_8_4_64' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','0146','0246','1246','0346','1346','2346','0156','0256','0356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1788_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','0567','1567','2567','3567','4567'] , '1789_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567'] , '1790_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1791_8_4_66' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','3567','4567'] , '1792_8_4_64' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1793_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1794_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1795_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1796_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1797_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1798_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','1467','2467','3467','0567','1567','2567','3567','4567'] , '1799_8_4_67' : ['0123','0124','0234','1234','0125','0135','0235','0145','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1800_8_4_65' : ['0123','0124','0234','1234','0125','0235','1235','0245','1245','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1801_8_4_68' : ['0123','0124','0234','1234','0125','0135','0235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1802_8_4_68' : ['0123','0124','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1803_8_4_68' : ['0123','0124','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','3567','4567'] , '1804_8_4_69' : ['0123','0124','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , '1805_8_4_70' : ['0123','0124','0134','0234','1234','0125','0135','0235','1235','0145','0245','1245','0345','1345','2345','0126','0136','0236','1236','0146','0246','1246','0346','1346','2346','0156','0256','1256','0356','1356','2356','0456','1456','2456','3456','0127','0137','0237','1237','0147','0247','1247','0347','1347','2347','0157','0257','1257','0357','1357','2357','0457','1457','2457','3457','0167','0267','1267','0367','1367','2367','0467','1467','2467','3467','0567','1567','2567','3567','4567'] , }
allbases = {'866_8_4_16': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '0237', '1237', '0357', '1357', '0267', '1267', '0567', '1567'], '867_8_4_12': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '2347', '3457', '2467', '4567'], '868_8_4_9': ['0234', '1234', '0345', '1345', '2346', '3456', '0347', '1347', '3467'], '869_8_4_8': ['0234', '1234', '0345', '1345', '2346', '3456', '2347', '3457'], '870_8_4_5': ['0234', '1234', '2345', '2346', '2347'], '871_8_4_8': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456'], '872_8_4_6': ['0234', '1234', '0345', '1345', '2346', '3456'], '873_8_4_4': ['0234', '1234', '2345', '2346'], '874_8_4_4': ['0234', '1234', '0345', '1345'], '875_8_4_3': ['0234', '1234', '2345'], '876_8_4_2': ['0234', '1234'], '878_8_4_20': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '0237', '1237', '0347', '1347', '0357', '1357', '0267', '1267', '0467', '1467', '0567', '1567'], '879_8_4_16': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '0247', '1247', '2347', '0457', '1457', '3457', '2467', '4567'], '880_8_4_18': ['0234', '1234', '0345', '1345', '2346', '3456', '0237', '1237', '0247', '1247', '0357', '1357', '0457', '1457', '2367', '2467', '3567', '4567'], '881_8_4_15': ['0234', '1234', '0345', '1345', '2346', '3456', '0247', '1247', '0347', '1347', '0457', '1457', '2467', '3467', '4567'], '882_8_4_14': ['0234', '1234', '0345', '1345', '2346', '3456', '0247', '1247', '2347', '0457', '1457', '3457', '2467', '4567'], '883_8_4_11': ['0234', '1234', '0345', '1345', '2346', '3456', '0347', '1347', '2347', '3457', '3467'], '884_8_4_12': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456', '0347', '1347', '2347', '3457'], '885_8_4_12': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '2347', '2457', '3457'], '886_8_4_9': ['0234', '1234', '2345', '2346', '0347', '1347', '2347', '3457', '3467'], '887_8_4_12': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456'], '888_8_4_10': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456'], '889_8_4_8': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456'], '890_8_4_9': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456'], '891_8_4_7': ['0234', '1234', '2345', '0346', '1346', '2346', '3456'], '892_8_4_6': ['0234', '1234', '0245', '1245', '0345', '1345'], '893_8_4_5': ['0234', '1234', '0235', '1235', '2345'], '894_8_4_3': ['0123', '0134', '1234'], '895_8_4_24': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '0237', '1237', '0247', '1247', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '2467', '0567', '1567', '4567'], '896_8_4_20': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0467', '1467', '2467', '4567'], '897_8_4_21': ['0234', '1234', '0345', '1345', '2346', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0357', '1357', '0457', '1457', '2367', '2467', '3467', '3567', '4567'], '898_8_4_20': ['0234', '1234', '0345', '1345', '2346', '3456', '0237', '1237', '0247', '1247', '2347', '0357', '1357', '0457', '1457', '3457', '2367', '2467', '3567', '4567'], '899_8_4_17': ['0234', '1234', '0345', '1345', '2346', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '2467', '3467', '4567'], '900_8_4_16': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456', '2347', '2367', '2467', '3467'], '901_8_4_13': ['0234', '1234', '2345', '2346', '0247', '1247', '0347', '1347', '2347', '2457', '3457', '2467', '3467'], '902_8_4_14': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456'], '903_8_4_12': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456'], '904_8_4_12': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456'], '905_8_4_10': ['0234', '1234', '2345', '0246', '1246', '0346', '1346', '2346', '2456', '3456'], '906_8_4_8': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345'], '907_8_4_7': ['0234', '1234', '0245', '1245', '0345', '1345', '2345'], '908_8_4_4': ['0123', '0124', '0234', '1234'], '909_8_4_28': ['0234', '1234', '0345', '1345', '0246', '1246', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0467', '1467', '2467', '0567', '1567', '4567'], '910_8_4_23': ['0234', '1234', '0345', '1345', '2346', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '2367', '2467', '3467', '3567', '4567'], '911_8_4_17': ['0234', '1234', '2345', '2346', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '2357', '2457', '3457', '2367', '2467', '3467'], '912_8_4_16': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0356', '1356', '0456', '1456', '3456'], '913_8_4_13': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '2356', '2456', '3456'], '914_8_4_9': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '2345'], '915_8_4_5': ['0123', '0124', '0134', '0234', '1234'], '916_8_4_24': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0357', '1357', '0457', '1457', '0267', '1267', '0567', '1567'], '917_8_4_18': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0247', '1247', '2347', '0457', '1457', '3457', '2467', '4567'], '918_8_4_13': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456', '0347', '1347', '2347', '3457', '3467'], '919_8_4_18': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0247', '1247', '0347', '1347', '0457', '1457', '2467', '3467', '4567'], '920_8_4_12': ['0234', '1234', '2345', '0346', '1346', '2346', '3456', '0347', '1347', '2347', '3457', '3467'], '921_8_4_12': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '0456', '1456'], '922_8_4_9': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '2346', '2356'], '923_8_4_6': ['0123', '0134', '1234', '0135', '1235', '1345'], '924_8_4_24': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456', '0347', '1347', '2347', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3567', '4567'], '925_8_4_25': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0237', '1237', '0347', '1347', '0357', '1357', '0267', '1267', '2367', '0467', '1467', '3467', '0567', '1567', '3567'], '926_8_4_21': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0237', '1237', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '2367', '2567', '3567'], '927_8_4_15': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456'], '928_8_4_9': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345'], '929_8_4_26': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456', '0247', '1247', '2347', '0457', '1457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '3567', '4567'], '930_8_4_24': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0237', '1237', '2347', '0357', '1357', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '3567', '4567'], '931_8_4_21': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0247', '1247', '0347', '1347', '0457', '1457', '0467', '1467', '2467', '3467', '4567'], '932_8_4_19': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0347', '1347', '2347', '3457', '0467', '1467', '2467', '3467', '4567'], '933_8_4_20': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0467', '1467', '2467', '4567'], '934_8_4_24': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '2347', '2457', '3457', '2367', '3467', '2567', '3567', '4567'], '935_8_4_18': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '3467', '4567'], '936_8_4_16': ['0234', '1234', '2345', '0346', '1346', '2346', '3456', '0247', '1247', '2347', '2457', '0467', '1467', '2467', '3467', '4567'], '937_8_4_16': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456'], '938_8_4_13': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456'], '939_8_4_12': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456'], '940_8_4_8': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345'], '941_8_4_30': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '3567', '4567'], '942_8_4_28': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '3567', '4567'], '943_8_4_23': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0467', '1467', '2467', '3467', '4567'], '944_8_4_21': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0467', '1467', '2467', '3467', '4567'], '945_8_4_24': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '3457', '0367', '1367', '2367', '3567'], '946_8_4_27': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '2367', '2467', '3467', '2567', '3567', '4567'], '947_8_4_21': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '2467', '3467', '4567'], '948_8_4_19': ['0234', '1234', '2345', '0346', '1346', '2346', '3456', '0247', '1247', '0347', '1347', '2347', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '949_8_4_18': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456'], '950_8_4_15': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456'], '951_8_4_14': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456'], '952_8_4_9': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345'], '953_8_4_32': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '954_8_4_31': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0357', '1357', '0457', '1457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '955_8_4_29': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '956_8_4_27': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456', '0347', '1347', '2347', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '3567', '4567'], '957_8_4_28': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3567', '4567'], '958_8_4_27': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '2367', '2467', '2567', '3567', '4567'], '959_8_4_25': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456', '0247', '1247', '2347', '2457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '960_8_4_23': ['0234', '1234', '2345', '0346', '1346', '2346', '3456', '0237', '1237', '0247', '1247', '2347', '2357', '2457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '3567', '4567'], '961_8_4_19': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456'], '962_8_4_18': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456'], '963_8_4_17': ['0234', '1234', '0235', '1235', '2345', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456'], '964_8_4_11': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345'], '965_8_4_36': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '966_8_4_33': ['0234', '1234', '0345', '1345', '0246', '1246', '2346', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '967_8_4_29': ['0234', '1234', '0345', '1345', '0346', '1346', '2346', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '3567', '4567'], '968_8_4_30': ['0234', '1234', '0245', '1245', '0345', '1345', '2346', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '2367', '2467', '3467', '2567', '3567', '4567'], '969_8_4_26': ['0234', '1234', '2345', '0346', '1346', '2346', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '2357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '3567', '4567'], '970_8_4_21': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456'], '971_8_4_19': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456'], '972_8_4_12': ['0123', '0134', '1234', '0125', '0135', '0235', '1235', '0145', '1245', '0345', '1345', '2345'], '973_8_4_33': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0357', '1357', '0457', '1457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '3567', '4567'], '974_8_4_32': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '3567', '4567'], '975_8_4_32': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '976_8_4_25': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '3457', '0367', '1367', '2367', '3467', '3567'], '977_8_4_30': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2567', '3567', '4567'], '978_8_4_28': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '2567', '3567'], '979_8_4_22': ['0234', '1234', '2345', '0246', '1246', '0346', '1346', '2346', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '980_8_4_20': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '981_8_4_20': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456'], '982_8_4_16': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456'], '983_8_4_12': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345'], '984_8_4_10': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345'], '985_8_4_37': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '986_8_4_35': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '987_8_4_36': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '988_8_4_33': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '989_8_4_31': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '990_8_4_29': ['0234', '1234', '2345', '0246', '1246', '0346', '1346', '2346', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '2357', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '991_8_4_22': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '992_8_4_21': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456'], '993_8_4_13': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345'], '994_8_4_39': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '995_8_4_37': ['0234', '1234', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '996_8_4_40': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '997_8_4_34': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '998_8_4_32': ['0234', '1234', '2345', '0246', '1246', '0346', '1346', '2346', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '999_8_4_24': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1000_8_4_23': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1001_8_4_14': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345'], '1002_8_4_41': ['0234', '1234', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0356', '1356', '0456', '1456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1003_8_4_35': ['0234', '1234', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1004_8_4_25': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1005_8_4_15': ['0123', '0124', '0134', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345'], '1006_8_4_20': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '0456', '1456', '0247', '1247', '0347', '1347', '0457', '1457', '0467', '1467'], '1007_8_4_14': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '2346', '2356', '0237', '1237', '2347', '2357', '2367'], '1008_8_4_10': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '1236', '1346', '1356'], '1009_8_4_32': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0267', '1267', '0467', '1467', '0567', '1567'], '1010_8_4_24': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '2457', '3457', '0467', '1467', '2467', '4567'], '1011_8_4_16': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356'], '1012_8_4_30': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456', '0247', '1247', '0347', '1347', '0457', '1457', '0267', '1267', '0367', '1367', '2467', '3467', '0567', '1567', '4567'], '1013_8_4_27': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456', '0237', '1237', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '2367', '2567', '3567'], '1014_8_4_18': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '0456', '2456'], '1015_8_4_30': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0247', '1247', '0347', '1347', '0457', '1457', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567'], '1016_8_4_24': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '0457', '1457', '0467', '1467', '2467', '3467', '4567'], '1017_8_4_22': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '3467', '4567'], '1018_8_4_21': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '3467', '3567'], '1019_8_4_15': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456'], '1020_8_4_34': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567'], '1021_8_4_34': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0367', '1367', '2367', '3467', '0567', '1567', '2567', '3567', '4567'], '1022_8_4_26': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '2467', '4567'], '1023_8_4_33': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '0567', '1567', '2567', '3567'], '1024_8_4_25': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '1025_8_4_31': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0367', '1367', '2367', '3467', '0567', '1567', '2567', '3567', '4567'], '1026_8_4_21': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456'], '1027_8_4_17': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456'], '1028_8_4_32': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '3467', '0567', '1567', '2567', '3567', '4567'], '1029_8_4_28': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0247', '1247', '2347', '0257', '1257', '2357', '2457', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1030_8_4_20': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456'], '1031_8_4_32': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567'], '1032_8_4_26': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '0456', '1456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '1033_8_4_23': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '2346', '2356', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1034_8_4_16': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456'], '1035_8_4_36': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '0456', '1456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '4567'], '1036_8_4_31': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '2347', '2357', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '2567', '3567'], '1037_8_4_30': ['0234', '1234', '0235', '1235', '2345', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '2347', '2357', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '2567', '3567'], '1038_8_4_21': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '1236', '1346', '0156', '1256', '0356', '1356', '2356', '1456', '3456'], '1039_8_4_38': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '4567'], '1040_8_4_32': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '2346', '2356', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '2567', '3567'], '1041_8_4_22': ['0123', '0134', '1234', '0135', '1235', '1345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '1256', '0356', '1356', '2356', '1456', '3456'], '1042_8_4_40': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1043_8_4_36': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567'], '1044_8_4_37': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1045_8_4_27': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '1046_8_4_36': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '0567', '1567'], '1047_8_4_28': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '3467', '4567'], '1048_8_4_27': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '2467', '3467', '4567'], '1049_8_4_36': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1050_8_4_26': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1051_8_4_24': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456'], '1052_8_4_18': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456'], '1053_8_4_18': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '2356', '3456'], '1054_8_4_39': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1055_8_4_37': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '2567', '3567', '4567'], '1056_8_4_36': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1057_8_4_39': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '0567', '1567', '2567', '3567'], '1058_8_4_24': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456'], '1059_8_4_38': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1060_8_4_37': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1061_8_4_35': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '3467', '0567', '1567', '2567', '3567', '4567'], '1062_8_4_33': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '2357', '2457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1063_8_4_23': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456'], '1064_8_4_42': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1065_8_4_39': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1066_8_4_38': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1067_8_4_37': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1068_8_4_25': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1069_8_4_42': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '2346', '0256', '1256', '0356', '1356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1070_8_4_45': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0567', '1567', '2567', '3567'], '1071_8_4_27': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456'], '1072_8_4_44': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1073_8_4_40': ['0234', '1234', '0245', '1245', '0345', '1345', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1074_8_4_38': ['0234', '1234', '0235', '1235', '2345', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1075_8_4_26': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1076_8_4_38': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567'], '1077_8_4_29': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '1078_8_4_28': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1079_8_4_19': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456'], '1080_8_4_39': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1081_8_4_36': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '2357', '2457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1082_8_4_24': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456'], '1083_8_4_41': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1084_8_4_43': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '4567'], '1085_8_4_40': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '2567', '3567'], '1086_8_4_39': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '2567', '3567'], '1087_8_4_26': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1088_8_4_45': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1089_8_4_44': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1090_8_4_41': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0367', '1367', '2367', '3467', '0567', '1567', '2567', '3567', '4567'], '1091_8_4_43': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1092_8_4_42': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567', '2567', '3567', '4567'], '1093_8_4_38': ['0234', '1234', '0235', '1235', '2345', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1094_8_4_28': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1095_8_4_26': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456'], '1096_8_4_41': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1097_8_4_37': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '2357', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1098_8_4_25': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1099_8_4_45': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1100_8_4_42': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1101_8_4_45': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1102_8_4_43': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1103_8_4_42': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1104_8_4_41': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '2357', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1105_8_4_40': ['0234', '1234', '0235', '1235', '2345', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1106_8_4_41': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1107_8_4_27': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1108_8_4_27': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456'], '1109_8_4_47': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1110_8_4_46': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1111_8_4_45': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1112_8_4_44': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1113_8_4_29': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1114_8_4_47': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1115_8_4_44': ['0234', '1234', '0245', '1245', '0345', '1345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1116_8_4_42': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1117_8_4_28': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1118_8_4_48': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1119_8_4_49': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1120_8_4_48': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1121_8_4_46': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1122_8_4_45': ['0234', '1234', '0235', '1235', '2345', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1123_8_4_46': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1124_8_4_30': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1125_8_4_30': ['0123', '0134', '1234', '0125', '0135', '0235', '1235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456'], '1126_8_4_50': ['0234', '1234', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1127_8_4_47': ['0234', '1234', '0235', '1235', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1128_8_4_31': ['0123', '0134', '1234', '0125', '0135', '0235', '1235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1129_8_4_44': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1130_8_4_28': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '0156', '0256', '1256', '1356', '2356', '0456', '2456', '3456'], '1131_8_4_40': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '0467', '1467', '0567', '1567'], '1132_8_4_30': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0467', '1467', '2467', '3467', '4567'], '1133_8_4_20': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345', '0126', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '2356', '2456'], '1134_8_4_46': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1135_8_4_45': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1136_8_4_29': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456'], '1137_8_4_48': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1138_8_4_48': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1139_8_4_47': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1140_8_4_47': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1141_8_4_44': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '3567', '4567'], '1142_8_4_46': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1143_8_4_43': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '2567', '3567', '4567'], '1144_8_4_46': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1145_8_4_30': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456'], '1146_8_4_28': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456'], '1147_8_4_30': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1148_8_4_50': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1149_8_4_49': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1150_8_4_49': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1151_8_4_49': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1152_8_4_49': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1153_8_4_48': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1154_8_4_48': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1155_8_4_48': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '0257', '1257', '0357', '1357', '0457', '1457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1156_8_4_45': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '2467', '0567', '1567', '2567', '3567', '4567'], '1157_8_4_47': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1158_8_4_44': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0247', '1247', '0347', '1347', '2347', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1159_8_4_31': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1160_8_4_31': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1161_8_4_31': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1162_8_4_29': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456'], '1163_8_4_51': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1164_8_4_51': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1165_8_4_50': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1166_8_4_50': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1167_8_4_50': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1168_8_4_50': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1169_8_4_50': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '0256', '1256', '0356', '1356', '0456', '1456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1170_8_4_52': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1171_8_4_49': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1172_8_4_46': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0246', '1246', '0346', '1346', '2346', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1173_8_4_32': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1174_8_4_32': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1175_8_4_32': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1176_8_4_30': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1177_8_4_52': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1178_8_4_53': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1179_8_4_52': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1180_8_4_51': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1181_8_4_51': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1182_8_4_33': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1183_8_4_33': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1184_8_4_54': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1185_8_4_53': ['0234', '1234', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1186_8_4_34': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1187_8_4_55': ['0234', '1234', '0235', '1235', '0245', '1245', '0345', '1345', '2345', '0236', '1236', '0246', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1188_8_4_35': ['0123', '0124', '0134', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456'], '1189_8_4_28': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0137', '0237', '1237', '0347', '2347', '0357', '1357', '3457', '1367', '2367', '3467', '3567'], '1190_8_4_15': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '1236', '1346', '1356', '0137', '1237', '1347', '1357', '1367'], '1191_8_4_29': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '2347', '0357', '1357', '3457', '1367', '2367', '3467', '3567'], '1192_8_4_30': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '0456', '2456', '0127', '0237', '0147', '1247', '0347', '2347', '0257', '0457', '2457', '0267', '0467', '2467'], '1193_8_4_28': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '0347', '1347', '2347', '0357', '1357', '2357', '0367', '3467', '3567'], '1194_8_4_24': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0237', '1237', '0347', '1347', '2347', '2357', '3457', '2367', '3467'], '1195_8_4_36': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '0456', '2456', '0137', '1237', '1347', '0157', '1257', '0357', '2357', '1457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '2567', '4567'], '1196_8_4_40': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '0347', '1347', '2347', '0357', '1357', '2357', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1197_8_4_30': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '2347', '0357', '1357', '3457', '0367', '1367', '2367', '3467', '3567'], '1198_8_4_30': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467'], '1199_8_4_27': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0137', '1237', '1347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1200_8_4_39': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0137', '1237', '1347', '0357', '1357', '2357', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1201_8_4_29': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '1237', '1347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1202_8_4_25': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '1236', '1346', '1356', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1203_8_4_37': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '2357', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '1204_8_4_36': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0237', '1237', '0347', '1347', '2347', '2357', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '1205_8_4_34': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '1236', '1346', '0156', '1256', '0356', '1356', '2356', '1456', '3456', '0137', '1237', '1347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '1367', '1567', '3567'], '1206_8_4_35': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '1236', '1346', '1356', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '1567', '3567'], '1207_8_4_44': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1208_8_4_45': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '2367', '0467', '2467', '0567', '1567', '3567', '4567'], '1209_8_4_31': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1210_8_4_31': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '0367', '1367', '2367', '3467', '3567'], '1211_8_4_31': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1212_8_4_43': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1213_8_4_45': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1214_8_4_42': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1215_8_4_46': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '2367', '0467', '2467', '0567', '1567', '2567', '3567', '4567'], '1216_8_4_44': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1217_8_4_46': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1218_8_4_47': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1219_8_4_30': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1220_8_4_30': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '2367', '3467', '3567'], '1221_8_4_42': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '0456', '2456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '1222_8_4_43': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1223_8_4_45': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '0456', '2456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1224_8_4_39': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '1225_8_4_42': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1226_8_4_44': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1227_8_4_48': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '0456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1228_8_4_45': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0236', '1236', '0346', '1346', '2346', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1229_8_4_48': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1230_8_4_46': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1231_8_4_32': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1232_8_4_48': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '0467', '1467', '2467', '0567', '1567', '2567'], '1233_8_4_32': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '1367', '2367', '3467', '3567'], '1234_8_4_32': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '2367', '3467', '3567'], '1235_8_4_49': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1236_8_4_49': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '2467', '0567', '1567', '2567', '3567', '4567'], '1237_8_4_45': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1238_8_4_46': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0467', '1467', '2467', '0567', '1567', '2567', '4567'], '1239_8_4_51': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1240_8_4_45': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '1241_8_4_47': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1242_8_4_47': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1243_8_4_45': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0467', '1467', '2467', '2567', '4567'], '1244_8_4_50': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1245_8_4_50': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1246_8_4_44': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1247_8_4_51': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0467', '1467', '2467', '0567', '1567', '2567', '4567'], '1248_8_4_50': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '2467', '0567', '1567', '2567', '3567', '4567'], '1249_8_4_46': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1250_8_4_52': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1251_8_4_48': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1252_8_4_48': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1253_8_4_51': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1254_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0467', '1467', '2467', '0567', '1567', '2567', '4567'], '1255_8_4_53': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '0146', '1246', '0346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1256_8_4_49': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1257_8_4_52': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '1236', '0146', '1246', '1346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1258_8_4_31': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1259_8_4_40': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '1257', '1357', '1457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1260_8_4_49': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '1237', '1347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1261_8_4_45': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '1237', '1347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1262_8_4_41': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '1257', '1357', '1457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1263_8_4_50': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '1237', '1347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1264_8_4_48': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '1236', '1346', '0156', '1256', '0356', '1356', '2356', '1456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1265_8_4_46': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '1236', '1346', '0156', '1256', '0356', '1356', '2356', '1456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1266_8_4_46': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1267_8_4_51': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '1237', '1347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1268_8_4_47': ['0123', '0134', '1234', '0135', '1235', '1345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1269_8_4_52': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '1236', '1346', '0156', '1256', '0356', '1356', '2356', '1456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1270_8_4_52': ['0123', '0134', '1234', '0135', '1235', '1345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '1256', '0356', '1356', '2356', '1456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1271_8_4_53': ['0123', '0134', '1234', '0135', '1235', '1345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '1256', '0356', '1356', '2356', '1456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1272_8_4_33': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1273_8_4_33': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1274_8_4_52': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1275_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1276_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1277_8_4_48': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1278_8_4_52': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '2457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1279_8_4_48': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '1467', '0567', '1567', '2567', '4567'], '1280_8_4_51': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1281_8_4_45': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '2356', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1282_8_4_53': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1283_8_4_53': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '2567', '3567', '4567'], '1284_8_4_47': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1285_8_4_51': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1286_8_4_48': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1287_8_4_55': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1288_8_4_55': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1289_8_4_55': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1290_8_4_53': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1291_8_4_49': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1292_8_4_49': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1293_8_4_55': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1294_8_4_49': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1295_8_4_47': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '2367', '0467', '1467', '2467', '3467', '2567', '4567'], '1296_8_4_53': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1297_8_4_53': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '2457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1298_8_4_49': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1467', '0567', '1567', '2567', '4567'], '1299_8_4_52': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1300_8_4_55': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1301_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1302_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1303_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1304_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1305_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1306_8_4_48': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1307_8_4_57': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1308_8_4_48': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '2356', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1309_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1310_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1311_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1312_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1313_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1314_8_4_54': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1315_8_4_50': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1316_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1317_8_4_50': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1318_8_4_50': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1319_8_4_54': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1320_8_4_54': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '2457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1321_8_4_54': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1322_8_4_54': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '2567', '4567'], '1323_8_4_50': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1467', '0567', '1567', '2567', '4567'], '1324_8_4_53': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1325_8_4_56': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1326_8_4_55': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1327_8_4_55': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1328_8_4_58': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1329_8_4_57': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1330_8_4_57': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1331_8_4_57': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1332_8_4_57': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1333_8_4_57': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1334_8_4_51': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1335_8_4_51': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1336_8_4_57': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1337_8_4_57': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1338_8_4_56': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1339_8_4_59': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1340_8_4_58': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1341_8_4_58': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1342_8_4_58': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1343_8_4_60': ['0123', '0134', '1234', '0125', '0235', '0145', '1245', '0345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1344_8_4_59': ['0123', '0134', '1234', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1345_8_4_34': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0367', '1367', '2367', '3467', '3567'], '1346_8_4_54': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1347_8_4_54': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '4567'], '1348_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1349_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1350_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1351_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1352_8_4_50': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1353_8_4_55': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1354_8_4_55': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1355_8_4_55': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1356_8_4_55': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1357_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1358_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1359_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1360_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1361_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '4567'], '1362_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1363_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1364_8_4_55': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1365_8_4_50': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '4567'], '1366_8_4_49': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1367_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1368_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1369_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1370_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1371_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1372_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1373_8_4_51': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1374_8_4_51': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '2567', '3567', '4567'], '1375_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1376_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1377_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1378_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1379_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1380_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1381_8_4_54': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '2567', '4567'], '1382_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1383_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1384_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1385_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1386_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1387_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1388_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1389_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1390_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1391_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1392_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1393_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1394_8_4_56': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1395_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1396_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1397_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1398_8_4_50': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1399_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1400_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1401_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1402_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1403_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1404_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1405_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1406_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1407_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '4567'], '1408_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1409_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1410_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1411_8_4_52': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '1367', '1467', '0567', '1567', '2567', '3567', '4567'], '1412_8_4_52': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0357', '1357', '2357', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1413_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1414_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1415_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1416_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1417_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1418_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1419_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1420_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1421_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1422_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1423_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1424_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1425_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1426_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1427_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1428_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1429_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1430_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1431_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1432_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1433_8_4_57': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1434_8_4_57': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1435_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1436_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1437_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1438_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1439_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1440_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1441_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1442_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1443_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1444_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1445_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1446_8_4_59': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1447_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1448_8_4_53': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0136', '0236', '1236', '0346', '1346', '2346', '0356', '1356', '2356', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1449_8_4_58': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1450_8_4_58': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1451_8_4_58': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1452_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1453_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '1247', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1454_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1455_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1456_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1457_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1458_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1459_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1460_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1461_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1462_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1463_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1464_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1465_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1466_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1467_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1468_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1469_8_4_62': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1470_8_4_60': ['0123', '0134', '1234', '0125', '0135', '0235', '1235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '4567'], '1471_8_4_59': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1472_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '1246', '1346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1473_8_4_61': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1474_8_4_61': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1475_8_4_61': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1476_8_4_63': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1477_8_4_63': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1478_8_4_63': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1479_8_4_63': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1480_8_4_62': ['0123', '0134', '1234', '0135', '0235', '1235', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1481_8_4_64': ['0123', '0134', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1482_8_4_64': ['0123', '0134', '1234', '0125', '0135', '0235', '1235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1483_8_4_65': ['0123', '0134', '1234', '0125', '0135', '0235', '1235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1484_8_4_56': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '0156', '0256', '1256', '1356', '2356', '0456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1485_8_4_57': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1486_8_4_58': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1487_8_4_58': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1488_8_4_35': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345', '0126', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '2356', '2456', '0127', '0237', '1237', '0247', '1247', '2347', '0257', '1257', '2357', '2457', '0267', '1267', '2367', '2467', '2567'], '1489_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1490_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1491_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1492_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1493_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1494_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1495_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1496_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1497_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1498_8_4_58': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1499_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1500_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1501_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1502_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1503_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1504_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1505_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1506_8_4_52': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '1457', '2457', '3457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '4567'], '1507_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1508_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1509_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1510_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1511_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1512_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1513_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1514_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1515_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1516_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '2567', '3567', '4567'], '1517_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1518_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1519_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1520_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1521_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1522_8_4_57': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1523_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1524_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1525_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1526_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1527_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1528_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1529_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1530_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1531_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1532_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1533_8_4_53': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '4567'], '1534_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1535_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1536_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1537_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1538_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1539_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1540_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1541_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1542_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1543_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1544_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1545_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1546_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1547_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1548_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1549_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1550_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1551_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1552_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1553_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1554_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1555_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1556_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1557_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1558_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1559_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1560_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1561_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1562_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '4567'], '1563_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1564_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1565_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1566_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1567_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1568_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1569_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1570_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1571_8_4_58': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1572_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1573_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1574_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1575_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1576_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1577_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1578_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1579_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1580_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1581_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1582_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1583_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1584_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1585_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1586_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1587_8_4_54': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '0467', '1467', '2467', '3467', '0567', '4567'], '1588_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1589_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1590_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1591_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1592_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1593_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1594_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1595_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1596_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1597_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '3567', '4567'], '1598_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '4567'], '1599_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '2567', '3567', '4567'], '1600_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1601_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1602_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1603_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1604_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1605_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1606_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1607_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1608_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1609_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1610_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '1567', '2567', '3567', '4567'], '1611_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '3567', '4567'], '1612_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1613_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1614_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1615_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1616_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1617_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1618_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1619_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1620_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1621_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '4567'], '1622_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1623_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1624_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1625_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1626_8_4_59': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1627_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1628_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1629_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1630_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1631_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1632_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1633_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1634_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1635_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1636_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1637_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1638_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1639_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1640_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1641_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1642_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1643_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1644_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1645_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1646_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1647_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1648_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1649_8_4_61': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1650_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1651_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1652_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1653_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1654_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1655_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1656_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1657_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1658_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1659_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1660_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1661_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1662_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1663_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '0156', '0256', '1256', '1356', '2356', '0456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1664_8_4_55': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345', '0126', '0236', '1236', '0246', '1246', '2346', '0256', '1256', '2356', '2456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1665_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1666_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1667_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1668_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1669_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1670_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1671_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1672_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1673_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1674_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1675_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1676_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1677_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1678_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1679_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1680_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1681_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1682_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1683_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1684_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1685_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1686_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1687_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1688_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1689_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1690_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1691_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1692_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1693_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1694_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1695_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1696_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1697_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1698_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1699_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1700_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1701_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '2567', '3567', '4567'], '1702_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1703_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1704_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1705_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1706_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1707_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1708_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1709_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1710_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1711_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1712_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1713_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1714_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1715_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '2567', '3567', '4567'], '1716_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1717_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1718_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1719_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1720_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1721_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1722_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1723_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1724_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1725_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '3467', '0567', '1567', '2567', '3567', '4567'], '1726_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1727_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1728_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1729_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1730_8_4_62': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '0357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1731_8_4_60': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1732_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1733_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1734_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1735_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1736_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1737_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1738_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1739_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1740_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1741_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1742_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1743_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1744_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1745_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1746_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1747_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1748_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '4567'], '1749_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1750_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1751_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1752_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1753_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1754_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '1467', '3467', '0567', '1567', '2567', '3567', '4567'], '1755_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1756_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1757_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1758_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1759_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1760_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1761_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1762_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1763_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1764_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1765_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1766_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1767_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1768_8_4_63': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0237', '1237', '0247', '1247', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1769_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1770_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1771_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1772_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1773_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1774_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1775_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1776_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1777_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1778_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1779_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1780_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1781_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1782_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1783_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1784_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '1567', '2567', '3567', '4567'], '1785_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1786_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1787_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '0356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1788_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '0567', '1567', '2567', '3567', '4567'], '1789_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567'], '1790_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1791_8_4_66': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1792_8_4_64': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1793_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1794_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1795_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1796_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1797_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1798_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1799_8_4_67': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1800_8_4_65': ['0123', '0124', '0234', '1234', '0125', '0235', '1235', '0245', '1245', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1801_8_4_68': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1802_8_4_68': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1803_8_4_68': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '3567', '4567'], '1804_8_4_69': ['0123', '0124', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567'], '1805_8_4_70': ['0123', '0124', '0134', '0234', '1234', '0125', '0135', '0235', '1235', '0145', '0245', '1245', '0345', '1345', '2345', '0126', '0136', '0236', '1236', '0146', '0246', '1246', '0346', '1346', '2346', '0156', '0256', '1256', '0356', '1356', '2356', '0456', '1456', '2456', '3456', '0127', '0137', '0237', '1237', '0147', '0247', '1247', '0347', '1347', '2347', '0157', '0257', '1257', '0357', '1357', '2357', '0457', '1457', '2457', '3457', '0167', '0267', '1267', '0367', '1367', '2367', '0467', '1467', '2467', '3467', '0567', '1567', '2567', '3567', '4567']}
# max_contiguous_sum([-2, -3, 4, -1, -2, 1, 5, -3]) -> 7 def max_contiguous_sum(numbers: list) -> int: highest = numbers[0] local_highest = highest for index, x in enumerate(numbers[1:]): local_highest += x if x > local_highest: local_highest = x if local_highest > highest: highest = local_highest return highest def max_contiguous_sub_array(numbers: list) -> list: i, f = 0, 1 highest = numbers[0] local_highest = highest for index, x in enumerate(numbers[1:]): index += 1 local_highest += x if x > local_highest: local_highest = x i = index if local_highest > highest: highest = local_highest f = index + 1 return numbers[i:f]
def max_contiguous_sum(numbers: list) -> int: highest = numbers[0] local_highest = highest for (index, x) in enumerate(numbers[1:]): local_highest += x if x > local_highest: local_highest = x if local_highest > highest: highest = local_highest return highest def max_contiguous_sub_array(numbers: list) -> list: (i, f) = (0, 1) highest = numbers[0] local_highest = highest for (index, x) in enumerate(numbers[1:]): index += 1 local_highest += x if x > local_highest: local_highest = x i = index if local_highest > highest: highest = local_highest f = index + 1 return numbers[i:f]
CANONICAL_FORMS = { "no_relation": ["NR"], "org:founded_by": ["{obj}, founder of {subj}.", "{obj}, who established {subj}.", "{subj}, founded by {obj}.", "{obj} was the founder of {subj}.", "{subj} founder {obj}."], "per:employee_of": ["{subj} is an employee of {obj}.", "{subj}, member of {obj}.", "{subj} is a member of {obj}.", "{subj} joined {obj}.", "{subj}, spokeman of {obj}."], "org:alternate_names": ["{subj} known as {obj}.", "{subj}, formally known as {obj}.", "{subj}, then called {obj}.", "Called {subj} or {obj}."], "per:cities_of_residence": ["{subj} lived in {obj}.", "{subj} moved to {obj}.", "{subj}'s home in {obj}.", "{subj} grew up in {obj}.", "{subj} who lived in {obj}."], "per:children": ["{subj}'s child is {obj}.", "{subj}'s daughter is {obj}.", "{subj} has given birth to a son, {obj}."], "per:title": ["{subj} is a {obj}."], "per:siblings": ["{subj}'s sibling is {obj}.", "{subj}'s sister, {obj}.", "{obj}, {subj}'s brother."], "per:religion": ["{subj}, a {obj}.", "{subj}, a {obj} minister.", "{subj} minister {obj}."], "per:age": ["{subj} is {obj} years old.", "{subj} dies at age {obj}.", "{subj}, aged {obj}.", "{subj} reached the age of {obj}."], "org:website": ["Find {subj} online in {obj}."], "per:stateorprovinces_of_residence": ["{subj} lived in {obj}.", "{subj} moved to {obj}.", "{subj}'s home in {obj}.", "{subj} grew up in {obj}.", "{subj} who lived in {obj}."], "org:member_of": ["{subj} is part of {obj}.", "{subj} has join the {obj}.", "{subj} is a member of {obj}.", "{obj} is composed of {subj}."], "org:top_members/employees": ["{obj} is the head of {subj}.", "{subj} CEO {obj}.", "{obj}, the CEO of {subj}.", "{obj}, {subj}'s president.", "{obj}, president of {subj}.", "{obj} heads {subj}."], "per:countries_of_residence": ["{subj} lived in {obj}.", "{subj} moved to {obj}.", "{subj}'s home in {obj}.", "{subj} grew up in {obj}.", "{subj} who lived in {obj}."], "org:city_of_headquarters": ["{subj}, based in {obj}.", "{subj} is headquartered in {obj}.", "{subj}, an organization based in {obj}.", "{subj}, which is based in {obj}."], "org:members": ["{obj} is part of {subj}.", "{obj} has join the {subj}.", "{obj} is a member of {subj}.", "{subj} is composed of {obj}."], "org:country_of_headquarters": ["{subj}, based in {obj}.", "{subj}, based in Dublin, {obj}.", "{subj} is headquartered in {obj}.", "{subj}, an organization based in {obj}.", "{subj}, which is based in {obj}."], "per:spouse": ["{subj} is married to {obj}.", "{subj} married {obj}.", "{subj}'s wife {obj}.", "{subj} and her husband {obj}."], "org:stateorprovince_of_headquarters": ["{subj}, based in {obj}.", "{subj}, based in Seattle, {obj}.", "{subj} is headquartered in {obj}.", "{subj}, an organization based in {obj}.", "{subj}, which is based in {obj}."], "org:number_of_employees/members": ["{subj} employes {obj} workers.", "{subj} is an organization with {obj} employees.", "{subj} has {obj} employees."], "org:parents": ["{subj}, a unit of {obj}.", "{subj} at {obj}.", "{subj} is a division of {obj}.", "{subj} was sold to {obj}."], "org:subsidiaries": ["{obj}, a unit of {subj}.", "{obj} at {subj}.", "{obj} is a division of {subj}.", "{obj} was sold to {subj}."], "per:origin": ["{subj} is a {obj} native.", "{obj} {subj}.", "{subj} is a {obj}."], "org:political/religious_affiliation": ["{obj} group {subj}."], "per:other_family": ["{subj} and {obj} are family members.", "{subj}'s uncle {obj}.", "{subj}'s aunt {obj}.", "{subj}'s grandmother {obj}.", "{subj}'s grandfather {obj}.", "{subj}'s niece {obj}."], "per:stateorprovince_of_birth": ["{subj} was born in {obj}.", "{subj} was born on January 1st in {obj}.", "{subj} was born in London, {obj}."], "org:dissolved": ["{subj} was dissolved in {obj}.", "{subj} announced bankrupcy in {obj}."], "per:date_of_death": ["{subj} died in {obj}.", "{subj} died at his home in {obj}."], "org:shareholders": ["{obj} acquired some of {subj}.", "{obj} invested in {subj}.", "{subj}'s shareholder {obj}."], "per:alternate_names": ["{subj}, who was known as {obj}.", "{subj}, whose real name is {obj}.", "{subj}, then known as {obj}."], "per:parents": ["{obj} is {subj}'s parent.", "{subj}'s father, {obj}.", "{obj}, {subj}'s father.", "{obj}, mother of {subj}."], "per:schools_attended": ["{subj} graduated from {obj}.", "{subj} received a degree from {obj}.", "{subj} attended {obj}."], "per:cause_of_death": ["{subj} died of {obj}.", "{subj} died from {obj}."], "per:city_of_death": ["{subj} died in {obj}.", "{subj} died at his home in {obj}.", "{subj} died at Sunday in {obj}."], "per:stateorprovince_of_death": ["{subj} died in {obj}.", "{subj} died at his home in {obj}.", "{subj} died in London, {obj}.", "{subj} died at Sunday in {obj}."], "org:founded": ["{subj} was established in {obj}.", "Founded {subj} in {obj}.", "{subj}, established in {obj}.", "The founder founded {subj} in {obj}."], "per:country_of_birth": ["{subj} was born in {obj}.", "{subj} was born on January 1st in {obj}.", "{subj} was born in Berlin, {obj}."], "per:date_of_birth": ["{subj} was born in {obj}.", "{subj} was born on {obj}."], "per:city_of_birth": ["{subj} was born in {obj}.", "{subj} was born on January 1st in {obj}."], "per:charges": ["{subj} was convicted of {obj}.", "{subj} face {obj} among other charges."], "per:country_of_death": ["{subj} died in {obj}.", "{subj} died at his home in {obj}.", "{subj} died in London, {obj}.", "{subj} died at Sunday in {obj}."] }
canonical_forms = {'no_relation': ['NR'], 'org:founded_by': ['{obj}, founder of {subj}.', '{obj}, who established {subj}.', '{subj}, founded by {obj}.', '{obj} was the founder of {subj}.', '{subj} founder {obj}.'], 'per:employee_of': ['{subj} is an employee of {obj}.', '{subj}, member of {obj}.', '{subj} is a member of {obj}.', '{subj} joined {obj}.', '{subj}, spokeman of {obj}.'], 'org:alternate_names': ['{subj} known as {obj}.', '{subj}, formally known as {obj}.', '{subj}, then called {obj}.', 'Called {subj} or {obj}.'], 'per:cities_of_residence': ['{subj} lived in {obj}.', '{subj} moved to {obj}.', "{subj}'s home in {obj}.", '{subj} grew up in {obj}.', '{subj} who lived in {obj}.'], 'per:children': ["{subj}'s child is {obj}.", "{subj}'s daughter is {obj}.", '{subj} has given birth to a son, {obj}.'], 'per:title': ['{subj} is a {obj}.'], 'per:siblings': ["{subj}'s sibling is {obj}.", "{subj}'s sister, {obj}.", "{obj}, {subj}'s brother."], 'per:religion': ['{subj}, a {obj}.', '{subj}, a {obj} minister.', '{subj} minister {obj}.'], 'per:age': ['{subj} is {obj} years old.', '{subj} dies at age {obj}.', '{subj}, aged {obj}.', '{subj} reached the age of {obj}.'], 'org:website': ['Find {subj} online in {obj}.'], 'per:stateorprovinces_of_residence': ['{subj} lived in {obj}.', '{subj} moved to {obj}.', "{subj}'s home in {obj}.", '{subj} grew up in {obj}.', '{subj} who lived in {obj}.'], 'org:member_of': ['{subj} is part of {obj}.', '{subj} has join the {obj}.', '{subj} is a member of {obj}.', '{obj} is composed of {subj}.'], 'org:top_members/employees': ['{obj} is the head of {subj}.', '{subj} CEO {obj}.', '{obj}, the CEO of {subj}.', "{obj}, {subj}'s president.", '{obj}, president of {subj}.', '{obj} heads {subj}.'], 'per:countries_of_residence': ['{subj} lived in {obj}.', '{subj} moved to {obj}.', "{subj}'s home in {obj}.", '{subj} grew up in {obj}.', '{subj} who lived in {obj}.'], 'org:city_of_headquarters': ['{subj}, based in {obj}.', '{subj} is headquartered in {obj}.', '{subj}, an organization based in {obj}.', '{subj}, which is based in {obj}.'], 'org:members': ['{obj} is part of {subj}.', '{obj} has join the {subj}.', '{obj} is a member of {subj}.', '{subj} is composed of {obj}.'], 'org:country_of_headquarters': ['{subj}, based in {obj}.', '{subj}, based in Dublin, {obj}.', '{subj} is headquartered in {obj}.', '{subj}, an organization based in {obj}.', '{subj}, which is based in {obj}.'], 'per:spouse': ['{subj} is married to {obj}.', '{subj} married {obj}.', "{subj}'s wife {obj}.", '{subj} and her husband {obj}.'], 'org:stateorprovince_of_headquarters': ['{subj}, based in {obj}.', '{subj}, based in Seattle, {obj}.', '{subj} is headquartered in {obj}.', '{subj}, an organization based in {obj}.', '{subj}, which is based in {obj}.'], 'org:number_of_employees/members': ['{subj} employes {obj} workers.', '{subj} is an organization with {obj} employees.', '{subj} has {obj} employees.'], 'org:parents': ['{subj}, a unit of {obj}.', '{subj} at {obj}.', '{subj} is a division of {obj}.', '{subj} was sold to {obj}.'], 'org:subsidiaries': ['{obj}, a unit of {subj}.', '{obj} at {subj}.', '{obj} is a division of {subj}.', '{obj} was sold to {subj}.'], 'per:origin': ['{subj} is a {obj} native.', '{obj} {subj}.', '{subj} is a {obj}.'], 'org:political/religious_affiliation': ['{obj} group {subj}.'], 'per:other_family': ['{subj} and {obj} are family members.', "{subj}'s uncle {obj}.", "{subj}'s aunt {obj}.", "{subj}'s grandmother {obj}.", "{subj}'s grandfather {obj}.", "{subj}'s niece {obj}."], 'per:stateorprovince_of_birth': ['{subj} was born in {obj}.', '{subj} was born on January 1st in {obj}.', '{subj} was born in London, {obj}.'], 'org:dissolved': ['{subj} was dissolved in {obj}.', '{subj} announced bankrupcy in {obj}.'], 'per:date_of_death': ['{subj} died in {obj}.', '{subj} died at his home in {obj}.'], 'org:shareholders': ['{obj} acquired some of {subj}.', '{obj} invested in {subj}.', "{subj}'s shareholder {obj}."], 'per:alternate_names': ['{subj}, who was known as {obj}.', '{subj}, whose real name is {obj}.', '{subj}, then known as {obj}.'], 'per:parents': ["{obj} is {subj}'s parent.", "{subj}'s father, {obj}.", "{obj}, {subj}'s father.", '{obj}, mother of {subj}.'], 'per:schools_attended': ['{subj} graduated from {obj}.', '{subj} received a degree from {obj}.', '{subj} attended {obj}.'], 'per:cause_of_death': ['{subj} died of {obj}.', '{subj} died from {obj}.'], 'per:city_of_death': ['{subj} died in {obj}.', '{subj} died at his home in {obj}.', '{subj} died at Sunday in {obj}.'], 'per:stateorprovince_of_death': ['{subj} died in {obj}.', '{subj} died at his home in {obj}.', '{subj} died in London, {obj}.', '{subj} died at Sunday in {obj}.'], 'org:founded': ['{subj} was established in {obj}.', 'Founded {subj} in {obj}.', '{subj}, established in {obj}.', 'The founder founded {subj} in {obj}.'], 'per:country_of_birth': ['{subj} was born in {obj}.', '{subj} was born on January 1st in {obj}.', '{subj} was born in Berlin, {obj}.'], 'per:date_of_birth': ['{subj} was born in {obj}.', '{subj} was born on {obj}.'], 'per:city_of_birth': ['{subj} was born in {obj}.', '{subj} was born on January 1st in {obj}.'], 'per:charges': ['{subj} was convicted of {obj}.', '{subj} face {obj} among other charges.'], 'per:country_of_death': ['{subj} died in {obj}.', '{subj} died at his home in {obj}.', '{subj} died in London, {obj}.', '{subj} died at Sunday in {obj}.']}
n = int(input()) if n%5 == 0: print(int(n/5)) else: print(int(n/5)+1)
n = int(input()) if n % 5 == 0: print(int(n / 5)) else: print(int(n / 5) + 1)
"""""" """5. Busque e imprima el pais de Venezuela y su capital""" archivo = open("paises.txt", "r") lista = [] for i in archivo: lista.append(i) pc = " ".join(lista) if(pc == "Venezuela: Caracas\n"): break lista = [] print(pc) archivo.close()
"""""" '5. Busque e imprima el pais de Venezuela y su capital' archivo = open('paises.txt', 'r') lista = [] for i in archivo: lista.append(i) pc = ' '.join(lista) if pc == 'Venezuela: Caracas\n': break lista = [] print(pc) archivo.close()
class Solution(object): def intersection(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ s = set(nums1) ans = set() for num in nums2: if num in s: ans.add(num) return list(ans)
class Solution(object): def intersection(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] :rtype: List[int] """ s = set(nums1) ans = set() for num in nums2: if num in s: ans.add(num) return list(ans)
""" Package specific exceptions. """ class Ai1wmError(Exception): """ Exceptions raised from this package. """ pass
""" Package specific exceptions. """ class Ai1Wmerror(Exception): """ Exceptions raised from this package. """ pass
""" Defines the possible rewards for rollout. Can be augmented for more complex policies using simialr scheme as Rollout or UCT policies. Is defined through CLI in the Tree script. """ class RolloutRewards(object): """ Defines penalty and rewards for the rollout if it's in the chasis. """ def __init__(self, penalty, full_state_reward): self.penalty = penalty self.full_state_reward = full_state_reward def __repr__(self): """Reward representation is its values""" return("Penalty is {} and full state reward is {}".format(self.penalty, self.full_state_reward)) Basic_Rollout_Reward = RolloutRewards(penalty = -1, full_state_reward = 2)
""" Defines the possible rewards for rollout. Can be augmented for more complex policies using simialr scheme as Rollout or UCT policies. Is defined through CLI in the Tree script. """ class Rolloutrewards(object): """ Defines penalty and rewards for the rollout if it's in the chasis. """ def __init__(self, penalty, full_state_reward): self.penalty = penalty self.full_state_reward = full_state_reward def __repr__(self): """Reward representation is its values""" return 'Penalty is {} and full state reward is {}'.format(self.penalty, self.full_state_reward) basic__rollout__reward = rollout_rewards(penalty=-1, full_state_reward=2)
alph = 'abcdefghijklmnopqrstuvwxyz'[::-1] def getWinner(s1, s2): if ("no" in s1 or "no" in s2): return 0 if (not s1.isalpha() or not s2.isalpha()): return 0 for c in alph: c1 = s1.count(c) c2 = s2.count(c) if (c1 > c2): return 1 elif (c2 > c1): return 2 return 0 firstWordCount = 0 firstWord68th = "" with open("D:\\Work\\Repositories\\programmingContest\\programmingContest2Input1.txt") as file: for line in file: words = line.split() winner = getWinner(words[0], words[1]) if (winner == 1): firstWordCount = firstWordCount + 1 if (firstWordCount == 68): firstWord68th = words[0] print(firstWord68th) print(firstWordCount)
alph = 'abcdefghijklmnopqrstuvwxyz'[::-1] def get_winner(s1, s2): if 'no' in s1 or 'no' in s2: return 0 if not s1.isalpha() or not s2.isalpha(): return 0 for c in alph: c1 = s1.count(c) c2 = s2.count(c) if c1 > c2: return 1 elif c2 > c1: return 2 return 0 first_word_count = 0 first_word68th = '' with open('D:\\Work\\Repositories\\programmingContest\\programmingContest2Input1.txt') as file: for line in file: words = line.split() winner = get_winner(words[0], words[1]) if winner == 1: first_word_count = firstWordCount + 1 if firstWordCount == 68: first_word68th = words[0] print(firstWord68th) print(firstWordCount)
class ChartTypes: METER_TIME = 0 METER_TIME_DAY_AGG = 1 METER_INSTALLATION = 2 class UploadFileTypes: BUILDING_DATA = 0 HALF_HOURLY_DATA = 1 METER_DATA = 2
class Charttypes: meter_time = 0 meter_time_day_agg = 1 meter_installation = 2 class Uploadfiletypes: building_data = 0 half_hourly_data = 1 meter_data = 2
list1 = [12,-7,5,64,-14] for num1 in list1 : if num1 >= 0: print(num1, end = " ") list2 = [12,14,-95,3] for num2 in list2 : if num2 >= 0: print(num2, end = " ")
list1 = [12, -7, 5, 64, -14] for num1 in list1: if num1 >= 0: print(num1, end=' ') list2 = [12, 14, -95, 3] for num2 in list2: if num2 >= 0: print(num2, end=' ')
directions = [ (1, 0), # east (0, 1), # south (-1, 0), # west (0, -1) # north ] def rotate(x, y, code, value): rotations = value // 90 if code == 'R': for i in range(rotations): x, y = -y, x elif code == 'L': for i in range(rotations): x, y = y, -x return x, y with open('day12.txt') as f: instr = [line.strip() for line in f] def move(): px, py = 0, 0 # position dx, dy = 1, 0 # direction for inst in instr: code = inst[0] value = int(inst[1:]) if code == 'N': py -= value elif code == 'S': py += value elif code == 'E': px += value elif code == 'W': px -= value elif code == 'F': px += dx * value py += dy * value elif code == 'L' or code == 'R': dx, dy = rotate(dx, dy, code, value) else: raise Exception(f'unexpected code: {code}') return px, py px, py = move() print(abs(px) + abs(py)) def wmove(): px, py = 0, 0 wx, wy = 10, -1 for inst in instr: code = inst[0] value = int(inst[1:]) if code == 'N': wy -= value elif code == 'S': wy += value elif code == 'E': wx += value elif code == 'W': wx -= value elif code == 'F': px += wx * value py += wy * value elif code == 'L' or code == 'R': wx, wy = rotate(wx, wy, code, value) else: raise Exception(f'unexpected code: {code}') return px, py px, py = wmove() print(abs(px) + abs(py))
directions = [(1, 0), (0, 1), (-1, 0), (0, -1)] def rotate(x, y, code, value): rotations = value // 90 if code == 'R': for i in range(rotations): (x, y) = (-y, x) elif code == 'L': for i in range(rotations): (x, y) = (y, -x) return (x, y) with open('day12.txt') as f: instr = [line.strip() for line in f] def move(): (px, py) = (0, 0) (dx, dy) = (1, 0) for inst in instr: code = inst[0] value = int(inst[1:]) if code == 'N': py -= value elif code == 'S': py += value elif code == 'E': px += value elif code == 'W': px -= value elif code == 'F': px += dx * value py += dy * value elif code == 'L' or code == 'R': (dx, dy) = rotate(dx, dy, code, value) else: raise exception(f'unexpected code: {code}') return (px, py) (px, py) = move() print(abs(px) + abs(py)) def wmove(): (px, py) = (0, 0) (wx, wy) = (10, -1) for inst in instr: code = inst[0] value = int(inst[1:]) if code == 'N': wy -= value elif code == 'S': wy += value elif code == 'E': wx += value elif code == 'W': wx -= value elif code == 'F': px += wx * value py += wy * value elif code == 'L' or code == 'R': (wx, wy) = rotate(wx, wy, code, value) else: raise exception(f'unexpected code: {code}') return (px, py) (px, py) = wmove() print(abs(px) + abs(py))
#!/usr/bin/env python # encoding: utf-8 """ minimal_window_string.py Created by Shengwei on 2014-07-06. """ # https://oj.leetcode.com/problems/minimum-window-substring/ # tags: hard, string, hashtable, minimal, edge cases, clarification (dups) """ Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n). For example, S = "ADOBECODEBANC" T = "ABC" Minimum window is "BANC". Note: If there is no such window in S that covers all characters in T, return the emtpy string "". If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S. """ """ Notes for 3 bugs while implementing: 1. should move left pointer when substring is set other than left > 0; alternatively, set left to -1 in the beginning and later check if it's > -1 2. should check counter == char_count only when counter just changed 3. should decrease counter only when lookup_dict entry is -1, which means it just dissatisfies the minimum requirements The last two are mainly due to the change of concept -- there can be dups in T. """ # TODO: # 1. refactor it using a queue # 2. do not need to store both index and the char class Solution: # @return a string def minWindow(self, S, T): """Think about a windown sliding through S.""" window, counter, char_count = [], 0, len(set(T)) left = right = 0 min_substring = '' # initialize lookup dictionary, with negative count of # each char in T; they are expected to be supplimented # by sliding the window on S lookup_dict = collections.defaultdict(int) for char in T: lookup_dict[char] -= 1 while right < len(S): if window and left > window[0][1]: # drop off the left most one from the window; # the count of such item in the window decreases to_be_removed = window.pop(0)[0] lookup_dict[to_be_removed] -= 1 # IMPORTANT! should check if it's -1 other than < 0 if lookup_dict[to_be_removed] == -1: # no such char is in the window now, decrease count counter -= 1 if S[right] in lookup_dict: # include S[right] in the window window.append((S[right], right)) lookup_dict[S[right]] += 1 if lookup_dict[S[right]] == 0: # requirement for S[right] has been just satisfied; # if there were more than enough S[right], no change counter += 1 # only check this when counter increases if counter == char_count: # all requirements for T have been satisfied; # shrink the window for mimimum substring while lookup_dict[window[0][0]] > 0: # the left most item in the window is # superfluous, drop it lookup_dict[window.pop(0)[0]] -= 1 # shrink the window to the tighter boundary left = window[0][1] # update minimum substring; after all chars in T have # been in the window, the window only shrinks or # at least has no change, so do not need comparison min_substring = S[left:right+1] # slide the window to the right right += 1 # move the left of the window after we've found a substring if min_substring: left += 1 return min_substring
""" minimal_window_string.py Created by Shengwei on 2014-07-06. """ '\nGiven a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).\n\nFor example,\nS = "ADOBECODEBANC"\nT = "ABC"\nMinimum window is "BANC".\n\nNote:\nIf there is no such window in S that covers all characters in T, return the emtpy string "".\n\nIf there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.\n' "\nNotes for 3 bugs while implementing:\n1. should move left pointer when substring is set other than left > 0;\n alternatively, set left to -1 in the beginning and later check if it's > -1\n2. should check counter == char_count only when counter just changed\n3. should decrease counter only when lookup_dict entry is -1, which means\n it just dissatisfies the minimum requirements\n\nThe last two are mainly due to the change of concept -- there can be dups in T.\n" class Solution: def min_window(self, S, T): """Think about a windown sliding through S.""" (window, counter, char_count) = ([], 0, len(set(T))) left = right = 0 min_substring = '' lookup_dict = collections.defaultdict(int) for char in T: lookup_dict[char] -= 1 while right < len(S): if window and left > window[0][1]: to_be_removed = window.pop(0)[0] lookup_dict[to_be_removed] -= 1 if lookup_dict[to_be_removed] == -1: counter -= 1 if S[right] in lookup_dict: window.append((S[right], right)) lookup_dict[S[right]] += 1 if lookup_dict[S[right]] == 0: counter += 1 if counter == char_count: while lookup_dict[window[0][0]] > 0: lookup_dict[window.pop(0)[0]] -= 1 left = window[0][1] min_substring = S[left:right + 1] right += 1 if min_substring: left += 1 return min_substring
# Twitter Credentials # Later used in utils.py consumer_key = 'consumer key' consumer_secret = 'consumer_secret' access_token = 'access_token' access_token_secret = 'access_token_secret'
consumer_key = 'consumer key' consumer_secret = 'consumer_secret' access_token = 'access_token' access_token_secret = 'access_token_secret'
def truncate(a, b): n = min(len(a), len(b)) return a[:n], b[:n] def truncate3(a, b, c): n = min(len(a), len(b), len(c)) return a[:n], b[:n], c[:n] def xor(x, y): # assert len(x) == len(y) a = int.from_bytes(x, "big") b = int.from_bytes(y, "big") return (a ^ b).to_bytes(len(x), "big") # Expects a textfile containing # ciphertexts separated by new lines # Returns a tuple # - a list of strings (each cipher) # - a string (the first cipher) def parse_text(filepath): texts = [] with open(filepath) as f: for line in f: s = line.strip(' \t\n\r') if s != '': texts.append(s) return texts # Expects a list of strings representing # byte in hex representation # Returns the corresponding list the actual bytes # represented by each string def byteslist_fromhex(hexlist): byteslist = [] for h in hexlist: byteslist.append(bytes.fromhex(h)) return byteslist
def truncate(a, b): n = min(len(a), len(b)) return (a[:n], b[:n]) def truncate3(a, b, c): n = min(len(a), len(b), len(c)) return (a[:n], b[:n], c[:n]) def xor(x, y): a = int.from_bytes(x, 'big') b = int.from_bytes(y, 'big') return (a ^ b).to_bytes(len(x), 'big') def parse_text(filepath): texts = [] with open(filepath) as f: for line in f: s = line.strip(' \t\n\r') if s != '': texts.append(s) return texts def byteslist_fromhex(hexlist): byteslist = [] for h in hexlist: byteslist.append(bytes.fromhex(h)) return byteslist
X1_COORDINATE_IMAGE_CROPPED = 2000 X2_COORDINATE_IMAGE_CROPPED = 3000 Y1_COORDINATE_IMAGE_CROPPED = 0 Y2_COORDINATE_IMAGE_CROPPED = 3880 HSV_MIN = (100,80,150) #min for red - normal - generelalized HSV_MAX = (150,255,255) #max for red - normal - generelalized HSV_INVERTED_MIN = (50,230,240) #min for green - inverted HSV_INVERTED_MAX = (70,250,255) #max for green - inverted MIN_DIST_BETWEEN_LASERS = 40 MAX_DIST_BETWEEN_LASERS = 200 ESTIMATED_LASER_AREA = 5000
x1_coordinate_image_cropped = 2000 x2_coordinate_image_cropped = 3000 y1_coordinate_image_cropped = 0 y2_coordinate_image_cropped = 3880 hsv_min = (100, 80, 150) hsv_max = (150, 255, 255) hsv_inverted_min = (50, 230, 240) hsv_inverted_max = (70, 250, 255) min_dist_between_lasers = 40 max_dist_between_lasers = 200 estimated_laser_area = 5000
# -*- coding: utf-8 -*- # @Project : curve_fit # @Time : 2019-05-27 14:28 # @Author : Samuel Chan # @Email : samuelchan1205@gmail.com # @File : __init__.py name = "curve_fit"
name = 'curve_fit'
"""Classes for containing morphological objects.""" class Affix: """A class representing a single affix.""" def __init__(self, string_in, tag): self.s = string_in self.tag = tag def __hash__(self): return hash((self.s, self.tag)) def __eq__(self, other): return (self.s, self.tag) == (other.s, other.tag) def __str__(self): return self.s def to_tag(self): return self.tag class ParseList: """A class representing a single set of possible affix combinations.""" def __init__(self): self.affixes = [] def __hash__(self): return hash(self.affixes) def __eq__(self, other): return self.affixes == other.affixes def __str__(self): tags = map(lambda x: x.to_tag(), self.affixes) return ' - '.join(tags) def append(self, a): """No validation is done at this step, do it before""" self.affixes.append(a)
"""Classes for containing morphological objects.""" class Affix: """A class representing a single affix.""" def __init__(self, string_in, tag): self.s = string_in self.tag = tag def __hash__(self): return hash((self.s, self.tag)) def __eq__(self, other): return (self.s, self.tag) == (other.s, other.tag) def __str__(self): return self.s def to_tag(self): return self.tag class Parselist: """A class representing a single set of possible affix combinations.""" def __init__(self): self.affixes = [] def __hash__(self): return hash(self.affixes) def __eq__(self, other): return self.affixes == other.affixes def __str__(self): tags = map(lambda x: x.to_tag(), self.affixes) return ' - '.join(tags) def append(self, a): """No validation is done at this step, do it before""" self.affixes.append(a)
__author__ = 'srio' NAME = "XOPPY: Tools" ID = "orangecontrib.xoppy.widgets.tools" DESCRIPTION = """Widgets for x-ray oriented programs under python (xoppy)""" LONG_DESRIPTION = """ Miscellanea Tools """ ICON = "icons/xoppy_2.png" BACKGROUND = "#FFD39F" PRIORITY = 2003
__author__ = 'srio' name = 'XOPPY: Tools' id = 'orangecontrib.xoppy.widgets.tools' description = 'Widgets for x-ray oriented programs under python (xoppy)' long_desription = '\nMiscellanea Tools\n\n' icon = 'icons/xoppy_2.png' background = '#FFD39F' priority = 2003
def SimIRStmt_WrTmp(engine, state, stmt): # get data and track data reads with state.history.subscribe_actions() as data_deps: data = engine.handle_expression(state, stmt.data) state.scratch.store_tmp(stmt.tmp, data, deps=data_deps) #actual_size = len(data) #expected_size = stmt.data.result_size(state.scratch.tyenv) #if actual_size != expected_size: # raise SimStatementError("WrTmp expected length %d but got %d" % (actual_size, expected_size))
def sim_ir_stmt__wr_tmp(engine, state, stmt): with state.history.subscribe_actions() as data_deps: data = engine.handle_expression(state, stmt.data) state.scratch.store_tmp(stmt.tmp, data, deps=data_deps)
__author__ = "M. Jastad" __copyright__ = "Copyright 2017, CSRA Hackathon" __credits__ = ["M.Jastad", "M.Lavi"] __license__ = "N/A" __version__ = "1.0.1" __maintainer__ = "M. Jastad" __email__ = "michael.jastad@nutanix.com" __status__ = "Reference" class User: def __init__(self, uname, pwd): self.uname = uname self.passwd = pwd @property def name(self): return self.uname @property def password(self): return self.passwd
__author__ = 'M. Jastad' __copyright__ = 'Copyright 2017, CSRA Hackathon' __credits__ = ['M.Jastad', 'M.Lavi'] __license__ = 'N/A' __version__ = '1.0.1' __maintainer__ = 'M. Jastad' __email__ = 'michael.jastad@nutanix.com' __status__ = 'Reference' class User: def __init__(self, uname, pwd): self.uname = uname self.passwd = pwd @property def name(self): return self.uname @property def password(self): return self.passwd
class Solution: def fizzBuzz(self, n): list = [] for i in range(1,n+1): buff_string = "" if i % 3 == 0: buff_string += "Fizz" if i % 5 == 0: buff_string += "Buzz" if buff_string == '': buff_string = str(i) list.append(buff_string) return list
class Solution: def fizz_buzz(self, n): list = [] for i in range(1, n + 1): buff_string = '' if i % 3 == 0: buff_string += 'Fizz' if i % 5 == 0: buff_string += 'Buzz' if buff_string == '': buff_string = str(i) list.append(buff_string) return list
############################################################################## # Copyright (c) 2020 China Mobile Co.,Ltd and others. # # All rights reserved. This program and the accompanying materials # are made available under the terms of the Apache License, Version 2.0 # which accompanies this distribution, and is available at # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## """ ERROR CODE instruction """ ERROR_CODE = { # E100XXX: Connection "E100001": "E100001:fail to get response from the url", "E100002": "E100002:unexpected request url", "E100003": "E100003:failed to setup connection", # E200XXX: options - tools arguments. "E200001": "E200001:unsupported input file_mode, \ should be one of [yaml,excel]", # E300XXX: resource issue - depended resource is not existing... "E300001": "E300001:invalid token", "E300002": "E300002:fail to get dependency parent id, Action: check if the \ resource support by server", "E300003": "E300003:fail to get expected id list for component_id, \ Action: check if the resource support by server", # E400XXX: configuration error "E400001": "E400001:fail to find configure file", "E400002": "E400002:parse config.yaml exception", "E400003": "E400003: key_list is null for key_flags", "E400004": "E400004: unexpected response body type", "E400005": "E400005: customized expected value format error, \ Action:check input expected value type with actual returned value type", "E400006": "E400006: unexpected expected value type, \ expected[str,list,dict]", "E400007": "E400007: unexpected expected value type while comparing", # E500XXX: application - find no value from cache "E500001": "E500001: fail find key from actual value, \ Action: check if the attribute support by server", # E600XXX: restful interface "E600001": "E600001: unsupported redfish api?", } WARN_CODE = { "W100001": "W100001: fail to the response from a request", "W100002": "W100002: unexpected type of return_value type", "W100003": "W100003: NoneType value", }
""" ERROR CODE instruction """ error_code = {'E100001': 'E100001:fail to get response from the url', 'E100002': 'E100002:unexpected request url', 'E100003': 'E100003:failed to setup connection', 'E200001': 'E200001:unsupported input file_mode, should be one of [yaml,excel]', 'E300001': 'E300001:invalid token', 'E300002': 'E300002:fail to get dependency parent id, Action: check if the resource support by server', 'E300003': 'E300003:fail to get expected id list for component_id, Action: check if the resource support by server', 'E400001': 'E400001:fail to find configure file', 'E400002': 'E400002:parse config.yaml exception', 'E400003': 'E400003: key_list is null for key_flags', 'E400004': 'E400004: unexpected response body type', 'E400005': 'E400005: customized expected value format error, Action:check input expected value type with actual returned value type', 'E400006': 'E400006: unexpected expected value type, expected[str,list,dict]', 'E400007': 'E400007: unexpected expected value type while comparing', 'E500001': 'E500001: fail find key from actual value, Action: check if the attribute support by server', 'E600001': 'E600001: unsupported redfish api?'} warn_code = {'W100001': 'W100001: fail to the response from a request', 'W100002': 'W100002: unexpected type of return_value type', 'W100003': 'W100003: NoneType value'}
''' Now You Code 4: Find a character in text Description Write a program to input a character, and then some text. It should then output the number of times the character was found in the text. Requirements: #1 Write a function char_in_text which returns an int value as to the count of that character in the text Function: char_in_text Arguments: char, text Returns: count of char in text #2 You're going to need a deterministic loop to iterate over each character in the text. Example Run #1: Enter Character: e Enter Text: Mike Fudge The character 'e' appears 2 times in the text. Example Run #2: Enter Character: x Enter Text: oakland The character 'x' appears 0 times in the text. Start out your program by writing your TODO list of steps you'll need to solve the problem! ''' # TODO: Write Todo list then beneath write your code # Write code here
""" Now You Code 4: Find a character in text Description Write a program to input a character, and then some text. It should then output the number of times the character was found in the text. Requirements: #1 Write a function char_in_text which returns an int value as to the count of that character in the text Function: char_in_text Arguments: char, text Returns: count of char in text #2 You're going to need a deterministic loop to iterate over each character in the text. Example Run #1: Enter Character: e Enter Text: Mike Fudge The character 'e' appears 2 times in the text. Example Run #2: Enter Character: x Enter Text: oakland The character 'x' appears 0 times in the text. Start out your program by writing your TODO list of steps you'll need to solve the problem! """
class Database: mysql = { "host": "localhost", "user": "root", "pass": "pass", "port": 3306, "name": "db" }
class Database: mysql = {'host': 'localhost', 'user': 'root', 'pass': 'pass', 'port': 3306, 'name': 'db'}
friends = ['ali', 'ahmad', 'jali'] for friend in friends: print('Selamat',friend) print('selesai')
friends = ['ali', 'ahmad', 'jali'] for friend in friends: print('Selamat', friend) print('selesai')
""" Flags specified here must not impact ABI. Code compiled with and without these opts will be linked together, and in some cases headers compiled with and without these options will be part of the same program. We use the same flags as absl. """ load( "@com_google_absl//absl:copts/GENERATED_copts.bzl", "ABSL_GCC_FLAGS", "ABSL_GCC_TEST_FLAGS", "ABSL_LLVM_FLAGS", "ABSL_LLVM_TEST_FLAGS", "ABSL_MSVC_FLAGS", "ABSL_MSVC_TEST_FLAGS", ) WERROR = ["-Werror=return-type", "-Werror=switch", "-Werror=sign-compare", "-Werror=type-limits", "-Werror=old-style-cast", "-Werror=unused-parameter"] DEFAULT_COPTS = select({ "//:windows": ABSL_MSVC_FLAGS, "//:llvm_compiler": ABSL_LLVM_FLAGS, "//conditions:default": ABSL_GCC_FLAGS + WERROR, }) TEST_COPTS = DEFAULT_COPTS + select({ "//:windows": ABSL_MSVC_TEST_FLAGS, "//:llvm_compiler": ABSL_LLVM_TEST_FLAGS, "//conditions:default": ABSL_GCC_TEST_FLAGS + WERROR, })
""" Flags specified here must not impact ABI. Code compiled with and without these opts will be linked together, and in some cases headers compiled with and without these options will be part of the same program. We use the same flags as absl. """ load('@com_google_absl//absl:copts/GENERATED_copts.bzl', 'ABSL_GCC_FLAGS', 'ABSL_GCC_TEST_FLAGS', 'ABSL_LLVM_FLAGS', 'ABSL_LLVM_TEST_FLAGS', 'ABSL_MSVC_FLAGS', 'ABSL_MSVC_TEST_FLAGS') werror = ['-Werror=return-type', '-Werror=switch', '-Werror=sign-compare', '-Werror=type-limits', '-Werror=old-style-cast', '-Werror=unused-parameter'] default_copts = select({'//:windows': ABSL_MSVC_FLAGS, '//:llvm_compiler': ABSL_LLVM_FLAGS, '//conditions:default': ABSL_GCC_FLAGS + WERROR}) test_copts = DEFAULT_COPTS + select({'//:windows': ABSL_MSVC_TEST_FLAGS, '//:llvm_compiler': ABSL_LLVM_TEST_FLAGS, '//conditions:default': ABSL_GCC_TEST_FLAGS + WERROR})
"""Message type identifiers for Feature Discovery.""" PROTOCOL_URI = "did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/discover-features/1.0" DISCLOSE = f"{PROTOCOL_URI}/disclose" QUERY = f"{PROTOCOL_URI}/query" PROTOCOL_PACKAGE = "aries_cloudagent.protocols.discovery" MESSAGE_TYPES = { DISCLOSE: f"{PROTOCOL_PACKAGE}.messages.disclose.Disclose", QUERY: f"{PROTOCOL_PACKAGE}.messages.query.Query", }
"""Message type identifiers for Feature Discovery.""" protocol_uri = 'did:sov:BzCbsNYhMrjHiqZDTUASHg;spec/discover-features/1.0' disclose = f'{PROTOCOL_URI}/disclose' query = f'{PROTOCOL_URI}/query' protocol_package = 'aries_cloudagent.protocols.discovery' message_types = {DISCLOSE: f'{PROTOCOL_PACKAGE}.messages.disclose.Disclose', QUERY: f'{PROTOCOL_PACKAGE}.messages.query.Query'}
#%% """ - Maximum Subarray - https://leetcode.com/problems/maximum-subarray/ - Easy Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Input: [-2,1,-3,4,-1,2,1,-5,4], Output: 6 Explanation: [4,-1,2,1] has the largest sum = 6. Follow up: If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle. """ #%% # from i , calculate i to n # O(n^2) class S1: def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ n = len(nums) m = float('-inf') for i in range(n): s = 0 for j in range(i, n): s += nums[j] m = max(m, s) return m #%% # DP # ms(i) = max(ms[i]+a[i], a[i]) # at index i , the max range may be in either adding a[i] or start from a[i] class S2: def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ n = len(nums) maxSum = [nums[0] for i in range(n)] for i in range(1,n): maxSum[i] = max(maxSum[i-1] + nums[i], nums[i]) return max(maxSum) #%% class S3: def maxSubArray(self, nums): n = len(nums) maxSum, maxEnd = nums[0], nums[0] for i in range(1, n): maxEnd = max(nums[i], maxEnd + nums[i]) maxSum = max(maxEnd, maxSum) return maxSum #%% # Divide and Conquer # The max subarray sum has three options: left part, right part or across left and right part # O(nlogn) class S4: def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ def find_max_crossing_subarray(nums, low, mid, high): left_sum = float('-inf') sum = 0 for i in range(mid, low-1, -1): sum = sum + nums[i] if sum > left_sum: left_sum = sum right_sum = float('-inf') sum = 0 for j in range(mid+1, high+1): sum = sum + nums[j] if sum > right_sum: right_sum = sum return left_sum + right_sum def find_max_subarray(nums, low, high): if low == high: return nums[low] else: mid = (low+high) // 2 left_sum = find_max_subarray(nums, low, mid) right_sum = find_max_subarry(nums, mid+1, high) cross_sum = find_max_crossing_subarray(nums, low, mid, high) return max(left_sum, right_sum, cross_sum) return find_max_subarray(nums, 0, len(nums)-1) #%%
""" - Maximum Subarray - https://leetcode.com/problems/maximum-subarray/ - Easy Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. Example: Input: [-2,1,-3,4,-1,2,1,-5,4], Output: 6 Explanation: [4,-1,2,1] has the largest sum = 6. Follow up: If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle. """ class S1: def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ n = len(nums) m = float('-inf') for i in range(n): s = 0 for j in range(i, n): s += nums[j] m = max(m, s) return m class S2: def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ n = len(nums) max_sum = [nums[0] for i in range(n)] for i in range(1, n): maxSum[i] = max(maxSum[i - 1] + nums[i], nums[i]) return max(maxSum) class S3: def max_sub_array(self, nums): n = len(nums) (max_sum, max_end) = (nums[0], nums[0]) for i in range(1, n): max_end = max(nums[i], maxEnd + nums[i]) max_sum = max(maxEnd, maxSum) return maxSum class S4: def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ def find_max_crossing_subarray(nums, low, mid, high): left_sum = float('-inf') sum = 0 for i in range(mid, low - 1, -1): sum = sum + nums[i] if sum > left_sum: left_sum = sum right_sum = float('-inf') sum = 0 for j in range(mid + 1, high + 1): sum = sum + nums[j] if sum > right_sum: right_sum = sum return left_sum + right_sum def find_max_subarray(nums, low, high): if low == high: return nums[low] else: mid = (low + high) // 2 left_sum = find_max_subarray(nums, low, mid) right_sum = find_max_subarry(nums, mid + 1, high) cross_sum = find_max_crossing_subarray(nums, low, mid, high) return max(left_sum, right_sum, cross_sum) return find_max_subarray(nums, 0, len(nums) - 1)
allSum = 10000 last = 10150 percentAllSum = 100 percentLast = ((last - allSum) / allSum) * percentAllSum print (percentLast)
all_sum = 10000 last = 10150 percent_all_sum = 100 percent_last = (last - allSum) / allSum * percentAllSum print(percentLast)
class ReporteOptimizacion(): def __init__(self, regla, original, optimizado, fila, columna): self.regla = regla self.original = original self.optimizado = optimizado self.fila = fila self.columna = columna
class Reporteoptimizacion: def __init__(self, regla, original, optimizado, fila, columna): self.regla = regla self.original = original self.optimizado = optimizado self.fila = fila self.columna = columna
HAND_ID_LIMITS = (200000000000, 999999999999) # Offsets for PokerStars 7 (Build: 46014) OFFSETS = { 'client' : { 'num_tables' : 0x133CAB0 }, 'table' : { 'base' : ((0x01344248, 0x20, 0x04, 0x00, 0xDF8), (0x01344248, 0x14, 0x00, 0xDF8)), 'interval' : ((0x00, 0x00, 0x10, 0x00, 0x00), (0x00, 0x00, 0x04, 0x00)), 'button_position' : 0x00, 'turn_counter' : 0x04, 'is_post_flop' : 0x08, 'pot' : 0x18, 'hand_id' : 0x40, 'num_cards' : 0x58, 'card_values' : 0x64, 'card_suits' : 0x68, 'self_position' : 0x10B0, 'time_remaining' : 0x11C4 }, 'seat' : { 'base' : 0x0218, 'interval' : 0x0160, 'name' : 0x00, 'stack' : 0x58, 'bet' : 0x68, 'is_empty' : 0x80, 'is_in_play' : 0x88, 'does_exist' : 0x8C, 'card_values' : 0x9C, 'card_suits' : 0xA0 } }
hand_id_limits = (200000000000, 999999999999) offsets = {'client': {'num_tables': 20171440}, 'table': {'base': ((20202056, 32, 4, 0, 3576), (20202056, 20, 0, 3576)), 'interval': ((0, 0, 16, 0, 0), (0, 0, 4, 0)), 'button_position': 0, 'turn_counter': 4, 'is_post_flop': 8, 'pot': 24, 'hand_id': 64, 'num_cards': 88, 'card_values': 100, 'card_suits': 104, 'self_position': 4272, 'time_remaining': 4548}, 'seat': {'base': 536, 'interval': 352, 'name': 0, 'stack': 88, 'bet': 104, 'is_empty': 128, 'is_in_play': 136, 'does_exist': 140, 'card_values': 156, 'card_suits': 160}}
# AUTOGENERATED! DO NOT EDIT! File to edit: 00_core.ipynb (unless otherwise specified). __all__ = ['learn'] # Cell def learn(model, data): ''' Model learns using the '''
__all__ = ['learn'] def learn(model, data): """ Model learns using the """
mes = input("Enter message >>") demes = [] dmes = [] lengh = input("Enter lengh >>") letters = ['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'] letters += letters for i in range(0,int(lengh)): for n in range(0,26): if (mes[i] == letters[n]): demes.append(letters[n+int(lengh)]) dmes.append(letters[n-int(lengh)]) print(str(demes)) print(dmes)
mes = input('Enter message >>') demes = [] dmes = [] lengh = input('Enter lengh >>') letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] letters += letters for i in range(0, int(lengh)): for n in range(0, 26): if mes[i] == letters[n]: demes.append(letters[n + int(lengh)]) dmes.append(letters[n - int(lengh)]) print(str(demes)) print(dmes)
# _*_coding:utf-8_*_ class Solution: def NumberOf1Between1AndN_Solution(self, n): pass
class Solution: def number_of1_between1_and_n__solution(self, n): pass
def merge(arr, left, mid, right): n1 = mid - left + 1 n2 = right - mid # Creating temporary arrays and copying the elements to it L = [0] * n1 R = [0] * n2 for i in range(0, n1): L[i] = arr[left + i] for j in range(0, n2): R[j] = arr[mid + 1 + j] # Merging the temporary arrays i = 0 j = 0 k = left while i < n1 and j < n2: if L[i] <= R[j]: arr[k] = L[i] i += 1 else: arr[k] = R[j] j += 1 k += 1 # Copying the remaining elements, if there are any left out while i < n1: arr[k] = L[i] i += 1 k += 1 while j < n2: arr[k] = R[j] j += 1 k += 1 def merge_sort(arr, left, right): if left < right: mid = (left + (right - 1)) // 2 merge_sort(arr, left, mid) merge_sort(arr, mid + 1, right) merge(arr, left, mid, right) array = list(map(int, input('Enter the array of integers to be sorted(separated by spaces):').split())) n = len(array) print("Given array is") print(*array) merge_sort(array, 0, n - 1) print("Sorted array is") print(*array)
def merge(arr, left, mid, right): n1 = mid - left + 1 n2 = right - mid l = [0] * n1 r = [0] * n2 for i in range(0, n1): L[i] = arr[left + i] for j in range(0, n2): R[j] = arr[mid + 1 + j] i = 0 j = 0 k = left while i < n1 and j < n2: if L[i] <= R[j]: arr[k] = L[i] i += 1 else: arr[k] = R[j] j += 1 k += 1 while i < n1: arr[k] = L[i] i += 1 k += 1 while j < n2: arr[k] = R[j] j += 1 k += 1 def merge_sort(arr, left, right): if left < right: mid = (left + (right - 1)) // 2 merge_sort(arr, left, mid) merge_sort(arr, mid + 1, right) merge(arr, left, mid, right) array = list(map(int, input('Enter the array of integers to be sorted(separated by spaces):').split())) n = len(array) print('Given array is') print(*array) merge_sort(array, 0, n - 1) print('Sorted array is') print(*array)
# Small alphabet j using function def for_j(): """ *'s printed in the Shape of small j """ for row in range(9): for col in range(4): if col == 2 and row not in (1,8) or col ==1 and row in (2,8) or col ==0 and row ==7: print('*',end=' ') else: print(' ',end=' ') print() def while_j(): """ *'s printed in the Shape of Small j """ row =0 while row <9: col =0 while col <4: if col == 2 and row not in (1,8) or col ==1 and row in (2,8) or col ==0 and row ==7: print('*',end=' ') else: print(' ',end=' ') col+=1 print() row +=1
def for_j(): """ *'s printed in the Shape of small j """ for row in range(9): for col in range(4): if col == 2 and row not in (1, 8) or (col == 1 and row in (2, 8)) or (col == 0 and row == 7): print('*', end=' ') else: print(' ', end=' ') print() def while_j(): """ *'s printed in the Shape of Small j """ row = 0 while row < 9: col = 0 while col < 4: if col == 2 and row not in (1, 8) or (col == 1 and row in (2, 8)) or (col == 0 and row == 7): print('*', end=' ') else: print(' ', end=' ') col += 1 print() row += 1
s = input() length = len(s) word_len = int(length / 3) t = "" if s[0:word_len] == s[word_len:word_len*2]: t = s[0:word_len] elif s[word_len:word_len*2] == s[word_len*2:word_len*3]: t = s[word_len:word_len*2] else: t = s[0:word_len] print(t)
s = input() length = len(s) word_len = int(length / 3) t = '' if s[0:word_len] == s[word_len:word_len * 2]: t = s[0:word_len] elif s[word_len:word_len * 2] == s[word_len * 2:word_len * 3]: t = s[word_len:word_len * 2] else: t = s[0:word_len] print(t)
# Use cmd -- # use python .\87exeTest.txt # pyinstaller .\87exeTest.txt # .\87exeTest.exe # For one file : # Use cmd -- # pyinstaller --onefile .\87exeTest.py # .\87exeTest.exe print('Welcome to Adder') print(int(input())+int(input()))
print('Welcome to Adder') print(int(input()) + int(input()))
"""Helper function for _load_compcor.""" prefix_compcor = {"temporal_anat": ["t", "a"], "temporal": ["t"], "anat": ["a"]} anat_masker = {"combined": ["combined"], "separated": ["WM", "CSF"], None: None} def _find_compcor(confounds_json, compcor, n_compcor): """Build list for the number of compcor components.""" prefix_set, anat_mask = _check_compcor_method(compcor) collector = [] for prefix in prefix_set: # all possible compcor confounds in order, mixing different # types of mask all_compcor_name = [ comp for comp in confounds_json.keys() if f"{prefix}_comp_cor" in comp ] # filter by prefix first (anat vs temporal) compcor_cols_filt = _prefix_confound_filter(prefix, all_compcor_name) if prefix == "a": # apply acompor mask option if relevant, and select top components compcor_cols_filt = _acompcor_mask( confounds_json, anat_mask, compcor_cols_filt, n_compcor ) else: # select top components compcor_cols_filt = _select_compcor(compcor_cols_filt, n_compcor) # Aggregate components across all masks collector += compcor_cols_filt return collector def _select_compcor(compcor_cols, n_compcor): """Retain a specified number of compcor components.""" # only select if not "all", or less components are requested than there # actually is if (n_compcor != "all") and (n_compcor < len(compcor_cols)): compcor_cols = compcor_cols[0:n_compcor] return compcor_cols def _check_compcor_method(compcor): """Load compcor options and check if method is acceptable.""" compcor_type = compcor.split("_") if len(compcor_type) > 1: compcor_type = "_".join(compcor_type[:-1]) anat_mask_type = compcor.split("_")[-1:][0] else: compcor_type = compcor_type[0] anat_mask_type = None # get relevant prefix from compcor strategy prefix_set = prefix_compcor[compcor_type] # get relevant compcor mask anat_mask = anat_masker[anat_mask_type] return prefix_set, anat_mask def _acompcor_mask(confounds_json, anat_mask, compcor_cols_filt, n_compcor): """Filter according to acompcor mask(s) and select top components.""" collector = [] for mask in anat_mask: cols = _json_mask(compcor_cols_filt, confounds_json, mask) cols = _select_compcor(cols, n_compcor) collector += cols return collector def _json_mask(compcor_cols_filt, confounds_json, mask): """Extract anat compcor components from a given mask.""" return [ compcor_col for compcor_col in compcor_cols_filt if confounds_json[compcor_col]["Mask"] in mask ] def _prefix_confound_filter(prefix, all_compcor_name): """Get confound columns by prefix and acompcor mask.""" compcor_cols_filt = [] for nn in range(len(all_compcor_name)): nn_str = str(nn).zfill(2) compcor_col = f"{prefix}_comp_cor_{nn_str}" compcor_cols_filt.append(compcor_col) return compcor_cols_filt
"""Helper function for _load_compcor.""" prefix_compcor = {'temporal_anat': ['t', 'a'], 'temporal': ['t'], 'anat': ['a']} anat_masker = {'combined': ['combined'], 'separated': ['WM', 'CSF'], None: None} def _find_compcor(confounds_json, compcor, n_compcor): """Build list for the number of compcor components.""" (prefix_set, anat_mask) = _check_compcor_method(compcor) collector = [] for prefix in prefix_set: all_compcor_name = [comp for comp in confounds_json.keys() if f'{prefix}_comp_cor' in comp] compcor_cols_filt = _prefix_confound_filter(prefix, all_compcor_name) if prefix == 'a': compcor_cols_filt = _acompcor_mask(confounds_json, anat_mask, compcor_cols_filt, n_compcor) else: compcor_cols_filt = _select_compcor(compcor_cols_filt, n_compcor) collector += compcor_cols_filt return collector def _select_compcor(compcor_cols, n_compcor): """Retain a specified number of compcor components.""" if n_compcor != 'all' and n_compcor < len(compcor_cols): compcor_cols = compcor_cols[0:n_compcor] return compcor_cols def _check_compcor_method(compcor): """Load compcor options and check if method is acceptable.""" compcor_type = compcor.split('_') if len(compcor_type) > 1: compcor_type = '_'.join(compcor_type[:-1]) anat_mask_type = compcor.split('_')[-1:][0] else: compcor_type = compcor_type[0] anat_mask_type = None prefix_set = prefix_compcor[compcor_type] anat_mask = anat_masker[anat_mask_type] return (prefix_set, anat_mask) def _acompcor_mask(confounds_json, anat_mask, compcor_cols_filt, n_compcor): """Filter according to acompcor mask(s) and select top components.""" collector = [] for mask in anat_mask: cols = _json_mask(compcor_cols_filt, confounds_json, mask) cols = _select_compcor(cols, n_compcor) collector += cols return collector def _json_mask(compcor_cols_filt, confounds_json, mask): """Extract anat compcor components from a given mask.""" return [compcor_col for compcor_col in compcor_cols_filt if confounds_json[compcor_col]['Mask'] in mask] def _prefix_confound_filter(prefix, all_compcor_name): """Get confound columns by prefix and acompcor mask.""" compcor_cols_filt = [] for nn in range(len(all_compcor_name)): nn_str = str(nn).zfill(2) compcor_col = f'{prefix}_comp_cor_{nn_str}' compcor_cols_filt.append(compcor_col) return compcor_cols_filt
class Solution(object): def wordBreak(self, s, wordDict): def helper(s_left): if not s_left: return True if s_left in history: return history[s_left] for word in wordDict: if len(s_left)<len(word): continue if s_left[:len(word)]==word and helper(s_left[len(word):]): history[s_left] = True return history[s_left] history[s_left] = False return history[s_left] history = {} return helper(s)
class Solution(object): def word_break(self, s, wordDict): def helper(s_left): if not s_left: return True if s_left in history: return history[s_left] for word in wordDict: if len(s_left) < len(word): continue if s_left[:len(word)] == word and helper(s_left[len(word):]): history[s_left] = True return history[s_left] history[s_left] = False return history[s_left] history = {} return helper(s)
############################################# ## Load masterBedroom controlCommands ############################################# print('Load masterBedroom controlCommands') longPress = .5 #seconds commands = { "Home": [ {"controlWord": "Home", "hidCode": 0x223, "hidReport": 2, "options": "reload"} ], "Menu": [ {"controlWord": "Menu", "hidCode": 0x40, "hidReport": 2} ], "Back": [ {"controlWord": "Back", "hidCode": 0x46, "hidReport": 2} ], "Up": [ {"controlWord": "Up", "hidCode": 0x42, "hidReport": 2} ], "Down": [ {"controlWord": "Down", "hidCode": 0x43, "hidReport": 2} ], "Left": [ {"controlWord": "Left", "hidCode": 0x44, "hidReport": 2} ], "Right": [ {"controlWord": "Right", "hidCode": 0x45, "hidReport": 2} ], "Ok": [ {"controlWord": "Ok", "hidCode": 0x41, "hidReport": 2} ], "Softer": [ {"controlWord": "Softer", "hidCode": 0xEA, "hidReport": 2} ], "Louder": [ {"controlWord": "Louder", "hidCode": 0xE9, "hidReport": 2} ], "Silence": [ {"controlWord": "Menu", "hidCode": 0xE2, "hidReport": 2} ], "Sound": [ {"controlWord": "Menu", "hidCode": 0xE2, "hidReport": 2} ], "SoundToggle": [ {"controlWord": "SoundToggle", "hidCode": 0xE2, "hidReport": 2} ], "Forward": [ {"controlWord": "Forward", "hidCode": 0xB3, "hidReport": 2, "hidWait": longPress, "hidRepeat": 1} ], "Backward": [ {"controlWord": "Backward", "hidCode": 0xB4, "hidReport": 2, "hidWait": longPress, "hidRepeat": 1} ], "PlayToggle": [ {"controlWord": "PlayToggle", "hidCode": 0xCD, "hidReport": 2} ], "On": [ {"controlWord": "Home", "hidCode": 0x223, "hidReport": 2}, ], "OnToggle": [ {"controlWord": "OnToggle", "hidCode": 0x30, "hidReport": 2}, ] }
print('Load masterBedroom controlCommands') long_press = 0.5 commands = {'Home': [{'controlWord': 'Home', 'hidCode': 547, 'hidReport': 2, 'options': 'reload'}], 'Menu': [{'controlWord': 'Menu', 'hidCode': 64, 'hidReport': 2}], 'Back': [{'controlWord': 'Back', 'hidCode': 70, 'hidReport': 2}], 'Up': [{'controlWord': 'Up', 'hidCode': 66, 'hidReport': 2}], 'Down': [{'controlWord': 'Down', 'hidCode': 67, 'hidReport': 2}], 'Left': [{'controlWord': 'Left', 'hidCode': 68, 'hidReport': 2}], 'Right': [{'controlWord': 'Right', 'hidCode': 69, 'hidReport': 2}], 'Ok': [{'controlWord': 'Ok', 'hidCode': 65, 'hidReport': 2}], 'Softer': [{'controlWord': 'Softer', 'hidCode': 234, 'hidReport': 2}], 'Louder': [{'controlWord': 'Louder', 'hidCode': 233, 'hidReport': 2}], 'Silence': [{'controlWord': 'Menu', 'hidCode': 226, 'hidReport': 2}], 'Sound': [{'controlWord': 'Menu', 'hidCode': 226, 'hidReport': 2}], 'SoundToggle': [{'controlWord': 'SoundToggle', 'hidCode': 226, 'hidReport': 2}], 'Forward': [{'controlWord': 'Forward', 'hidCode': 179, 'hidReport': 2, 'hidWait': longPress, 'hidRepeat': 1}], 'Backward': [{'controlWord': 'Backward', 'hidCode': 180, 'hidReport': 2, 'hidWait': longPress, 'hidRepeat': 1}], 'PlayToggle': [{'controlWord': 'PlayToggle', 'hidCode': 205, 'hidReport': 2}], 'On': [{'controlWord': 'Home', 'hidCode': 547, 'hidReport': 2}], 'OnToggle': [{'controlWord': 'OnToggle', 'hidCode': 48, 'hidReport': 2}]}