Welcome, guest | Sign In | My Account | Store | Cart

The following recipe demonstrates the use of SETs in Python. The scenario that this was written for is as follows:

A star map is given according to the format X,Y,Z|...|X,Y,Z: X represents the X coordinate of the star (which may be any real integer). Y represents the Y coordinate on the star (which may be any real integer). Z represents the color of the star (which may be any real integer larger than 0). | separates the stars (strings represented by X,Y,Z). , separates the numbers describing the stars (X,Y,Z). : represents the end of the star map string. ... is an arbitrary number of X,Y,Z strings with appropriate pipes.

The problem involves finding all constellations that are shared across two different star maps. A constellation is defined as a group of stars. When trying to find out if a constellation is shared by two star maps, color and position do not matter. However, all constellations would be oriented in the same direction.

Python, 128 lines
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
import random

def random_star_map_generator():
    return [(random.randint(-590, 590), random.randint(-590, 590)) for star in range(300)]

def parsed_data_to_string(data):
    return '|'.join([','.join([str(x)] + [str(y)] + [str(random.randint(1, 6))]) for x, y in data]) + ':'

################################################################################

class star_map:

    def __init__(self, name, string):
        self.name = name
        self.original_string = string
        self.original_cords = self.parse_string(string)
        self.star_set = set(self.original_cords)

    def parse_string(self, data_string):
        no_colon = data_string[:-1]
        stars = no_colon.split('|')
        star_sets = [star.split(',') for star in stars]
        star_cords = [(int(x), int(y)) for x, y, color in star_sets]
        return star_cords

    # finds self in another map
    def find_self_in(self, another_map, min_stars):
        master_list = another_map.original_cords
        master_set = another_map.star_set
        answers = []
        for current_master_star in master_list:
            for current_selected_star in self.original_cords:
                x_diff = current_master_star[0] - current_selected_star[0]
                y_diff = current_master_star[1] - current_selected_star[1]
                new_self = [(x + x_diff, y + y_diff) for x, y in self.original_cords]
                new_set = set(new_self)
                in_both = master_set & new_set
                # were there at least the minimum number of stars?
                if len(in_both) >= min_stars:
                    answer = []
                    answer.append(list(in_both))
                    # calculate self's cords
                    in_self = [(x - x_diff, y - y_diff) for x, y in in_both]
                    answer.append(in_self)
                    answers.append(answer)
        # answers has all constellations with at least min_stars (number of stars)
        def sort_help(list_x, list_y):
            if len(list_x[0]) < len(list_y[0]):
                return -1
            elif len(list_x[0]) > len(list_y[0]):
                return 1
            else:
                return 0
        answers.sort(sort_help)
        # now that answers is sorted, remove duplicate answers
        duplicates = 0
        index = 0
        while index < len(answers):
            star = answers[index][0][0]
            delete_these = []
            for constellation_pointer in range(index + 1, len(answers)):
                if len(answers[index][0]) != len(answers[constellation_pointer][0]):
                    break
                if self.is_in(star, answers[constellation_pointer][0]):
                    delete_these.append(constellation_pointer)
            duplicates += len(delete_these)
            delete_these.reverse()
            for constellation_pointer in delete_these:
                del answers[constellation_pointer]
            index += 1
        print # a break
        if duplicates:
            print 'Engine sorted out', duplicates, 'duplicate solutions from', self.name, 'and', another_map.name + '.'
        # print results
        wrong_answers = 0
        for answer in answers:
            if self.correct_answer(answer):
                print len(answer[0]), 'STARS:'
                print ' ' * 2 + 'In', self.name + ':'
                print ' ' * 4 + str(answer[1])[1:-1]
                print ' ' * 2 + 'In', another_map.name + ':'
                print ' ' * 4 + str(answer[0])[1:-1]
            else:
                wrong_answers += 1
        # note information regarding the results
        if wrong_answers:
            print 'Engine sorted out', wrong_answers, 'invalid solutions from', self.name, 'and', another_map.name + '.'
        if len(answers) == wrong_answers:
            print 'No constellations with at least', min_stars, 'stars could be found in', self.name, 'and', another_map.name + '.'

    # find out if a star is in a constellation
    def is_in(self, star, constellation):
        for point in constellation:
            if self.equal(star, point):
                return True
        return False

    # find out if two stars are the same
    def equal(self, x, y):
        return x[0] == y[0] and x[1] == y[1]

    # verify the numerical validity of the answer
    def correct_answer(self, answer):
        if len(answer[0]) < 2:
            return True
        x_diff = answer[0][0][0] - answer[1][0][0]
        y_diff = answer[0][0][1] - answer[1][0][1]
        for index in range(1, len(answer[0])):
            if answer[0][index][0] - answer[1][index][0] !=  x_diff:
                return False
            if answer[0][index][1] - answer[1][index][1] !=  y_diff:
                return False
        return True

################################################################################

if __name__ == '__main__':
    # test the star_map class
    a = star_map('Sky A', parsed_data_to_string(random_star_map_generator()))
    b = star_map('Sky B', parsed_data_to_string(random_star_map_generator()))
    a.find_self_in(b, 3)
    # most likely, no constellations will be found
    c = star_map('Sky C', parsed_data_to_string(random_star_map_generator()))
    d = star_map('Sky D', parsed_data_to_string(random_star_map_generator()))
    c.find_self_in(d, 4)
    # the following should yield one answer of 300 stars
    e = star_map('Sky E', parsed_data_to_string(random_star_map_generator()))
    e.find_self_in(e, 300)

This is just an example of how to use sets to find matching items in a collection of data.

32 comments

Example Usage.

from mapper import star_map

def main():
    # define and store the maps
    map_list = create_map_list()
    # create the lists for comparison by combination of twos
    master_list = map_list[:-1]
    secondary_list = list()
    for index in range(1, len(map_list)):
        secondary_list.append(map_list[index:])
    # execute the comparisons
    for index in range(len(master_list)):
        map_a = master_list[index]
        for map_b in secondary_list[index]:
            map_a.find_self_in(map_b, 5)    # 5 means that only constellations
                                            # with 5 or more stars will be found

