Invalid Point definition on line 9005

Hi there
When I try to opening a file appears this message"invalid Point definition on line 9005".
How can I solve the problem???

Open up the .glyphs file in a text editor, like Sublime Text. Jump to line 9005 and check the surrounding lines, there may be a closing brace missing, or something. If you want, you can paste the surrounding 20 lines or so here.

HI Sebastian thank you very much for your time.
Here are the surrounding 20 lines:
(700,320,o),
(700,255,cs),
(700,0,l),
(875,0,l),
(875,299,ls),
(875,416,o),
(804,503,o),
(679,503,cs)
);
}
);
};
guides = (
{
pos = (263,336);
}
);
hints = (
{
horizontal = 1;
place = (9223372036854775808,21);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,21);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,-20);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,-20);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,-20);

Could you please paste them inside a block with ``` before and after?

Select your text block and click the “code” format option. That makes it more easily readable.

Which line is number 9005?

Hi Sebastian, hope is this what u meant to paste.
<div style="">(563,326,c),<br>(578,335,o),<br>(599,346,o),<br>(624,346,cs),<br>(669,346,o),<br>(700,320,o),<br>(700,255,cs),<br>(700,0,l),<br>(875,0,l),<br>(875,299,ls),<br>(875,416,o),<br>(804,503,o),<br>(679,503,cs)<br>);<br>}<br>);<br>};<br>guides = (<br>{<br>pos = (263,336);<br>}<br>);<br>hints = (<br>{<br>horizontal = 1;<br>place = (9223372036854775808,21);<br>type = TTDelta;<br>},<br>{<br>horizontal = 1;<br>place = (9223372036854775808,21);<br>type = TTDelta;<br>},<br>{<br>horizontal = 1;<br>place = (9223372036854775808,-20);<br>type = TTDelta;<br>},<br>{<br>horizontal = 1;<br>place = (9223372036854775808,-20);<br>type = TTDelta;<br>},<br>{<br>horizontal = 1;<br></div>

An here is line 9005 isolated

place = (9223372036854775808,21);

No, like this;

(700,320,o),
(700,255,cs),
(700,0,l),
(875,0,l),
(875,299,ls),
(875,416,o),
(804,503,o),
(679,503,cs)
);
}
);
};
guides = (
{
pos = (263,336);
}
);
hints = (
{
horizontal = 1;
place = (9223372036854775808,21);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,21);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,-20);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,-20);
type = TTDelta;
},
{
horizontal = 1;
place = (9223372036854775808,-20);

There are some very broken hints in that file. Better remove all hint definitions that content that big number:

{
horizontal = 1;
place = (9223372036854775808,21);
type = TTDelta;
},

Solved, Many thanks Georg and Sebastian