def create_map_list():
    map_list = list()
    # dfa_zero (1)
    dfa_zero = star_map('dfa_zero (1)', '-100,-535,2|-102,-267,1|-102,-303,2|\
-104,407,1|-105,-246,1|-105,-509,1|-109,-126,1|-118,-306,3|-125,335,1|\
-126,-548,1|-127,-383,1|-142,272,1|-143,-272,2|-153,-449,2|-153,-91,1|\
-154,-496,4|-169,-19,1|-178,-574,3|-183,-457,1|-191,204,2|-191,584,1|\
-194,-106,2|-20,-371,1|-200,-163,1|-203,429,3|-209,344,1|-215,-454,1|\
-217,293,1|-219,324,2|-220,147,1|-230,447,1|-233,-562,1|-238,-36,2|-238,284,1|\
-239,-438,2|-240,-54,1|-242,-172,2|-244,378,3|-245,-12,2|-251,583,1|-254,536,2|\
-257,-446,1|-257,72,3|-259,149,1|-260,15,1|-265,197,1|-266,-541,3|-267,-246,1|\
-268,-98,4|-27,-505,1|-274,65,1|-275,-573,2|-277,-522,3|-280,-373,2|\
-285,-486,3|-289,-542,2|-289,362,2|-292,-227,1|-296,-3,1|-297,511,3|-298,173,1|\
-299,590,3|-3,428,1|-305,-392,3|-307,544,4|-312,67,1|-316,337,1|-317,-137,2|\
-321,-342,1|-327,60,1|-331,219,1|-331,266,1|-331,402,2|-332,502,1|-334,-585,2|\
-338,355,2|-356,-333,1|-363,390,1|-368,-190,2|-375,-435,1|-375,38,1|-378,487,2|\
-396,-252,2|-397,410,1|-399,451,2|-404,11,5|-406,-501,2|-41,-580,2|-410,-564,1|\
-416,300,2|-418,-465,6|-418,554,1|-424,506,1|-428,-271,3|-431,-126,1|\
-431,400,4|-435,-302,1|-440,-372,3|-459,-304,1|-467,-410,1|-471,-360,1|\
-471,56,1|-479,192,2|-481,-89,2|-483,-151,1|-483,509,2|-486,377,1|-489,-451,1|\
-495,-528,1|-497,276,3|-497,319,2|-503,583,1|-505,24,1|-506,-414,1|-519,242,2|\
-52,22,1|-521,148,1|-529,299,2|-53,-13,1|-531,-1,2|-532,-549,1|-532,77,1|\
-537,-354,1|-539,563,4|-543,-16,3|-544,-382,1|-549,388,1|-564,-565,1|\
-57,-354,1|-570,-107,1|-573,316,1|-575,-353,2|-580,401,1|-583,-274,1|\
-590,-590,1|-590,590,1|-66,116,1|-68,487,1|-75,83,6|-79,65,3|-90,-133,2|\
-92,-201,3|-92,371,3|-98,-58,1|0,366,4|105,497,2|112,-44,6|112,261,1|113,136,1|\
114,-457,2|115,409,2|12,47,1|120,310,1|125,-351,1|126,483,6|135,520,3|\
14,-341,1|153,359,1|161,37,1|162,-305,6|162,-408,4|166,155,2|17,533,4|\
170,-145,2|175,-65,2|178,50,1|18,314,1|185,150,1|186,350,4|190,-314,1|\

(comment continued...)

(...continued from previous comment)

195,485,2|198,-32,3|222,-61,1|224,-557,1|224,491,3|232,-77,2|235,70,1|\
239,-212,1|240,436,1|247,-344,1|247,487,1|249,-494,1|25,-482,1|251,-539,1|\
257,221,1|262,-6,1|263,-573,1|264,23,1|265,174,2|288,-306,6|290,408,2|3,562,3|\
30,177,1|302,298,1|303,-315,2|307,-127,1|307,-279,5|310,501,3|32,481,1|\
332,100,2|346,-386,3|346,340,2|352,515,1|359,-190,1|36,-157,3|361,183,1|\
368,276,2|372,82,1|376,-118,2|377,119,2|378,-234,1|382,-507,5|383,-553,2|\
386,-476,2|390,-460,2|40,311,1|401,570,1|402,96,1|405,491,1|407,-109,1|\
407,-405,2|408,148,1|410,-280,2|420,564,1|424,-56,2|426,119,1|434,421,3|\
435,488,3|439,-510,4|456,397,5|458,-186,2|465,538,1|466,-59,1|468,293,1|\
469,-415,2|471,-147,2|472,-289,4|472,-77,3|474,-363,1|475,140,2|477,323,6|\
481,-255,1|484,-3,1|487,-287,6|494,-341,2|5,-197,1|509,120,6|512,40,1|\
515,-479,3|518,-119,2|518,25,2|519,244,3|520,-579,1|521,426,1|530,474,3|\
535,527,1|542,12,1|542,489,2|543,-56,1|548,-194,1|554,-150,3|561,-361,2|\
569,95,1|570,0,1|576,-105,4|579,-201,6|581,202,1|581,28,1|584,449,2|590,-590,1|\
590,590,1|6,498,6|62,-560,1|69,151,1|70,578,2|74,373,2|75,86,1|78,-349,1|\
79,-73,1|87,-148,1|93,194,1|99,587,1:')
    map_list.append(dfa_zero)

Example Usage Code Continued.

    # dfa_zero (2)
    dfa_zero = star_map('dfa_zero (2)', '-103,-352,1|-104,-393,3|-105,312,1|\
-106,391,6|-107,-10,2|-107,356,4|-112,-62,1|-112,542,2|-126,-368,3|-126,558,2|\
-133,443,2|-136,-130,1|-137,-295,1|-14,243,2|-143,-392,1|-146,77,3|-147,-4,3|\
-154,462,6|-157,-354,3|-158,-21,2|-161,277,4|-163,-39,1|-173,191,2|-18,178,2|\
-187,-364,2|-187,504,2|-188,-516,2|-19,-508,3|-192,79,1|-199,460,2|-200,272,1|\
-206,-207,4|-208,-556,1|-209,518,1|-211,-502,2|-214,585,3|-218,386,1|\
-22,-246,1|-221,-456,4|-225,287,1|-228,-212,1|-228,80,3|-233,357,1|-234,548,1|\
-239,392,5|-245,202,1|-249,-71,1|-250,286,4|-254,-347,3|-258,357,3|-259,-527,1|\
-263,251,2|-277,468,2|-277,519,3|-278,-125,5|-280,-218,1|-282,195,4|-285,75,1|\
-290,440,1|-292,-310,2|-292,-573,2|-292,398,1|-296,-414,2|-297,574,1|-3,-441,3|\
-300,223,1|-308,22,2|-31,209,1|-311,-351,2|-317,526,2|-32,-389,3|-320,477,1|\
-320,550,3|-323,-225,1|-334,224,1|-338,563,4|-342,364,1|-348,-270,1|\
-353,-300,1|-353,-533,1|-361,-567,1|-365,416,2|-371,-244,1|-377,-181,3|\
-377,-463,2|-379,545,2|-38,54,2|-380,463,1|-381,210,1|-381,306,1|-384,-135,1|\
-384,389,1|-385,38,1|-388,287,2|-397,151,1|-40,568,1|-409,-256,6|-415,406,1|\
-418,-585,1|-420,-231,3|-425,65,2|-427,-563,2|-431,370,1|-433,118,1|\
-434,-425,1|-440,91,4|-443,240,2|-445,214,2|-446,52,2|-458,-349,1|-459,-585,2|\
-47,225,3|-472,589,1|-48,74,2|-485,464,1|-494,313,1|-495,-371,3|-504,504,2|\
-506,-62,1|-512,193,1|-512,457,2|-529,458,1|-536,-106,1|-537,94,1|-539,-205,2|\
-543,-367,1|-549,-493,6|-553,390,6|-558,80,1|-561,-272,1|-572,-461,1|\
-575,143,1|-584,23,1|-584,429,2|-587,-534,2|-588,477,3|-590,-590,1|-590,590,1|\
-62,-326,1|-71,226,1|-72,-550,1|-73,-476,1|-78,332,1|-81,79,2|-86,468,1|\
-9,381,1|-97,-374,2|-97,46,2|-99,83,1|0,425,2|10,-575,2|101,225,1|105,210,1|\
108,-494,1|109,-301,2|109,552,1|11,-524,1|112,-463,2|116,-404,1|118,-52,2|\
128,30,3|130,534,2|132,415,1|147,-463,5|153,345,1|156,412,2|157,146,3|159,-6,3|\
16,-442,6|16,429,4|18,214,2|18,297,3|181,-577,6|183,-109,3|183,418,2|19,121,2|\
192,-197,4|196,459,2|198,60,1|200,-329,5|202,-398,2|205,-70,2|205,128,1|\
213,231,3|219,-337,2|220,9,2|227,-176,2|228,531,2|234,-254,1|236,-69,1|\
241,568,1|247,117,1|248,386,5|26,-556,1|267,359,1|271,-543,3|272,-178,1|\
274,-466,3|275,-321,2|283,-276,2|285,-577,2|287,145,4|292,555,1|294,429,1|\
3,-170,3|3,-343,2|300,-442,4|307,83,1|308,-355,1|310,-105,1|313,-586,4|\
320,-340,3|326,107,2|327,-563,1|332,561,2|340,454,1|35,428,3|353,-194,4|\
359,-70,1|370,-469,3|375,-278,1|377,448,3|380,-3,1|382,-572,5|382,324,2|\
397,63,1|398,241,6|399,-297,2|402,125,2|403,-189,1|404,433,1|406,-485,2|\
406,400,1|409,-556,1|419,305,1|423,155,4|426,-264,1|431,1,2|431,343,1|\

(comment continued...)

(...continued from previous comment)

441,244,2|442,364,2|443,448,4|446,-316,1|45,-423,1|451,260,1|454,-29,2|\
465,-534,6|467,511,6|468,-128,2|473,571,1|474,-324,6|474,-49,1|480,37,2|\
49,292,1|492,-393,5|493,421,2|497,-53,3|503,191,2|504,-507,2|508,-17,1|\
512,-403,1|521,-472,1|522,-259,1|525,422,1|528,-126,2|531,-229,2|540,-348,1|\
546,439,3|547,-29,4|549,587,1|551,255,1|556,231,1|560,341,1|562,-512,2|\
573,196,2|576,481,4|579,-480,6|583,77,1|585,-424,1|59,311,1|590,-590,1|\
590,590,1|61,191,1|63,576,4|69,-7,5|8,88,2|82,-151,1|82,-207,1|9,490,1|\
97,-237,1:')
    map_list.append(dfa_zero)
    # dfa_zero (3)
    dfa_zero = star_map('dfa_zero (3)', '-10,-23,2|-104,-408,1|-106,241,1|\
-110,-450,4|-115,-428,1|-12,-313,1|-124,-161,1|-130,-480,1|-130,37,1|\
-131,-186,1|-133,294,1|-134,486,1|-15,549,1|-153,456,1|-154,208,1|-166,-60,1|\
-166,245,1|-168,533,1|-170,-360,5|-171,-216,3|-171,550,1|-172,451,1|-179,46,1|\
-18,59,1|-186,97,1|-208,-487,1|-210,-315,1|-211,-216,3|-213,-133,1|-218,-87,1|\
-225,-465,1|-228,-205,1|-232,-112,1|-238,14,1|-240,-500,2|-241,-268,1|\
-242,346,1|-246,32,1|-250,-420,1|-251,-186,1|-254,131,1|-26,391,3|-267,477,1|\
-273,-205,1|-275,-105,1|-275,63,1|-284,253,1|-284,460,1|-285,-236,1|\
-291,-156,1|-295,286,1|-30,540,2|-305,-471,1|-308,439,1|-31,-286,1|-320,294,1|\
-320,454,1|-326,-48,2|-326,112,1|-328,-448,1|-342,-59,1|-344,311,1|-357,411,1|\
-366,-11,1|-370,258,1|-371,-364,1|-380,434,3|-386,92,1|-39,-151,1|-392,222,1|\
-393,6,1|-398,365,1|-401,-292,1|-401,-432,3|-404,-584,1|-404,571,1|-406,32,1|\
-409,-193,1|-41,414,1|-410,-155,1|-427,500,1|-441,-291,1|-449,-200,1|\
-451,122,1|-451,175,1|-454,572,1|-457,-107,1|-460,10,1|-461,-462,3|-462,527,1|\
-47,119,1|-471,397,1|-480,155,1|-495,-480,1|-495,551,1|-499,-71,1|-50,-23,1|\
-503,-112,1|-503,324,1|-515,-71,1|-516,-543,1|-517,-25,1|-521,-292,4|\
-53,-116,1|-537,182,1|-539,-118,1|-540,-352,1|-543,326,1|-546,-51,2|-546,264,3|\
-551,-336,1|-552,-584,1|-56,368,1|-562,-278,1|-567,-355,1|-569,333,1|\
-579,-557,1|-58,82,1|-581,418,1|-586,-171,1|-586,144,1|-586,536,1|-590,-590,1|\
-590,590,1|-61,61,1|-63,-412,1|-65,176,1|-66,250,1|-83,266,1|-85,84,1|\
-86,-406,1|-9,-101,1|-90,-490,3|-91,-156,3|-92,415,1|-95,138,1|-96,331,2|\
-97,-572,2|10,248,1|103,-572,3|103,81,1|108,205,2|110,530,2|114,499,1|131,37,1|\
138,476,1|14,576,1|140,580,3|142,-47,1|143,-530,1|147,-167,1|147,-327,3|\
156,30,1|157,-342,1|158,135,4|158,394,1|160,450,1|163,431,1|167,-459,1|\
168,225,2|170,540,3|170,64,1|173,366,1|174,-22,1|178,265,1|179,284,1|\
187,-429,1|187,-51,1|188,102,1|191,-559,1|207,-307,1|207,-469,1|207,49,1|\
224,-30,1|227,-247,5|230,-96,1|236,-162,1|238,285,1|244,101,1|248,-195,1|\
249,410,1|251,-553,1|252,319,1|265,577,1|271,332,1|291,-285,1|291,-521,1|\

(comment continued...)

(...continued from previous comment)

291,321,1|291,340,1|295,-169,1|3,-562,5|30,7,6|310,-467,1|314,31,1|315,319,1|\
326,63,1|332,-151,1|334,-300,1|334,475,1|341,27,1|343,75,1|344,395,1|35,-68,1|\
35,532,1|359,418,1|363,490,1|372,-545,1|375,-369,1|38,-401,1|381,40,1|40,-24,1|\
403,-95,1|403,105,1|409,-281,1|409,-421,4|415,-527,1|416,205,1|420,-567,1|\
422,-475,3|426,-142,1|437,-456,1|44,-200,1|445,498,1|454,415,1|455,389,1|\
463,75,4|469,-251,1|469,-451,1|47,-346,1|475,204,1|48,-524,1|48,225,2|\
482,254,1|494,405,1|497,183,1|5,39,1|508,92,1|510,-445,1|512,-555,2|514,163,1|\
516,-477,1|527,-260,1|528,-309,1|529,-281,1|529,-421,2|536,539,1|537,35,1|\
542,-505,1|551,136,1|558,475,1|562,166,1|565,48,1|57,-316,1|57,-479,1|\
572,-545,5|574,438,1|575,-2,2|578,-504,1|588,-419,1|59,-266,1|590,-590,1|\
590,590,1|65,-134,1|67,-247,1|69,-577,1|70,37,3|72,16,1|82,-8,1|87,-187,1:')
    map_list.append(dfa_zero)

(...continued from previous comment)

469,-182,2|48,-12,1|488,-326,2|491,100,5|499,-113,2|499,-94,1|501,344,3|\
510,216,1|517,477,1|52,-274,1|523,-329,1|529,-356,1|532,-543,1|537,49,4|\
54,94,6|545,461,1|547,529,2|551,-582,1|552,58,6|553,291,2|56,-539,1|563,172,1|\
564,-423,2|570,-155,4|583,545,2|590,-590,1|590,590,1|6,-217,1|61,-498,1|\
73,-179,1|73,-278,1|75,431,3|77,7,1|78,230,2|85,-307,4|85,-383,1|86,518,1|\
98,-499,1:')
    map_list.append(Jemaime77)
    # Jemaime77 (2)
    Jemaime77 = star_map('Jemaime77 (2)', '-1,-246,2|-107,-200,1|-13,31,1|\
-13,361,2|-137,-36,1|-14,428,1|-140,-181,1|-143,321,3|-145,550,1|-148,-92,1|\
-156,-62,2|-158,-511,1|-159,79,1|-165,-306,1|-166,-586,3|-167,54,1|-172,448,1|\
-175,387,1|-182,-368,1|-188,238,1|-193,-487,1|-195,-129,1|-196,-338,1|\
-197,214,1|-198,-239,1|-206,431,1|-212,-509,1|-213,-375,1|-216,-532,1|\
-216,-82,2|-219,274,1|-220,256,1|-225,352,1|-226,-490,1|-227,458,1|-227,588,1|\
-23,321,1|-232,-448,2|-236,-212,1|-237,419,1|-241,-387,1|-248,513,1|\
-249,-358,1|-250,-161,1|-252,-408,1|-260,-456,1|-272,-438,6|-276,-92,1|\
-277,560,1|-280,305,2|-281,421,1|-283,102,1|-285,-394,1|-286,439,1|-288,-65,1|\
-296,24,1|-3,-19,1|-300,245,3|-308,364,1|-312,-318,2|-313,195,1|-321,-585,1|\
-323,-430,1|-329,387,1|-33,-149,1|-33,231,1|-344,-237,1|-346,-122,3|-347,21,1|\
-347,555,1|-349,59,1|-35,336,1|-353,410,1|-354,270,1|-360,225,3|-360,385,1|\
-366,-586,5|-369,99,4|-374,464,1|-377,575,1|-382,-397,1|-382,-458,3|\
-383,-508,1|-383,260,1|-383,521,1|-385,-428,1|-388,-2,1|-392,-378,6|-41,-216,1|\
-41,-341,1|-420,365,1|-428,329,1|-430,-491,1|-430,568,1|-432,-531,1|-440,305,5|\
-443,-136,1|-445,-567,1|-452,-201,1|-464,-373,1|-474,186,1|-474,99,1|\
-478,575,1|-479,-387,1|-485,479,1|-490,-35,1|-491,293,1|-495,403,1|-499,24,1|\
-499,49,2|-500,-111,1|-502,-466,3|-513,-512,1|-524,-51,1|-527,-177,2|\
-529,-350,1|-535,269,1|-538,545,1|-542,-586,2|-545,498,2|-546,-77,1|\
-547,-138,1|-549,-560,1|-554,-19,1|-563,-379,1|-567,-297,1|-568,430,1|\
-57,307,1|-572,-436,3|-576,144,1|-577,117,1|-58,-336,1|-585,378,3|-590,-590,1|\
-590,590,1|-6,-410,1|-60,-544,1|-60,33,1|-67,-520,1|-73,183,1|-73,378,1|\
-83,301,1|-85,107,1|-89,151,1|-91,-302,1|-92,574,1|-98,443,1|102,375,1|\
110,-385,1|113,-356,1|119,-246,1|125,-538,1|126,398,1|129,-368,1|139,37,1|\
140,-221,1|142,-249,1|143,70,1|145,-504,1|150,-69,1|151,453,1|155,-589,1|\
159,-216,1|161,426,1|162,-281,1|165,198,1|168,-173,1|176,369,1|177,-19,2|\
18,-551,1|181,197,1|182,-340,1|183,70,1|183,95,1|187,31,1|189,-398,1|\
198,-556,1|201,-302,1|202,-354,1|207,286,1|209,-64,1|21,197,1|218,-475,1|\
218,-94,1|220,-346,1|222,553,1|228,347,1|23,100,1|243,572,1|248,98,1|\
250,-567,1|253,-241,1|254,525,1|263,130,5|275,-563,1|277,412,1|287,168,1|\

(comment continued...)

(...continued from previous comment)

294,-464,1|304,-157,1|311,-302,3|316,-44,1|319,-521,1|320,-324,1|328,202,1|\
329,-7,1|33,-340,1|330,55,1|331,-242,2|331,254,1|332,-89,1|337,377,3|341,88,1|\
342,492,1|347,-106,1|347,-463,1|347,204,1|359,-276,1|360,465,1|368,-75,6|\
368,65,1|371,378,1|376,-20,1|386,-439,1|39,-276,2|391,-382,3|397,-557,1|\
397,237,2|397,397,3|414,-217,1|42,-480,1|426,270,1|427,-265,1|428,-105,1|\
428,95,4|429,-285,1|440,56,1|443,-90,1|443,290,1|445,-433,1|448,112,1|\
451,-362,1|457,451,1|46,-5,1|46,151,1|46,45,1|47,381,1|477,317,2|488,-75,3|\
488,65,1|490,451,1|506,450,1|51,167,1|516,-223,1|518,-193,1|525,289,1|\
526,519,1|531,-327,1|534,451,1|540,-544,1|540,270,1|549,453,1|56,409,1|\
564,58,1|565,455,1|572,123,1|575,33,1|577,-331,1|585,416,1|589,272,1|\
590,-590,1|590,590,1|61,5,1|62,94,1|63,130,1|64,540,1|69,-398,1|69,-538,1|\
79,-214,1|79,-276,6|79,86,1|8,-484,1|87,580,1|90,-397,1|94,303,1:')
    map_list.append(Jemaime77)

Example Usage Code Continued.

    # Jemaime77 (1)
    Jemaime77 = star_map('Jemaime77 (1)', '-103,-515,2|-110,150,1|-117,128,1|\
-119,-322,1|-119,66,3|-12,338,1|-120,552,1|-128,-162,1|-128,396,1|-136,62,1|\
-137,-199,5|-14,-305,2|-140,581,1|-141,-79,1|-145,-236,2|-149,-394,1|\
-150,244,1|-151,436,1|-153,535,1|-156,554,1|-16,-555,4|-163,-308,1|-166,-519,1|\
-169,-279,4|-186,-325,1|-186,-49,4|-187,126,2|-188,-146,1|-189,263,4|\
-190,481,2|-20,-140,1|-200,406,6|-226,-340,1|-228,197,2|-229,-476,1|\
-230,-320,1|-230,546,1|-236,82,1|-241,299,3|-241,516,2|-249,-270,4|-250,-308,2|\
-252,214,1|-256,-165,1|-26,-34,1|-268,-542,3|-274,-577,5|-282,558,2|\
-289,-493,1|-292,329,3|-294,500,1|-299,-454,1|-314,-149,3|-314,-439,2|\
-314,349,1|-315,-552,4|-316,-4,2|-318,109,2|-318,284,6|-321,176,4|-325,-470,2|\
-330,22,1|-333,-582,1|-336,-438,2|-338,563,1|-342,-531,6|-351,-191,2|\
-352,-421,1|-359,-260,1|-360,-578,2|-361,-544,1|-364,198,2|-367,155,2|\
-369,-111,2|-37,180,2|-370,-143,2|-371,-347,1|-382,567,6|-386,535,1|-395,3,2|\
-397,-42,2|-403,-371,1|-421,155,2|-423,-53,1|-427,-75,1|-428,-331,1|-430,49,2|\
-430,492,1|-432,128,2|-447,293,1|-453,-440,1|-459,388,1|-461,-390,1|-462,18,3|\
-470,432,1|-477,41,1|-48,-219,1|-480,-176,2|-491,-4,6|-5,461,2|-50,539,3|\
-500,228,1|-501,-163,1|-505,-285,1|-513,-14,4|-515,439,2|-531,-521,1|\
-532,-579,1|-533,97,3|-535,-237,1|-535,-308,2|-539,14,1|-540,-195,1|-548,197,1|\
-549,-46,6|-55,92,2|-562,86,3|-566,468,2|-567,189,1|-568,-179,1|-583,-22,4|\
-583,-248,4|-585,33,2|-590,-590,1|-590,590,1|-61,-412,2|-69,-233,1|-70,-51,3|\
-77,118,1|-78,-3,1|-85,-104,2|-86,-276,1|-90,-463,3|-92,444,1|-95,202,1|\
101,182,4|101,522,1|106,-167,1|106,291,1|106,448,1|109,-136,1|111,-535,1|\
111,-70,1|125,-339,2|128,278,2|128,555,1|131,156,1|131,332,1|133,-122,4|\
14,41,4|140,186,1|143,234,2|145,217,3|15,366,1|150,10,2|151,33,1|154,-428,1|\
180,-240,6|184,278,1|189,-172,1|190,-542,1|190,384,1|194,-42,2|20,-156,4|\
200,342,3|208,-230,2|21,246,1|212,382,2|22,-529,1|223,-579,1|223,130,1|\
225,169,1|228,-352,1|236,-516,1|240,-458,1|240,138,1|246,-485,5|248,-389,5|\
25,496,1|250,454,1|258,-309,2|258,122,4|263,-152,2|27,-345,3|27,-583,2|\
273,-82,1|278,-235,1|278,289,4|278,96,1|279,16,3|28,110,1|282,370,2|285,225,1|\
287,-544,6|289,527,3|297,-118,1|298,-5,1|299,259,1|304,-306,2|313,-336,1|\
313,-456,3|313,212,4|318,-85,1|321,-407,1|324,-31,3|325,-301,1|326,6,1|\
328,-554,6|329,330,6|333,189,1|335,452,1|338,244,3|34,-552,2|343,-316,2|\
343,-430,5|344,-492,2|345,16,2|361,-475,1|37,-147,2|371,234,1|373,-219,2|\
373,410,2|381,537,1|383,475,2|384,-487,1|391,353,1|392,-359,1|392,522,2|\
393,-12,2|397,-402,6|397,550,1|422,-373,2|427,572,4|429,-254,3|442,124,1|\
450,147,1|452,305,1|453,574,2|456,11,1|457,279,2|459,-270,1|468,247,1|\

(comment continued...)

Example Usage Code Continued.

    # elvenscythe
    elvenscythe = star_map('elvenscythe', '-100,305,2|-108,79,2|-11,459,4|\
-118,-80,2|-123,516,1|-127,476,2|-128,-486,1|-13,-101,1|-130,395,3|-133,111,1|\
-14,90,1|-141,-84,1|-143,138,1|-146,-186,2|-147,436,3|-148,575,1|-149,-68,3|\
-156,-116,4|-158,-9,2|-170,477,3|-177,-491,2|-177,498,2|-181,289,1|-181,82,1|\
-182,386,1|-185,29,1|-189,-297,3|-20,-144,1|-204,-61,3|-209,-523,1|-21,-183,3|\
-215,-431,1|-217,-569,1|-22,-65,3|-229,347,2|-231,260,2|-234,-558,1|\
-251,-285,1|-253,-357,5|-257,-419,1|-263,-236,2|-266,-53,3|-27,473,6|\
-274,230,4|-277,-451,1|-292,365,1|-297,194,3|-299,150,1|-30,256,4|-303,132,1|\
-304,-303,2|-304,212,1|-308,537,1|-311,-145,1|-311,455,1|-313,6,3|-317,373,1|\
-320,-420,1|-327,58,1|-330,-206,1|-334,-323,3|-334,322,1|-336,109,1|\
-342,-161,1|-346,-291,1|-35,-264,1|-358,267,1|-364,-149,1|-364,463,2|\
-369,317,2|-371,182,2|-38,430,1|-385,-220,2|-385,562,1|-389,351,2|-391,184,1|\
-392,-237,1|-396,108,1|-404,448,1|-406,151,2|-407,-105,1|-413,-311,2|\
-422,-555,6|-426,-434,1|-43,-66,2|-432,-112,1|-433,237,3|-434,-145,2|\
-441,442,1|-454,-455,1|-455,24,1|-471,41,2|-473,-352,1|-474,-8,2|-483,-335,2|\
-491,-387,3|-495,-167,3|-501,-126,2|-502,-3,1|-508,534,1|-509,-357,2|-51,141,1|\
-513,418,2|-52,177,1|-522,-329,6|-528,-290,2|-533,-123,1|-533,230,1|-544,389,2|\
-547,-85,1|-548,290,3|-549,-323,6|-549,329,2|-554,-475,3|-554,548,1|-558,-18,1|\
-562,-364,3|-577,-252,1|-577,-9,2|-579,339,3|-59,-125,1|-590,-405,1|\
-590,-590,1|-590,590,1|-60,-531,2|-62,459,1|-64,-93,3|-67,-364,2|-75,249,1|\
-76,528,3|-81,-49,3|-85,504,1|-86,177,1|-9,-466,1|-99,-329,1|12,-195,1|\
121,-15,1|123,268,4|126,163,3|133,30,1|134,-403,2|14,-322,6|141,-541,2|\
143,393,3|146,429,1|152,491,1|162,-319,1|162,313,3|167,342,2|172,-216,3|\
174,-507,1|181,-471,1|183,131,1|184,192,2|185,108,4|191,265,1|193,572,2|\
195,-438,1|196,150,1|199,-300,1|2,1,1|202,-90,4|203,208,1|208,-372,1|208,581,6|\
215,-539,1|216,-334,1|217,-306,1|217,306,1|219,-187,2|228,-434,1|235,385,1|\
235,499,1|24,-453,2|244,123,3|247,428,1|248,-2,1|250,-458,1|250,245,2|\
253,523,3|254,-58,4|256,197,1|257,-200,3|261,109,2|263,289,1|263,449,1|\
27,-178,1|277,-524,1|280,-70,1|281,-85,2|285,-383,2|285,267,4|291,473,1|\
294,-426,2|295,114,3|296,-78,1|30,-259,1|302,224,2|304,-389,1|308,327,1|\
309,-360,1|31,-480,1|311,200,2|316,-529,2|316,286,1|319,-230,2|326,-383,2|\
329,259,1|346,186,3|357,-412,3|357,287,6|361,199,1|362,494,2|366,-361,1|\
39,359,1|392,227,2|4,504,2|405,548,1|410,440,1|413,150,1|414,423,2|414,94,2|\
419,-542,1|421,-208,3|421,-525,4|431,100,2|433,281,6|436,-377,1|437,488,2|\
444,82,1|445,-162,1|451,-459,1|452,553,1|455,-388,1|457,-480,1|458,-429,1|\
464,325,1|471,-498,1|472,-95,1|473,-45,3|477,-8,1|477,60,1|478,146,1|\

(comment continued...)

(...continued from previous comment)

484,-381,1|486,282,1|487,227,1|49,215,1|497,-442,2|499,-472,6|500,-134,1|\
508,-271,3|509,-366,1|513,332,2|519,-445,1|52,583,1|522,44,2|524,292,1|\
525,14,2|527,511,1|529,-260,1|536,352,1|538,121,1|54,-137,4|550,586,1|\
552,-428,5|558,-17,4|56,-35,2|569,-490,1|577,263,1|581,-344,1|583,343,2|\
585,-258,1|587,417,3|59,157,3|590,-590,1|590,590,1|65,-258,3|69,-81,1|73,253,1|\
73,297,4|83,-127,1|88,194,1|92,-1,2|92,-187,2:')
    map_list.append(elvenscythe)
    # Raven193
    Raven193 = star_map('Raven193', '-104,253,1|-114,-290,1|-114,-462,2|\
-115,-78,6|-118,34,1|-119,-148,2|-119,226,4|-126,-398,1|-132,-226,2|\
-138,-365,1|-14,570,1|-140,-182,1|-147,295,1|-149,-234,1|-151,-405,3|\
-164,-329,2|-17,258,1|-172,509,3|-180,-582,1|-184,-76,2|-188,-439,1|-189,150,1|\
-19,-154,2|-191,-16,1|-192,46,1|-196,-155,2|-200,216,1|-202,111,2|-213,-186,4|\
-216,407,1|-217,-219,1|-217,355,1|-217,476,1|-217,64,3|-218,-86,1|-227,250,1|\
-232,-159,3|-232,168,3|-234,77,1|-240,-267,1|-247,421,2|-250,230,4|-250,4,3|\
-253,23,6|-256,-317,1|-257,-567,1|-265,-545,1|-269,467,1|-27,-336,4|\
-271,-308,4|-281,-349,3|-281,-364,1|-282,34,3|-309,-467,4|-309,268,1|\
-310,375,4|-320,7,1|-334,79,1|-337,-575,2|-342,-416,1|-342,389,2|-344,-97,1|\
-347,-366,1|-348,489,4|-350,-300,2|-360,54,5|-374,-458,1|-376,428,5|-388,395,3|\
-390,33,5|-396,-149,1|-41,-542,2|-415,-74,1|-416,270,1|-418,444,2|-419,-419,1|\
-427,-455,1|-428,-579,2|-43,31,1|-430,148,1|-436,243,2|-438,526,1|-439,88,3|\
-448,211,1|-450,-179,1|-460,73,2|-461,-279,2|-467,245,2|-469,-513,1|-47,218,2|\
-475,-401,3|-479,465,2|-495,481,3|-511,256,4|-515,27,2|-524,-261,1|-534,-289,2|\
-535,-363,1|-535,24,1|-535,359,1|-54,-287,1|-543,-589,3|-546,-489,2|-549,99,1|\
-551,-569,2|-553,-277,2|-557,165,5|-560,-182,1|-564,211,1|-57,-181,1|\
-570,-23,1|-584,-429,1|-584,276,3|-588,-349,2|-590,-200,1|-590,-40,4|\
-590,-590,1|-590,590,1|-64,-501,3|-80,-581,1|-82,221,1|-83,-347,1|-85,151,3|\
-95,-178,1|103,-50,1|104,-114,2|104,464,4|106,-80,1|11,-301,3|121,310,2|\
126,-555,1|129,-392,1|13,574,4|136,0,1|136,94,2|137,60,1|138,542,2|141,-432,1|\
147,485,2|150,-356,1|151,-568,5|157,-53,3|158,-160,3|161,171,1|165,233,1|\
170,-331,1|172,-374,1|173,-485,2|174,382,3|180,398,1|196,413,1|199,355,4|\
2,264,1|201,-36,1|210,-558,3|216,282,3|22,370,1|221,163,3|224,-536,3|\
227,-582,1|231,-442,2|231,42,3|232,140,6|234,-43,1|24,236,5|24,544,1|240,18,4|\
244,451,1|244,545,3|248,156,2|252,-224,4|253,478,4|257,-284,1|261,-417,2|\
265,-534,4|266,195,5|269,561,1|273,129,1|280,-456,1|286,-387,1|291,-315,1|\
293,-248,2|294,71,4|3,163,3|301,-515,1|303,-5,2|311,-224,3|313,94,2|316,225,2|\
324,507,1|328,156,1|342,547,5|345,29,1|346,-527,2|346,404,2|348,-428,1|\

(comment continued...)

(...continued from previous comment)

351,353,3|357,195,3|357,460,1|358,-557,1|367,-159,1|372,-445,1|372,-481,1|\
372,125,2|373,-13,1|378,464,2|38,-565,1|390,135,1|391,-115,2|396,-247,1|\
4,430,1|400,-397,1|402,-550,2|406,-18,5|408,-513,1|415,139,1|416,462,2|\
417,-148,1|418,86,2|420,204,1|422,-257,1|431,-506,1|436,294,3|439,360,2|\
442,-68,2|445,330,1|454,-402,2|456,494,3|457,306,3|46,-340,3|463,-52,1|\
470,-578,1|476,527,2|479,-192,1|479,207,4|48,-438,3|489,-567,2|49,-9,3|\
499,-340,3|5,-238,2|500,-319,1|509,-461,1|521,176,2|522,-369,2|524,-6,2|\
529,-151,3|539,-482,5|540,-70,1|550,-207,6|56,270,3|563,-267,5|57,335,4|\
570,-577,1|578,-511,4|58,-504,3|58,447,1|581,307,3|581,65,1|583,-160,1|\
583,167,5|585,-471,6|586,-315,1|588,-407,6|589,-106,2|590,-590,1|590,590,1|\
6,-260,2|62,-578,5|72,-380,2|73,-142,4|76,-47,1|8,194,4|80,-509,1|85,-363,1|\
91,444,2|94,-392,1|96,-512,4:')
    map_list.append(Raven193)

Example Usage Code Continued.

    # zaught (1)
    zaught = star_map('zaught (1)', '-102,-5,1|-106,275,3|-108,-579,1|-110,325,2|\
-110,80,3|-112,-376,1|-114,-241,2|-117,-275,1|-12,177,2|-120,167,2|-121,408,2|\
-123,-310,1|-125,-33,1|-132,-387,5|-134,503,2|-135,-559,3|-135,35,1|-138,364,1|\
-139,163,1|-145,409,1|-154,-219,1|-157,29,3|-158,-396,1|-159,-77,3|-166,-160,1|\
-180,284,3|-185,389,1|-189,235,2|-192,-497,1|-194,-255,4|-194,366,1|-199,-72,1|\
-203,-313,1|-203,422,6|-206,-515,1|-209,10,1|-210,465,1|-227,-328,3|-229,80,2|\
-233,473,1|-239,-352,2|-240,282,1|-243,53,4|-254,466,1|-255,-552,2|-260,250,2|\
-261,-384,3|-263,405,1|-274,-324,1|-278,-218,5|-281,-361,1|-286,-101,1|\
-287,248,2|-290,-345,2|-292,-316,1|-293,-127,2|-296,-378,1|-297,382,1|\
-30,466,1|-301,-225,2|-305,521,4|-307,2,3|-323,-437,3|-325,-508,2|-333,-36,2|\
-334,-458,1|-334,100,4|-344,-315,2|-35,164,3|-350,166,1|-356,-562,1|-356,133,2|\
-356,236,2|-359,-467,2|-367,205,4|-371,-273,4|-373,-115,4|-379,-443,1|\
-379,498,1|-381,-293,6|-384,-481,1|-386,18,2|-388,205,3|-39,214,1|-393,346,2|\
-394,-112,1|-398,371,2|-400,493,1|-408,-165,1|-408,-523,5|-417,412,3|\
-433,118,1|-435,138,2|-437,-491,5|-438,87,1|-442,-72,1|-444,-198,2|-450,-155,1|\
-453,113,1|-462,-300,3|-465,323,2|-466,529,2|-469,-542,1|-475,-249,5|\
-477,-104,3|-481,-559,3|-486,-422,1|-489,470,1|-49,-36,4|-492,302,1|\
-496,-440,3|-499,88,1|-500,-50,1|-503,-285,1|-506,-380,1|-507,269,1|\
-518,-488,1|-519,-22,3|-528,341,5|-538,-168,2|-538,145,4|-541,-532,1|\
-545,-131,2|-55,241,3|-555,-314,1|-555,544,1|-56,-542,4|-560,127,4|-562,94,2|\
-563,-540,2|-566,278,1|-568,-348,2|-574,-239,4|-59,532,1|-590,-590,1|\
-590,590,1|-63,505,3|-68,479,1|-79,139,1|-8,-249,1|-8,380,5|-83,170,2|\
-89,-359,6|-91,-440,2|-93,-480,2|-97,411,2|10,248,3|103,86,3|104,-13,2|\
107,272,1|12,514,1|121,164,1|121,241,1|128,279,1|128,331,2|132,-230,2|\
134,-30,1|138,399,1|142,-518,1|145,49,3|147,500,1|154,-358,1|156,112,1|\
160,441,1|163,358,5|168,28,2|174,-488,4|176,-445,1|180,-277,1|184,73,5|\
186,-37,3|187,10,4|191,460,1|196,259,1|199,587,2|205,-543,2|213,-88,2|\
214,350,3|215,445,1|216,321,1|220,61,2|243,-279,2|246,-587,2|25,-529,3|\
259,-336,1|26,-454,1|263,-400,2|264,373,1|266,-198,1|278,260,1|281,-494,1|\
283,589,1|287,188,1|296,293,2|299,517,6|3,30,3|306,-262,3|307,-440,3|308,216,3|\
308,24,2|315,461,1|317,577,1|319,376,2|320,-27,1|329,-67,1|329,183,3|33,500,3|\
336,405,2|339,-384,2|344,-290,4|346,-356,1|354,-376,1|358,297,1|363,-289,1|\
366,122,2|366,96,2|371,-39,3|375,-258,4|377,69,2|383,-482,1|39,548,1|393,170,2|\
398,-344,2|399,396,1|4,-452,3|40,-349,4|401,-189,1|401,370,1|404,426,2|\
408,194,2|408,73,5|409,271,4|410,89,1|42,-208,3|42,6,3|425,190,1|43,-536,1|\

(comment continued...)

(...continued from previous comment)

43,231,1|431,473,1|433,259,1|436,-304,2|441,-113,1|441,-570,2|443,-128,1|\
457,72,4|460,-350,1|461,-84,2|465,-428,2|467,42,1|469,382,1|472,91,1|\
479,-210,1|480,162,1|481,267,1|488,473,1|489,432,1|493,301,2|512,455,3|\
528,109,1|528,163,1|531,360,2|533,-313,1|535,3,4|536,180,1|541,505,3|546,217,1|\
546,287,1|549,363,2|552,266,1|556,-468,1|556,-501,1|560,-317,2|562,-93,1|\
571,-74,3|572,-531,2|576,584,3|590,-590,1|590,590,1|72,-90,4|73,420,3|82,513,1|\
88,234,2|99,311,1:')
    map_list.append(zaught)
    # zaught (2)
    zaught = star_map('zaught (2)', '-1,562,1|-106,-399,1|-106,-539,1|\
-106,403,1|-111,-256,1|-127,171,1|-133,534,1|-134,496,1|-134,577,1|-140,-457,1|\
-145,249,1|-147,356,1|-151,-226,1|-152,-564,1|-154,306,1|-155,-380,1|\
-155,209,1|-163,-321,1|-165,119,3|-169,-269,1|-175,382,1|-180,-449,1|\
-187,212,1|-19,455,3|-191,-503,1|-192,232,1|-193,-465,1|-195,422,2|-2,-520,1|\
-2,9,1|-204,-577,1|-204,259,1|-215,189,1|-218,90,1|-232,-158,1|-233,-419,1|\
-238,398,1|-240,-40,1|-244,-219,1|-245,-584,1|-246,196,1|-251,2,1|-251,297,1|\
-255,512,1|-263,452,1|-266,285,1|-274,-524,1|-274,77,1|-275,209,1|-283,-380,1|\
-295,-90,1|-303,-440,2|-303,525,1|-304,157,1|-31,-286,2|-310,13,1|-312,90,1|\
-315,-150,1|-319,-18,1|-322,404,1|-323,215,1|-323,547,1|-325,372,1|-335,452,1|\
-336,48,1|-345,-574,1|-346,217,1|-35,513,1|-352,-438,1|-363,-300,1|-363,-460,1|\
-37,428,1|-372,-427,1|-375,-10,1|-375,-170,1|-380,-559,1|-381,550,1|\
-384,-347,1|-386,190,1|-396,100,1|-396,40,1|-404,333,1|-405,-340,1|-405,546,1|\
-409,11,1|-416,230,2|-419,-116,1|-433,75,1|-435,-12,1|-435,-30,1|-440,-505,1|\
-443,-380,1|-445,-584,4|-446,180,1|-452,-127,1|-455,-90,1|-457,102,1|\
-46,-369,2|-46,452,1|-473,531,1|-48,579,1|-49,-61,1|-499,-559,1|-509,-362,1|\
-515,499,1|-521,483,1|-528,-71,1|-536,260,1|-538,-5,1|-545,479,1|-547,-52,1|\
-550,282,1|-554,-449,1|-556,-81,1|-558,-351,1|-560,-172,1|-560,224,1|\
-572,-283,1|-572,581,1|-575,499,1|-579,-154,1|-579,43,1|-583,-183,1|\
-585,-102,1|-586,190,1|-590,-590,1|-590,590,1|-6,-312,1|-70,-395,1|-71,-286,2|\
-72,-131,1|-79,-98,1|-82,-51,4|-85,269,1|-86,64,1|-89,-455,1|-9,-455,1|\
-9,375,2|-92,504,1|-94,241,1|0,288,1|0,60,1|101,395,1|103,192,1|106,-283,1|\
107,-326,1|116,153,1|12,542,1|121,425,3|123,482,1|125,169,1|127,508,1|\
14,-399,3|14,-539,2|141,-579,2|141,385,4|144,196,5|145,431,1|147,-370,1|\
147,576,1|154,-340,1|154,281,1|177,-496,1|178,-188,1|184,196,2|189,-407,1|\
202,77,1|206,-51,3|207,478,1|218,-343,1|218,49,1|224,226,2|232,-32,1|238,464,1|\
241,572,1|246,6,1|256,507,1|263,-311,2|264,256,3|265,-355,1|266,-158,1|\
269,130,1|284,316,1|286,-131,2|286,29,1|294,9,1|297,-116,1|298,-470,1|\
299,-340,1|302,344,1|312,-67,1|313,-381,1|313,573,1|322,143,1|323,-291,1|\

(comment continued...)

(...continued from previous comment)

332,347,1|333,-251,1|335,412,1|340,-489,1|341,-354,1|343,-175,1|346,-111,1|\
360,546,1|373,503,1|374,581,1|377,-546,2|38,-111,1|389,209,3|389,349,1|\
393,-23,1|393,402,1|396,-246,1|399,-350,1|401,-273,1|402,-6,1|411,176,1|\
417,-88,1|422,364,1|437,-376,1|437,-576,1|448,-159,1|449,179,3|449,379,2|\
449,518,1|450,-392,1|450,541,1|459,-354,1|460,559,1|470,406,1|472,175,1|\
48,-247,1|486,-135,1|488,-370,1|489,146,1|49,-226,1|491,68,1|492,-244,1|\
496,89,1|497,-406,2|497,-546,1|509,209,6|509,349,1|512,-177,1|525,75,1|\
531,-80,1|534,47,4|536,-201,1|536,336,1|544,295,1|546,-420,1|56,-565,1|\
563,-1,1|566,80,1|570,-225,1|573,433,1|590,-590,1|590,590,1|61,515,1|63,-396,1|\
64,256,2|74,192,1|78,-121,1|82,-217,1|83,247,1|88,161,1|9,-256,4|98,562,1:')
    map_list.append(zaught)

Example Usage Code Continued.

    # Summernight
    Summernight = star_map('Summernight', '-10,-577,1|-100,-103,4|-105,-41,1|\
-106,118,3|-107,-461,2|-108,41,3|-110,433,1|-111,-125,1|-114,231,1|-114,253,1|\
-115,-510,4|-119,284,2|-137,-312,3|-137,-411,1|-138,-485,1|-138,276,2|\
-14,-217,3|-14,34,2|-142,-569,1|-148,-33,6|-149,-427,6|-15,392,6|-159,12,2|\
-161,109,4|-162,266,3|-165,446,1|-167,-188,1|-170,215,1|-187,370,3|-208,-426,3|\
-209,-180,2|-222,-326,3|-226,442,1|-227,46,1|-229,572,1|-23,-410,2|-23,293,1|\
-244,-257,6|-244,143,3|-244,367,4|-246,-563,1|-246,329,2|-250,161,2|\
-257,-301,1|-257,-439,1|-259,208,2|-261,-534,1|-264,-382,1|-264,402,1|\
-266,322,1|-270,-341,6|-270,-581,1|-276,-125,3|-277,-37,2|-28,532,2|\
-280,-432,1|-287,197,1|-290,140,3|-292,58,2|-293,-214,1|-298,75,1|-30,-233,1|\
-303,341,3|-306,-438,1|-308,413,1|-313,442,2|-327,-288,1|-329,-84,1|-33,448,1|\
-330,198,1|-344,-346,1|-348,341,1|-353,363,2|-358,209,1|-36,-468,3|-362,-582,1|\
-369,476,2|-372,-42,2|-374,161,3|-380,367,2|-385,-65,1|-386,-566,1|-388,-343,1|\
-394,-361,1|-401,258,1|-403,-85,3|-407,-429,2|-408,65,3|-409,-327,3|-41,327,1|\
-412,393,6|-414,-444,3|-414,555,2|-417,-128,1|-417,130,1|-42,238,2|-421,474,6|\
-425,268,3|-43,388,5|-435,-23,4|-439,-5,3|-439,365,1|-443,-382,1|-447,194,1|\
-448,-548,2|-449,-275,3|-457,-165,3|-459,433,2|-459,551,1|-469,-278,2|\
-470,-307,1|-472,390,1|-473,454,2|-478,-485,2|-483,210,1|-485,-370,1|\
-490,107,2|-505,39,2|-506,-121,2|-511,456,3|-512,-482,1|-514,132,2|-516,-440,1|\
-520,-275,5|-53,-277,2|-53,284,1|-535,-375,6|-536,-540,3|-539,-229,5|\
-539,-430,1|-541,-261,2|-545,564,1|-546,73,2|-554,94,1|-557,-25,1|-559,-159,1|\
-559,528,1|-566,321,1|-570,-553,2|-572,-311,1|-577,505,1|-579,-379,3|\
-590,-590,1|-590,590,1|-62,249,1|-7,237,2|-7,586,1|-75,588,3|-76,-373,4|\
-79,-181,1|-80,147,2|-81,-106,4|-81,-347,2|-81,44,4|-86,269,2|-88,-427,2|\
-98,168,4|11,69,6|111,498,1|112,-211,1|13,-109,3|130,-319,1|142,417,1|\
143,175,6|146,466,2|147,350,4|150,22,2|151,-395,4|16,383,2|167,112,6|17,-154,2|\
17,-419,1|172,-126,4|200,534,2|202,-106,2|202,271,4|216,-85,2|216,85,2|\
223,235,3|229,217,2|236,-400,1|236,78,1|24,-91,5|244,218,2|247,-230,1|\
254,-257,4|254,468,3|257,-471,3|257,394,1|260,344,2|263,-285,5|266,-365,1|\
276,-300,1|277,-469,3|277,118,4|291,-422,6|292,-36,1|297,-314,1|303,266,1|\
306,-109,3|317,281,4|321,85,2|323,-261,2|323,465,5|330,330,1|335,-374,1|\
336,144,1|341,-111,1|341,427,1|341,452,1|342,-294,1|344,576,1|346,-571,1|\
362,-576,1|368,249,4|368,541,1|374,414,1|378,229,4|383,73,3|406,-227,2|\
410,177,1|412,-575,1|422,346,2|426,75,2|444,-312,1|446,128,1|45,-364,1|\
451,219,2|454,326,1|459,363,1|463,192,1|468,-380,2|471,461,1|475,-118,4|\

(comment continued...)

(...continued from previous comment)

475,103,1|480,366,1|490,209,1|496,279,1|498,-99,1|503,105,1|505,-534,4|\
505,-589,2|505,86,2|507,-421,1|51,472,5|529,510,3|53,-223,1|532,-440,2|\
532,23,2|533,-372,1|535,-95,3|536,-317,2|54,-184,1|541,563,2|545,258,2|\
547,-583,4|551,243,1|553,303,1|557,-299,1|562,-386,1|568,89,2|576,410,1|\
579,133,2|581,-85,2|586,-543,1|587,266,3|590,-590,1|590,590,1|60,-326,2|\
60,-38,2|62,-292,3|66,107,2|67,414,2|7,151,2|72,-407,1|78,80,5|85,-170,2|\
85,53,2|92,-6,1|94,-110,1|94,-88,2|96,-344,1:')
    map_list.append(Summernight)
    # snwangel1981
    snwangel1981 = star_map('snwangel1981', '-10,505,2|-106,-378,1|-113,500,1|\
-114,-338,2|-116,-543,2|-116,214,1|-121,-528,1|-122,229,1|-123,148,6|\
-123,454,1|-132,342,1|-137,-138,2|-137,-320,6|-137,-469,1|-14,337,1|-144,378,2|\
-153,-448,1|-156,-547,1|-164,-527,6|-169,-46,1|-177,-273,1|-179,-142,1|\
-180,210,1|-182,-413,1|-182,14,5|-183,-91,2|-185,-7,1|-186,-547,1|-189,268,2|\
-19,5,3|-192,359,1|-195,149,1|-195,284,1|-204,-298,2|-205,-458,1|-207,124,2|\
-212,-76,2|-22,574,1|-221,9,2|-228,-8,1|-230,501,2|-231,-469,3|-232,303,4|\
-235,-317,6|-247,-93,4|-25,-71,2|-260,-433,1|-260,248,5|-272,-540,1|-279,-43,1|\
-279,74,2|-282,-187,2|-288,-374,2|-288,271,3|-289,-203,5|-296,-121,2|\
-298,428,2|-30,-296,1|-300,251,1|-305,-176,3|-310,-51,1|-312,204,1|-314,527,6|\
-329,356,1|-33,273,1|-337,-307,1|-34,479,2|-345,-81,2|-348,364,1|-356,-275,1|\
-361,-194,1|-364,-10,1|-364,92,1|-366,-529,3|-367,-363,1|-367,-475,1|\
-371,388,2|-374,556,1|-378,-571,1|-380,141,1|-387,86,1|-389,349,1|-398,455,6|\
-399,-318,3|-400,-462,2|-408,175,2|-409,191,2|-41,581,3|-418,94,6|-419,-374,3|\
-422,-514,1|-428,-33,1|-430,292,1|-432,-451,3|-432,171,3|-433,399,1|-434,442,2|\
-436,504,1|-445,37,1|-446,-367,2|-458,-166,1|-469,-559,2|-471,33,1|-473,493,1|\
-476,8,2|-479,-434,3|-481,-453,2|-489,123,1|-491,-170,4|-491,-364,1|\
-494,-233,1|-496,535,2|-5,108,1|-511,176,2|-513,215,6|-514,-2,2|-518,-37,2|\
-518,-75,2|-52,-429,1|-52,540,4|-53,-586,2|-53,-9,6|-53,219,3|-534,465,2|\
-546,587,2|-552,122,2|-555,499,1|-556,-537,2|-557,-487,5|-560,-287,1|\
-568,-153,4|-570,361,6|-572,427,1|-581,-506,1|-588,178,1|-59,-170,1|\
-590,-590,1|-590,590,1|-62,-495,2|-84,-486,1|-90,-533,1|-90,449,3|-91,251,1|\
-93,99,1|-98,-135,4|-99,-166,1|1,-590,3|103,-539,1|109,119,1|111,-44,4|112,7,3|\
114,326,1|12,208,1|120,569,2|125,-329,2|131,175,2|141,-367,1|143,-449,3|\
158,479,1|161,-419,1|161,-459,1|161,-59,2|162,-168,1|165,376,1|171,400,1|\
175,-583,1|176,31,4|179,-274,2|19,501,2|195,-299,1|198,-25,1|199,-534,2|\
199,522,1|201,266,1|212,-267,1|212,-497,2|216,-307,2|228,550,2|231,-3,1|\
231,45,1|237,-228,2|24,168,1|244,223,1|248,498,1|250,-136,3|250,-521,2|\

(comment continued...)

(...continued from previous comment)

253,-415,1|260,51,1|262,217,1|27,442,1|273,146,1|274,-178,2|276,-368,1|\
279,-349,2|281,-415,1|29,-304,1|29,-562,2|29,538,1|290,-100,1|298,482,1|\
30,-537,1|301,-81,1|302,-4,6|302,203,1|306,380,4|310,223,2|312,-492,2|\
318,-255,2|323,-282,2|325,48,1|33,307,1|33,327,1|335,-3,2|345,376,1|348,-397,2|\
35,478,1|350,402,1|354,-284,1|356,-334,1|358,9,1|360,-91,1|361,202,1|361,519,2|\
362,473,2|367,457,1|370,-541,1|373,-517,2|376,-5,2|377,-560,2|378,-36,1|\
383,18,1|384,409,2|395,278,2|398,537,2|40,571,1|400,493,2|405,-281,2|405,558,1|\
417,-243,3|419,-27,1|428,-201,2|433,289,2|443,-267,4|447,402,1|465,-100,1|\
466,-360,1|467,317,1|468,-389,1|469,261,2|474,448,2|476,-314,1|480,-50,4|\
484,337,1|49,-570,1|490,-361,1|490,30,1|493,-311,4|507,-582,1|52,-92,4|\
530,-164,1|530,300,1|531,-503,1|533,4,3|533,42,1|533,563,5|537,451,3|54,589,3|\
541,-115,2|545,-481,1|548,-348,1|566,-341,1|567,-409,1|574,227,1|576,-17,1|\
580,-519,1|581,426,1|584,-96,1|59,498,1|590,-590,1|590,590,1|65,-302,3|\
66,559,2|7,-353,1|73,-76,2|76,61,1|89,-436,3|92,492,1:')
    map_list.append(snwangel1981)

Example Usage Code Continued.

    # Ravyn
    Ravyn = star_map('Ravyn', '-105,555,2|-108,-217,2|-110,235,5|-110,587,1|\
-114,-531,1|-114,269,1|-118,-234,2|-118,-394,2|-124,-415,1|-13,352,3|\
-136,-105,4|-138,522,2|-144,353,1|-147,257,1|-150,-144,3|-150,-532,1|\
-151,-585,2|-159,348,1|-160,-493,1|-17,-234,6|-173,147,1|-176,-40,2|-179,103,1|\
-185,74,5|-188,-361,1|-19,394,1|-191,-170,2|-194,369,2|-199,129,3|-2,507,2|\
-203,-14,2|-228,-414,1|-230,-531,1|-256,-220,5|-257,-364,2|-258,432,1|\
-271,-580,2|-273,372,1|-274,-41,1|-277,412,2|-287,200,3|-29,-536,4|-29,440,1|\
-291,-557,1|-296,-267,2|-30,291,2|-301,360,2|-311,-453,4|-312,-412,2|\
-313,-313,1|-313,503,2|-314,-194,1|-314,-88,2|-320,-215,1|-320,-564,2|\
-323,-173,4|-328,-233,1|-33,498,3|-331,580,1|-332,42,1|-339,87,1|-340,-545,2|\
-343,485,1|-344,-247,1|-344,-401,2|-350,-228,1|-355,-576,1|-362,571,2|\
-365,-355,4|-372,-380,6|-385,368,2|-399,587,1|-403,-556,3|-405,310,1|-41,555,1|\
-412,-429,6|-412,343,3|-43,-471,2|-435,-55,4|-436,468,1|-438,288,2|-439,71,4|\
-467,536,1|-469,209,3|-478,-554,2|-479,555,2|-483,-275,3|-483,-436,2|\
-484,-369,1|-486,-290,6|-486,-39,1|-488,-493,5|-490,437,1|-495,-117,1|\
-5,-446,6|-501,-80,1|-510,-590,2|-519,-5,2|-52,66,2|-522,-129,1|-527,-496,1|\
-529,244,1|-537,337,3|-537,447,1|-538,-175,2|-539,403,1|-542,-227,2|-546,374,4|\
-561,126,1|-562,560,2|-564,-44,1|-564,74,1|-568,32,2|-573,210,1|-576,-183,1|\
-58,111,2|-583,-431,1|-590,-590,1|-590,590,1|-590,7,2|-64,-535,1|-75,354,1|\
-77,477,1|-81,-523,3|-86,176,1|-88,538,2|-91,-236,6|104,-429,2|105,352,1|\
11,-513,1|116,495,2|120,-417,1|120,344,1|123,-515,1|125,327,1|127,-470,2|\
129,-121,1|13,-410,1|132,-145,1|141,260,1|160,-294,3|160,-434,1|160,179,1|\
162,-64,1|162,564,1|169,-504,1|183,423,2|184,-341,2|185,190,1|19,45,3|\
190,288,1|191,139,1|194,-460,4|195,-438,1|207,78,3|211,501,3|216,178,4|\
219,-295,1|220,-255,1|220,530,1|224,426,4|235,83,1|236,-477,3|239,210,1|\
24,-460,2|24,526,2|243,-126,3|246,-162,1|247,-64,5|249,367,1|255,-302,4|\
26,209,3|261,-361,1|27,427,1|276,183,2|276,83,1|278,-66,3|278,99,1|28,-542,1|\
280,17,2|280,465,3|292,320,2|298,-308,1|300,-436,1|301,275,1|303,-358,2|\
310,-560,3|316,3,1|324,-342,1|325,-399,3|327,-155,2|328,-500,1|33,-170,2|\
330,-263,2|332,585,1|334,8,2|335,305,2|336,392,1|34,-487,5|34,120,1|341,52,1|\
346,-454,3|349,-510,1|350,-264,2|353,11,1|364,550,1|372,570,2|378,479,1|\
382,-71,1|386,-416,3|39,514,2|390,48,1|401,-370,4|406,22,1|409,-20,1|41,-426,1|\
410,460,1|415,-48,1|416,-581,3|419,348,1|420,533,2|425,-304,3|429,-399,1|\
430,201,3|437,-65,2|441,106,2|445,35,2|447,-88,3|448,-195,1|448,569,1|\
465,-435,1|47,282,5|471,-350,6|473,-148,1|476,-571,2|478,396,3|478,548,1|\
480,100,1|485,472,2|49,-315,1|495,392,1|496,260,2|5,246,1|500,581,1|505,-77,1|\

(comment continued...)

(...continued from previous comment)

525,70,1|535,227,1|537,-84,1|545,-439,2|547,-43,4|549,147,3|55,489,4|551,539,1|\
553,-510,6|559,-101,1|57,-473,4|570,432,3|572,-238,1|574,-350,1|577,475,1|\
586,-292,1|589,-365,2|590,-590,1|590,590,1|6,-241,4|61,1,1|65,-540,2|73,342,2|\
79,-316,1|8,416,1|80,508,1|81,395,2|83,-13,2|90,179,1:')
    map_list.append(Ravyn)
    # netclubmember
    netclubmember = star_map('netclubmember', '-10,-581,1|-108,-581,1|\
-109,224,1|-112,-10,1|-113,308,1|-121,394,1|-123,-515,1|-126,-69,1|-127,-560,1|\
-131,-317,1|-134,266,2|-139,-109,1|-14,157,2|-142,556,1|-146,-129,1|\
-147,-165,1|-156,415,1|-158,58,1|-161,-241,1|-168,-501,1|-177,-522,1|\
-178,-421,2|-185,384,1|-194,246,4|-196,30,1|-196,441,1|-2,581,1|-20,482,3|\
-202,586,1|-214,116,4|-219,-266,1|-232,335,1|-232,489,1|-233,87,1|-234,190,1|\
-237,-219,1|-238,441,1|-247,-417,1|-247,-99,1|-247,415,1|-25,326,1|-250,-488,1|\
-251,-234,1|-253,68,1|-259,560,1|-262,416,3|-264,186,3|-274,-346,1|-275,-278,1|\
-28,-425,1|-281,350,1|-285,-398,1|-288,-490,2|-289,-186,1|-295,246,1|-3,-481,1|\
-304,-223,1|-305,-180,1|-308,-450,2|-31,142,1|-310,-576,1|-312,445,1|\
-315,297,1|-319,-24,1|-319,88,1|-320,-429,1|-324,206,1|-328,-480,1|-329,-209,1|\
-330,-329,1|-330,-572,1|-331,19,1|-334,-60,1|-337,480,1|-34,-519,1|-34,383,1|\
-351,-46,1|-362,369,1|-364,-243,1|-364,-83,4|-368,-360,2|-376,-393,1|\
-377,-516,1|-378,432,1|-378,572,2|-38,-451,1|-392,-471,1|-398,137,1|\
-399,-179,1|-4,-410,1|-40,-292,1|-406,-39,1|-417,422,1|-422,286,1|-422,489,1|\
-424,-422,1|-432,-104,1|-434,133,1|-435,-555,1|-438,402,1|-440,-153,1|\
-444,43,1|-448,-420,2|-448,-43,1|-451,-107,1|-453,462,1|-458,-477,1|\
-460,-346,1|-464,173,1|-467,113,1|-476,-257,1|-484,-384,1|-485,30,1|-485,514,1|\
-490,-223,1|-494,-114,1|-494,123,1|-498,432,3|-498,572,2|-511,230,1|\
-512,-508,1|-516,-200,1|-538,240,1|-540,-148,1|-546,5,1|-547,-548,1|-550,-68,1|\
-551,-293,1|-555,277,1|-555,455,1|-559,425,1|-569,-468,1|-57,520,1|-573,96,1|\
-578,296,1|-58,-481,2|-582,502,1|-583,-407,1|-584,203,5|-589,-335,1|\
-590,-590,1|-590,590,1|-6,-189,1|-66,-209,1|-66,-49,3|-69,-276,1|-70,542,1|\
-70,57,1|-73,-373,1|-73,226,1|-8,-432,1|-86,-145,1|-87,-264,1|-89,-333,1|\
-97,512,1|-98,-288,1|-98,-361,1|10,-231,1|10,-429,1|101,10,1|106,97,1|\
113,174,1|115,-545,3|12,-470,1|120,482,1|124,-1,1|130,-307,1|130,543,1|\
138,-434,1|14,-129,4|146,127,1|146,449,1|147,-211,1|154,-447,1|165,-475,5|\
165,318,1|168,-541,1|172,16,1|176,-58,1|186,157,2|189,41,1|190,-327,1|\
190,321,1|20,362,2|201,-522,1|233,-459,1|240,-397,6|242,-581,1|244,440,2|\
245,-524,1|250,-307,1|253,-68,1|255,-555,2|256,375,1|26,127,1|260,-267,1|\
260,238,1|261,93,1|262,-527,1|264,-155,1|269,-14,1|269,530,1|272,455,1|\

(comment continued...)

(...continued from previous comment)

272,502,1|285,-505,1|289,-261,1|294,106,1|295,-125,5|304,26,2|304,300,1|\
304,460,2|306,-371,1|315,-545,2|319,-472,1|32,-353,1|320,-247,6|335,-125,1|\
335,440,1|339,-455,1|34,431,1|341,-420,1|342,574,1|350,144,1|355,-439,1|\
355,-559,1|36,-430,1|364,320,1|374,166,3|375,-95,1|380,469,1|384,380,3|\
385,-217,1|385,554,1|393,73,1|402,464,1|403,-473,1|414,-444,1|414,210,1|\
414,46,1|415,-65,1|421,468,1|434,76,1|436,-241,1|436,-364,1|438,-86,1|\
442,-71,1|448,-390,1|453,-293,2|453,-433,4|454,36,1|455,-37,1|456,-124,1|\
46,6,1|463,186,1|47,-239,1|47,-262,1|474,-233,1|480,-510,1|480,376,1|484,84,1|\
491,-225,1|492,-1,1|495,-353,1|50,342,2|50,512,1|507,486,1|513,-263,1|\
513,-463,2|513,470,1|522,-55,1|525,88,1|533,590,1|534,411,1|536,-467,1|\
539,-439,1|558,187,1|559,280,1|56,-18,1|561,-19,1|562,-397,1|573,-293,1|\
573,-433,2|574,240,1|574,362,1|578,-380,1|582,-560,1|582,-81,1|586,-207,1|\
590,-500,1|590,-590,1|590,590,1|61,-66,1|66,97,4|71,185,1|72,-145,1|76,519,1|\
78,-269,1|79,-320,1|79,468,1|8,411,1|83,218,1|84,496,1|85,-61,1|97,-391,1:')
    map_list.append(netclubmember)
    # return the map list
    return map_list

if __name__ == '__main__':
    main()

Example Usage Code Explained. The above code must be copied and pasted together.

The example above provides 13 different maps and several

constellations matches (as can be seen from the output

listed below this comment.

Example Code Output (Part 1).

No constellations with at least 5 stars could be found in dfa_zero (1) and dfa_zero (2).

No constellations with at least 5 stars could be found in dfa_zero (1) and dfa_zero (3).

No constellations with at least 5 stars could be found in dfa_zero (1) and Jemaime77 (1).

No constellations with at least 5 stars could be found in dfa_zero (1) and Jemaime77 (2).

No constellations with at least 5 stars could be found in dfa_zero (1) and elvenscythe.

No constellations with at least 5 stars could be found in dfa_zero (1) and Raven193.

No constellations with at least 5 stars could be found in dfa_zero (1) and zaught (1).

No constellations with at least 5 stars could be found in dfa_zero (1) and zaught (2).

No constellations with at least 5 stars could be found in dfa_zero (1) and Summernight.

No constellations with at least 5 stars could be found in dfa_zero (1) and snwangel1981.

No constellations with at least 5 stars could be found in dfa_zero (1) and Ravyn.

No constellations with at least 5 stars could be found in dfa_zero (1) and netclubmember.

No constellations with at least 5 stars could be found in dfa_zero (2) and dfa_zero (3).

Example Code Output (Part 2).

Engine sorted out 4 duplicate solutions from dfa_zero (2) and Jemaime77 (1).
5 STARS:
  In dfa_zero (2):
    (-338, 563), (590, 590), (590, -590), (-590, 590), (-590, -590)
  In Jemaime77 (1):
    (-338, 563), (590, 590), (590, -590), (-590, 590), (-590, -590)

No constellations with at least 5 stars could be found in dfa_zero (2) and Jemaime77 (2).

No constellations with at least 5 stars could be found in dfa_zero (2) and elvenscythe.

No constellations with at least 5 stars could be found in dfa_zero (2) and Raven193.

Engine sorted out 4 duplicate solutions from dfa_zero (2) and zaught (1).
5 STARS:
  In dfa_zero (2):
    (590, -590), (-590, -590), (-433, 118), (-590, 590), (590, 590)
  In zaught (1):
    (590, -590), (-590, -590), (-433, 118), (-590, 590), (590, 590)

No constellations with at least 5 stars could be found in dfa_zero (2) and zaught (2).

No constellations with at least 5 stars could be found in dfa_zero (2) and Summernight.

No constellations with at least 5 stars could be found in dfa_zero (2) and snwangel1981.

No constellations with at least 5 stars could be found in dfa_zero (2) and Ravyn.

No constellations with at least 5 stars could be found in dfa_zero (2) and netclubmember.

No constellations with at least 5 stars could be found in dfa_zero (3) and Jemaime77 (1).

Example Code Output (Part 3).

Engine sorted out 33 duplicate solutions from dfa_zero (3) and Jemaime77 (2).
5 STARS:
  In dfa_zero (3):
    (-246, 32), (-326, 112), (-386, 92), (-406, 32), (-326, -48)
  In Jemaime77 (2):
    (-280, 305), (-360, 385), (-420, 365), (-440, 305), (-360, 225)
5 STARS:
  In dfa_zero (3):
    (-10, -23), (-130, 37), (70, 37), (30, 7), (-50, -23)
  In Jemaime77 (2):
    (79, -276), (-41, -216), (159, -216), (119, -246), (39, -276)
6 STARS:
  In dfa_zero (3):
    (-171, -216), (-91, -156), (-131, -186), (-211, -216), (-291, -156), (-251, -186)
  In Jemaime77 (2):
    (79, -276), (159, -216), (119, -246), (39, -276), (-41, -216), (-1, -246)
6 STARS:
  In dfa_zero (3):
    (178, 265), (108, 205), (48, 225), (238, 285), (158, 135), (168, 225)
  In Jemaime77 (2):
    (-13, 361), (-83, 301), (-143, 321), (47, 381), (-33, 231), (-23, 321)
6 STARS:
  In dfa_zero (3):
    (-170, -360), (-110, -450), (-250, -420), (-240, -500), (-90, -490), (-130, -480)
  In Jemaime77 (2):
    (-312, -318), (-252, -408), (-392, -378), (-382, -458), (-232, -448), (-272, -438)
6 STARS:
  In dfa_zero (3):
    (87, -187), (207, -307), (147, -327), (147, -167), (227, -247), (67, -247)
  In Jemaime77 (2):
    (-420, 365), (-300, 245), (-360, 225), (-360, 385), (-280, 305), (-440, 305)
6 STARS:
  In dfa_zero (3):
    (529, -281), (529, -421), (409, -281), (469, -251), (409, -421), (469, -451)
  In Jemaime77 (2):
    (488, 65), (488, -75), (368, 65), (428, 95), (368, -75), (428, -105)

No constellations with at least 5 stars could be found in dfa_zero (3) and elvenscythe.

No constellations with at least 5 stars could be found in dfa_zero (3) and Raven193.

Example Code Output (Part 4).

Engine sorted out 4 duplicate solutions from dfa_zero (3) and zaught (1).
5 STARS:
  In dfa_zero (3):
    (590, -590), (10, 248), (-590, -590), (-590, 590), (590, 590)
  In zaught (1):
    (590, -590), (10, 248), (-590, -590), (-590, 590), (590, 590)

Engine sorted out 75 duplicate solutions from dfa_zero (3) and zaught (2).
5 STARS:
  In dfa_zero (3):
    (469, -251), (409, -281), (529, -281), (409, -421), (529, -421)
  In zaught (2):
    (-46, -369), (-106, -399), (14, -399), (-106, -539), (14, -539)
5 STARS:
  In dfa_zero (3):
    (-10, -23), (-50, -23), (30, 7), (-130, 37), (70, 37)
  In zaught (2):
    (-31, -286), (-71, -286), (9, -256), (-151, -226), (49, -226)
5 STARS:
  In dfa_zero (3):
    (-110, -450), (-90, -490), (-170, -360), (-240, -500), (-250, -420)
  In zaught (2):
    (-195, 422), (-175, 382), (-255, 512), (-325, 372), (-335, 452)
5 STARS:
  In dfa_zero (3):
    (-90, -490), (-130, -480), (-240, -500), (-170, -360), (-250, -420)
  In zaught (2):
    (78, -121), (38, -111), (-72, -131), (-2, 9), (-82, -51)
5 STARS:
  In dfa_zero (3):
    (227, -247), (67, -247), (207, -307), (147, -327), (147, -167)
  In zaught (2):
    (-283, -380), (-443, -380), (-303, -440), (-363, -460), (-363, -300)
5 STARS:
  In dfa_zero (3):
    (-326, -48), (-386, 92), (-246, 32), (-406, 32), (-326, 112)
  In zaught (2):
    (-375, -170), (-435, -30), (-295, -90), (-455, -90), (-375, -10)
5 STARS:
  In dfa_zero (3):
    (160, 450), (170, 540), (110, 530), (140, 580), (-30, 540)
  In zaught (2):
    (-396, 100), (-386, 190), (-446, 180), (-416, 230), (-586, 190)
5 STARS:
  In dfa_zero (3):
    (542, -505), (572, -545), (372, -545), (512, -555), (422, -475)
  In zaught (2):
    (-416, 230), (-386, 190), (-586, 190), (-446, 180), (-536, 260)
5 STARS:
  In dfa_zero (3):
    (-91, -156), (-291, -156), (-171, -216), (-131, -186), (-211, -216)
  In zaught (2):
    (264, 256), (64, 256), (184, 196), (224, 226), (144, 196)
5 STARS:
  In dfa_zero (3):
    (529, -281), (409, -421), (529, -421), (469, -251), (469, -451)
  In zaught (2):
    (497, -406), (377, -546), (497, -546), (437, -376), (437, -576)
6 STARS:
  In dfa_zero (3):
    (-171, -216), (-131, -186), (-251, -186), (-91, -156), (-291, -156), (-211, -216)
  In zaught (2):
    (-31, -286), (9, -256), (-111, -256), (49, -226), (-151, -226), (-71, -286)
6 STARS:
  In dfa_zero (3):
    (158, 135), (48, 225), (168, 225), (178, 265), (108, 205), (238, 285)
  In zaught (2):
    (-165, 119), (-275, 209), (-155, 209), (-145, 249), (-215, 189), (-85, 269)
6 STARS:
  In dfa_zero (3):

(comment continued...)

(...continued from previous comment)

    (-90, -490), (-130, -480), (-240, -500), (-250, -420), (-170, -360), (-110, -450)
  In zaught (2):
    (141, 385), (101, 395), (-9, 375), (-19, 455), (61, 515), (121, 425)
6 STARS:
  In dfa_zero (3):
    (207, -307), (147, -167), (147, -327), (227, -247), (87, -187), (67, -247)
  In zaught (2):
    (-315, -150), (-375, -10), (-375, -170), (-295, -90), (-435, -30), (-455, -90)
6 STARS:
  In dfa_zero (3):
    (-130, 37), (-50, -23), (70, 37), (-10, -23), (179, 284), (30, 7)
  In zaught (2):
    (64, 256), (144, 196), (264, 256), (184, 196), (373, 503), (224, 226)
6 STARS:
  In dfa_zero (3):
    (529, -421), (529, -281), (409, -421), (469, -251), (469, -451), (409, -281)
  In zaught (2):
    (509, 209), (509, 349), (389, 209), (449, 379), (449, 179), (389, 349)

No constellations with at least 5 stars could be found in dfa_zero (3) and Summernight.

No constellations with at least 5 stars could be found in dfa_zero (3) and snwangel1981.

No constellations with at least 5 stars could be found in dfa_zero (3) and Ravyn.

Engine sorted out 61 duplicate solutions from dfa_zero (3) and netclubmember.
5 STARS:
  In dfa_zero (3):
    (-326, 112), (-386, 92), (-246, 32), (-406, 32), (-326, -48)
  In netclubmember:
    (-66, -49), (-126, -69), (14, -129), (-146, -129), (-66, -209)
5 STARS:
  In dfa_zero (3):
    (108, 205), (48, 225), (238, 285), (158, 135), (178, 265)
  In netclubmember:
    (-264, 186), (-324, 206), (-134, 266), (-214, 116), (-194, 246)
5 STARS:
  In dfa_zero (3):
    (70, 37), (30, 7), (-130, 37), (-10, -23), (-50, -23)
  In netclubmember:
    (186, 157), (146, 127), (-14, 157), (106, 97), (66, 97)
5 STARS:
  In dfa_zero (3):
    (-250, -420), (-170, -360), (-240, -500), (-130, -480), (-110, -450)
  In netclubmember:
    (-178, -421), (-98, -361), (-168, -501), (-58, -481), (-38, -451)
5 STARS:
  In dfa_zero (3):
    (-90, -490), (-170, -360), (-110, -450), (-130, -480), (-250, -420)
  In netclubmember:
    (-288, -490), (-368, -360), (-308, -450), (-328, -480), (-448, -420)
5 STARS:
  In dfa_zero (3):
    (529, -281), (409, -281), (469, -451), (409, -421), (529, -421)
  In netclubmember:
    (-378, 572), (-498, 572), (-438, 402), (-498, 432), (-378, 432)
5 STARS:
  In dfa_zero (3):
    (512, -555), (372, -545), (542, -505), (422, -475), (572, -545)
  In netclubmember:
    (255, -555), (115, -545), (285, -505), (165, -475), (315, -545)
5 STARS:
  In dfa_zero (3):
    (87, -187), (227, -247), (147, -327), (147, -167), (207, -307)
  In netclubmember:
    (244, 440), (384, 380), (304, 300), (304, 460), (364, 320)
5 STARS:
  In dfa_zero (3):

(comment continued...)

(...continued from previous comment)

    (494, 405), (334, 475), (344, 395), (72, 16), (454, 415)
  In netclubmember:
    (454, 36), (294, 106), (304, 26), (32, -353), (414, 46)
6 STARS:
  In dfa_zero (3):
    (227, -247), (147, -327), (207, -307), (147, -167), (87, -187), (67, -247)
  In netclubmember:
    (14, -129), (-66, -209), (-6, -189), (-66, -49), (-126, -69), (-146, -129)
6 STARS:
  In dfa_zero (3):
    (-91, -156), (-211, -216), (-251, -186), (-291, -156), (-171, -216), (-131, -186)
  In netclubmember:
    (186, 157), (66, 97), (26, 127), (-14, 157), (106, 97), (146, 127)
6 STARS:
  In dfa_zero (3):
    (238, 285), (48, 225), (178, 265), (158, 135), (168, 225), (108, 205)
  In netclubmember:
    (320, -247), (130, -307), (260, -267), (240, -397), (250, -307), (190, -327)
6 STARS:
  In dfa_zero (3):
    (-90, -490), (-110, -450), (-130, -480), (-250, -420), (-240, -500), (-170, -360)
  In netclubmember:
    (454, 36), (434, 76), (414, 46), (294, 106), (304, 26), (374, 166)
6 STARS:
  In dfa_zero (3):
    (469, -251), (469, -451), (409, -421), (409, -281), (529, -421), (529, -281)
  In netclubmember:
    (513, -263), (513, -463), (453, -433), (453, -293), (573, -433), (573, -293)

Example Code Output (Part 5).

No constellations with at least 5 stars could be found in Jemaime77 (1) and Jemaime77 (2).

No constellations with at least 5 stars could be found in Jemaime77 (1) and elvenscythe.

No constellations with at least 5 stars could be found in Jemaime77 (1) and Raven193.

No constellations with at least 5 stars could be found in Jemaime77 (1) and zaught (1).

No constellations with at least 5 stars could be found in Jemaime77 (1) and zaught (2).

No constellations with at least 5 stars could be found in Jemaime77 (1) and Summernight.

No constellations with at least 5 stars could be found in Jemaime77 (1) and snwangel1981.

No constellations with at least 5 stars could be found in Jemaime77 (1) and Ravyn.

No constellations with at least 5 stars could be found in Jemaime77 (1) and netclubmember.

No constellations with at least 5 stars could be found in Jemaime77 (2) and elvenscythe.

No constellations with at least 5 stars could be found in Jemaime77 (2) and Raven193.

No constellations with at least 5 stars could be found in Jemaime77 (2) and zaught (1).

Engine sorted out 49 duplicate solutions from Jemaime77 (2) and zaught (2).
5 STARS:
  In Jemaime77 (2):
    (428, 95), (368, 65), (488, 65), (368, -75), (488, -75)
  In zaught (2):
    (-46, -369), (-106, -399), (14, -399), (-106, -539), (14, -539)
5 STARS:
  In Jemaime77 (2):
    (-252, -408), (-232, -448), (-312, -318), (-382, -458), (-392, -378)
  In zaught (2):
    (-195, 422), (-175, 382), (-255, 512), (-325, 372), (-335, 452)
5 STARS:
  In Jemaime77 (2):
    (-232, -448), (-272, -438), (-382, -458), (-312, -318), (-392, -378)
  In zaught (2):
    (78, -121), (38, -111), (-72, -131), (-2, 9), (-82, -51)
5 STARS:
  In Jemaime77 (2):
    (-280, 305), (-440, 305), (-300, 245), (-360, 225), (-360, 385)
  In zaught (2):
    (-283, -380), (-443, -380), (-303, -440), (-363, -460), (-363, -300)
5 STARS:
  In Jemaime77 (2):
    (159, -216), (-41, -216), (79, -276), (119, -246), (39, -276)
  In zaught (2):
    (264, 256), (64, 256), (184, 196), (224, 226), (144, 196)
5 STARS:
  In Jemaime77 (2):
    (488, 65), (368, -75), (488, -75), (428, 95), (428, -105)
  In zaught (2):
    (497, -406), (377, -546), (497, -546), (437, -376), (437, -576)
6 STARS:
  In Jemaime77 (2):
    (79, -276), (119, -246), (-1, -246), (159, -216), (-41, -216), (39, -276)
  In zaught (2):
    (-31, -286), (9, -256), (-111, -256), (49, -226), (-151, -226), (-71, -286)
6 STARS:
  In Jemaime77 (2):
    (-33, 231), (-143, 321), (-23, 321), (-13, 361), (-83, 301), (47, 381)
  In zaught (2):
    (-165, 119), (-275, 209), (-155, 209), (-145, 249), (-215, 189), (-85, 269)
6 STARS:
  In Jemaime77 (2):

(comment continued...)

(...continued from previous comment)

    (-232, -448), (-272, -438), (-382, -458), (-392, -378), (-312, -318), (-252, -408)
  In zaught (2):
    (141, 385), (101, 395), (-9, 375), (-19, 455), (61, 515), (121, 425)
6 STARS:
  In Jemaime77 (2):
    (-300, 245), (-360, 385), (-360, 225), (-280, 305), (-420, 365), (-440, 305)
  In zaught (2):
    (-315, -150), (-375, -10), (-375, -170), (-295, -90), (-435, -30), (-455, -90)
6 STARS:
  In Jemaime77 (2):
    (488, -75), (488, 65), (368, -75), (428, 95), (428, -105), (368, 65)
  In zaught (2):
    (509, 209), (509, 349), (389, 209), (449, 379), (449, 179), (389, 349)

No constellations with at least 5 stars could be found in Jemaime77 (2) and Summernight.

No constellations with at least 5 stars could be found in Jemaime77 (2) and snwangel1981.

No constellations with at least 5 stars could be found in Jemaime77 (2) and Ravyn.

Engine sorted out 49 duplicate solutions from Jemaime77 (2) and netclubmember.
5 STARS:
  In Jemaime77 (2):
    (-83, 301), (-143, 321), (47, 381), (-33, 231), (-13, 361)
  In netclubmember:
    (-264, 186), (-324, 206), (-134, 266), (-214, 116), (-194, 246)
5 STARS:
  In Jemaime77 (2):
    (-392, -378), (-312, -318), (-382, -458), (-272, -438), (-252, -408)
  In netclubmember:
    (-178, -421), (-98, -361), (-168, -501), (-58, -481), (-38, -451)
5 STARS:
  In Jemaime77 (2):
    (-232, -448), (-312, -318), (-252, -408), (-272, -438), (-392, -378)
  In netclubmember:
    (-288, -490), (-368, -360), (-308, -450), (-328, -480), (-448, -420)
5 STARS:
  In Jemaime77 (2):
    (368, 65), (488, -75), (488, 65), (368, -75), (428, -105)
  In netclubmember:
    (-498, 572), (-378, 432), (-378, 572), (-498, 432), (-438, 402)
5 STARS:
  In Jemaime77 (2):
    (-420, 365), (-360, 225), (-280, 305), (-360, 385), (-300, 245)
  In netclubmember:
    (244, 440), (304, 300), (384, 380), (304, 460), (364, 320)
5 STARS:
  In Jemaime77 (2):
    (79, -276), (119, -246), (159, -216), (39, -276), (129, -368)
  In netclubmember:
    (335, -125), (375, -95), (415, -65), (295, -125), (385, -217)
6 STARS:
  In Jemaime77 (2):
    (-360, 385), (-360, 225), (-300, 245), (-280, 305), (-420, 365), (-440, 305)
  In netclubmember:
    (-66, -49), (-66, -209), (-6, -189), (14, -129), (-126, -69), (-146, -129)
6 STARS:
  In Jemaime77 (2):
    (159, -216), (39, -276), (-1, -246), (-41, -216), (79, -276), (119, -246)
  In netclubmember:
    (186, 157), (66, 97), (26, 127), (-14, 157), (106, 97), (146, 127)
6 STARS:
  In Jemaime77 (2):
    (47, 381), (-143, 321), (-13, 361), (-33, 231), (-23, 321), (-83, 301)
  In netclubmember:

(comment continued...)

(...continued from previous comment)

    (320, -247), (130, -307), (260, -267), (240, -397), (250, -307), (190, -327)
6 STARS:
  In Jemaime77 (2):
    (-232, -448), (-252, -408), (-272, -438), (-392, -378), (-382, -458), (-312, -318)
  In netclubmember:
    (454, 36), (434, 76), (414, 46), (294, 106), (304, 26), (374, 166)
6 STARS:
  In Jemaime77 (2):
    (428, 95), (428, -105), (368, -75), (368, 65), (488, -75), (488, 65)
  In netclubmember:
    (513, -263), (513, -463), (453, -433), (453, -293), (573, -433), (573, -293)

No constellations with at least 5 stars could be found in elvenscythe and Raven193.

No constellations with at least 5 stars could be found in elvenscythe and zaught (1).

No constellations with at least 5 stars could be found in elvenscythe and zaught (2).

No constellations with at least 5 stars could be found in elvenscythe and Summernight.

No constellations with at least 5 stars could be found in elvenscythe and snwangel1981.

Engine sorted out 4 duplicate solutions from elvenscythe and Ravyn.
5 STARS:
  In elvenscythe:
    (-590, -590), (590, -590), (-590, 590), (195, -438), (590, 590)
  In Ravyn:
    (-590, -590), (590, -590), (-590, 590), (195, -438), (590, 590)

No constellations with at least 5 stars could be found in elvenscythe and netclubmember.

No constellations with at least 5 stars could be found in Raven193 and zaught (1).

No constellations with at least 5 stars could be found in Raven193 and zaught (2).

No constellations with at least 5 stars could be found in Raven193 and Summernight.

No constellations with at least 5 stars could be found in Raven193 and snwangel1981.

No constellations with at least 5 stars could be found in Raven193 and Ravyn.

No constellations with at least 5 stars could be found in Raven193 and netclubmember.

No constellations with at least 5 stars could be found in zaught (1) and zaught (2).

No constellations with at least 5 stars could be found in zaught (1) and Summernight.

No constellations with at least 5 stars could be found in zaught (1) and snwangel1981.

No constellations with at least 5 stars could be found in zaught (1) and Ravyn.

No constellations with at least 5 stars could be found in zaught (1) and netclubmember.

No constellations with at least 5 stars could be found in zaught (2) and Summernight.

No constellations with at least 5 stars could be found in zaught (2) and snwangel1981.

No constellations with at least 5 stars could be found in zaught (2) and Ravyn.

(comment continued...)

(...continued from previous comment)

Engine sorted out 84 duplicate solutions from zaught (2) and netclubmember.
5 STARS:
  In zaught (2):
    (-215, 189), (-145, 249), (-165, 119), (-85, 269), (-275, 209)
  In netclubmember:
    (-264, 186), (-194, 246), (-214, 116), (-134, 266), (-324, 206)
5 STARS:
  In zaught (2):
    (264, 256), (224, 226), (64, 256), (184, 196), (144, 196)
  In netclubmember:
    (186, 157), (146, 127), (-14, 157), (106, 97), (66, 97)
5 STARS:
  In zaught (2):
    (-363, -300), (-363, -460), (-283, -380), (-443, -380), (-303, -440)
  In netclubmember:
    (-66, -49), (-66, -209), (14, -129), (-146, -129), (-6, -189)
5 STARS:
  In zaught (2):
    (-19, 455), (61, 515), (121, 425), (101, 395), (-9, 375)
  In netclubmember:
    (-178, -421), (-98, -361), (-38, -451), (-58, -481), (-168, -501)
5 STARS:
  In zaught (2):
    (141, 385), (61, 515), (121, 425), (101, 395), (-19, 455)
  In netclubmember:
    (-288, -490), (-368, -360), (-308, -450), (-328, -480), (-448, -420)
5 STARS:
  In zaught (2):
    (449, 179), (389, 349), (509, 349), (389, 209), (509, 209)
  In netclubmember:
    (-438, 402), (-498, 572), (-378, 572), (-498, 432), (-378, 432)
5 STARS:
  In zaught (2):
    (-446, 180), (-536, 260), (-416, 230), (-396, 100), (-386, 190)
  In netclubmember:
    (-494, 123), (-584, 203), (-464, 173), (-444, 43), (-434, 133)
5 STARS:
  In zaught (2):
    (-586, 190), (-446, 180), (-536, 260), (-416, 230), (-386, 190)
  In netclubmember:
    (115, -545), (255, -555), (165, -475), (285, -505), (315, -545)
5 STARS:
  In zaught (2):
    (-435, -30), (-375, -170), (-295, -90), (-375, -10), (-315, -150)
  In netclubmember:
    (244, 440), (304, 300), (384, 380), (304, 460), (364, 320)
5 STARS:
  In zaught (2):
    (-195, 422), (-175, 382), (-335, 452), (-325, 372), (-255, 512)
  In netclubmember:
    (434, 76), (454, 36), (294, 106), (304, 26), (374, 166)
5 STARS:
  In zaught (2):
    (-82, -51), (38, -111), (-72, -131), (78, -121), (-2, 9)
  In netclubmember:
    (294, 106), (414, 46), (304, 26), (454, 36), (374, 166)
5 STARS:
  In zaught (2):
    (14, -539), (-106, -539), (14, -399), (-46, -369), (-106, -399)
  In netclubmember:
    (573, -433), (453, -433), (573, -293), (513, -263), (453, -293)
6 STARS:
  In zaught (2):
    (-295, -90), (-375, -170), (-315, -150), (-375, -10), (-435, -30), (-455, -90)
  In netclubmember:
    (14, -129), (-66, -209), (-6, -189), (-66, -49), (-126, -69), (-146, -129)
6 STARS:
  In zaught (2):
    (49, -226), (-71, -286), (-111, -256), (-151, -226), (-31, -286), (9, -256)
  In netclubmember:

(comment continued...)

(...continued from previous comment)

    (186, 157), (66, 97), (26, 127), (-14, 157), (106, 97), (146, 127)
6 STARS:
  In zaught (2):
    (-85, 269), (-275, 209), (-145, 249), (-165, 119), (-155, 209), (-215, 189)
  In netclubmember:
    (320, -247), (130, -307), (260, -267), (240, -397), (250, -307), (190, -327)
6 STARS:
  In zaught (2):
    (141, 385), (121, 425), (101, 395), (-19, 455), (-9, 375), (61, 515)
  In netclubmember:
    (454, 36), (434, 76), (414, 46), (294, 106), (304, 26), (374, 166)
7 STARS:
  In zaught (2):
    (449, 379), (449, 179), (389, 209), (472, 175), (389, 349), (509, 209), (509, 349)
  In netclubmember:
    (513, -263), (513, -463), (453, -433), (536, -467), (453, -293), (573, -433), (573, -293)

No constellations with at least 5 stars could be found in Summernight and snwangel1981.

No constellations with at least 5 stars could be found in Summernight and Ravyn.

No constellations with at least 5 stars could be found in Summernight and netclubmember.

No constellations with at least 5 stars could be found in snwangel1981 and Ravyn.

No constellations with at least 5 stars could be found in snwangel1981 and netclubmember.

No constellations with at least 5 stars could be found in Ravyn and netclubmember.